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 2015/02/02 22:00:44 UTC

thrift git commit: THRIFT-2940 nodejs: move package.json to root folder

Repository: thrift
Updated Branches:
  refs/heads/master 9d8c1bf6f -> 1abd746b9


THRIFT-2940 nodejs: move package.json to root folder


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/1abd746b
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/1abd746b
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/1abd746b

Branch: refs/heads/master
Commit: 1abd746b9cda67bf7a3f6d246c4181dcac515308
Parents: 9d8c1bf
Author: Roger Meier <ro...@apache.org>
Authored: Mon Feb 2 21:59:38 2015 +0100
Committer: Roger Meier <ro...@apache.org>
Committed: Mon Feb 2 21:59:38 2015 +0100

----------------------------------------------------------------------
 lib/nodejs/package.json | 45 --------------------------------------------
 package.json            | 45 ++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+), 45 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/1abd746b/lib/nodejs/package.json
----------------------------------------------------------------------
diff --git a/lib/nodejs/package.json b/lib/nodejs/package.json
deleted file mode 100755
index 51216d2..0000000
--- a/lib/nodejs/package.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
-  "name": "thrift",
-  "description": "node.js bindings for the Apache Thrift RPC system",
-  "homepage": "http://thrift.apache.org/",
-  "repository": {
-    "type": "git",
-    "url": "https://git-wip-us.apache.org/repos/asf/thrift.git"
-  },
-  "version": "1.0.0-dev",
-  "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",
-    "url": "https://issues.apache.org/jira/browse/THRIFT"
-  },
-  "directories": {
-    "lib": "./lib/thrift"
-  },
-  "main": "./lib/thrift",
-  "engines": {
-    "node": ">= 0.2.4"
-  },
-  "dependencies": {
-    "node-int64": "~0.3.0",
-    "q": "1.0.x",
-    "nodeunit": "~0.8.0",
-    "ws": "~0.4.32"
-  },
-  "devDependencies": {
-    "connect": "2.7.x",
-    "commander": "2.1.x"
-  },
-  "scripts": {
-    "test": "test/testAll.sh"
-  }
-}

http://git-wip-us.apache.org/repos/asf/thrift/blob/1abd746b/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
new file mode 100755
index 0000000..54b0b81
--- /dev/null
+++ b/package.json
@@ -0,0 +1,45 @@
+{
+  "name": "thrift",
+  "description": "node.js bindings for the Apache Thrift RPC system",
+  "homepage": "http://thrift.apache.org/",
+  "repository": {
+    "type": "git",
+    "url": "https://git-wip-us.apache.org/repos/asf/thrift.git"
+  },
+  "version": "1.0.0-dev",
+  "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",
+    "url": "https://issues.apache.org/jira/browse/THRIFT"
+  },
+  "directories": {
+    "lib": "./lib/nodejs/lib/thrift"
+  },
+  "main": "./lib/nodejs/lib/thrift",
+  "engines": {
+    "node": ">= 0.2.4"
+  },
+  "dependencies": {
+    "node-int64": "~0.3.0",
+    "q": "1.0.x",
+    "nodeunit": "~0.8.0",
+    "ws": "~0.4.32"
+  },
+  "devDependencies": {
+    "connect": "2.7.x",
+    "commander": "2.1.x"
+  },
+  "scripts": {
+    "test": "lib/nodejs/test/testAll.sh"
+  }
+}