You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by ro...@apache.org on 2011/04/27 22:14:34 UTC

svn commit: r1097229 - /thrift/trunk/lib/nodejs/package.json

Author: roger
Date: Wed Apr 27 20:14:33 2011
New Revision: 1097229

URL: http://svn.apache.org/viewvc?rev=1097229&view=rev
Log:
THRIFT-1158 Node.js - package.json used by npm is invalid

Modified:
    thrift/trunk/lib/nodejs/package.json

Modified: thrift/trunk/lib/nodejs/package.json
URL: http://svn.apache.org/viewvc/thrift/trunk/lib/nodejs/package.json?rev=1097229&r1=1097228&r2=1097229&view=diff
==============================================================================
--- thrift/trunk/lib/nodejs/package.json (original)
+++ thrift/trunk/lib/nodejs/package.json Wed Apr 27 20:14:33 2011
@@ -1,27 +1,27 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
 {
   "name": "thrift",
-  "description": "node-thrift",
+  "description": "node.js bindings for the Apache Thrift RPC system",
+  "homepage": "http://thrift.apache.org/",
+  "repository":
+    { "type" : "svn",
+      "url" : "http://svn.apache.org/repos/asf/thrift/trunk/"
+    },
   "version": "0.7.0-dev",
-  "author": "Apache Thrift",
+  "author":
+    { "name": "Apache Thrift Developers",
+      "email": "dev@thrift.apache.org",
+      "url": "http://thrift.apache.org"
+    },
+  "licenses":
+    [ { "type": "Apache-2.0",
+        "url": "http://www.apache.org/licenses/LICENSE-2.0"
+      }
+    ],
+  "bugs":
+    { "mail": "dev@thrift.apache.org",
+      "web": "https://issues.apache.org/jira/browse/THRIFT"
+    },
   "directories" : { "lib" : "./lib/thrift" },
   "main": "./lib/thrift",
-  "engines": { "node": ">= 0.2.4" },
+  "engines": { "node": ">= 0.2.4" }
 }