summaryrefslogtreecommitdiff
path: root/package.json
blob: 73524c480d0f014a933c34951c5e90dfd9314f15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
  "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",
    "istanbul": "^0.3.5",
    "tape": "^3.4.0"
  },
  "scripts": {
    "cover": "lib/nodejs/test/testAll.sh COVER",
    "test": "lib/nodejs/test/testAll.sh"
  }
}