forked from bitpay/node-bitpay-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.24 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.24 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "bitpay",
"preferGlobal": false,
"version": "0.3.1",
"author": "Gordon Hall <gordon@bitpay.com>",
"description": "",
"contributors": [
{
"name": "Patrick Nagurny",
"email": "patrick@bitpay.com"
},
{
"name": "Eric Martindale",
"email": "eric@bitpay.com"
},
{
"name": "Rob Riddle",
"email": "rob@bitpay.com"
}
],
"bin": {
"bitpay": "bin/bitpay.js"
},
"scripts": {
"coverage": "NODE_ENV=test istanbul cover _mocha",
"test": "mocha test/* --reporter spec",
"setup": "node scripts/setup.js",
"postinstall": "npm run setup"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/bitpay/node-bitpay-client.git"
},
"keywords": [
"bitpay",
"rest",
"api"
],
"dependencies": {
"async": "^0.7.0",
"base58-native": "~0.1.4",
"bitauth": "^0.3.1",
"commander": "^1.3.2",
"extend": "^1.2.1",
"qs": "^2.2.4",
"read": "^1.0.5",
"request": "^2.34.0"
},
"analyze": false,
"license": "MIT",
"engines": {
"node": ">=0.8"
},
"devDependencies": {
"istanbul": "^0.3.5",
"mocha": "^1.21.4",
"proxyquire": "^1.0.1",
"should": "^4.0.4",
"sinon": "^1.10.3"
}
}