forked from blockchain/service-my-wallet-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.77 KB
/
package.json
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
63
64
65
66
67
68
69
{
"name": "blockchain-wallet-service",
"version": "0.26.3",
"license": "AGPL-3.0-or-later",
"description": "Blockchain.info wallet api service",
"main": "index.js",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git://github.com/blockchain/service-my-wallet-v3.git"
},
"bugs": {
"url": "https://github.com/blockchain/service-my-wallet-v3/issues"
},
"bin": {
"blockchain-wallet-service": "./bin/cli.js"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"start": "node_modules/nodemon/bin/nodemon.js scripts/start.js",
"start:debug": "node-debug scripts/start.js",
"test": "node_modules/mocha/bin/mocha test/*.spec.js --timeout 5000",
"test:int": "node_modules/mocha/bin/mocha test/integration.js --timeout 5000",
"lint": "node_modules/.bin/standard src/*.js"
},
"author": "Justin Tormey <[email protected]>",
"standard": {
"global": [
"describe",
"it",
"before",
"beforeEach",
"after",
"afterEach"
]
},
"dependencies": {
"basic-auth": "~1.0.3",
"bip39": "~2.3.1",
"bitcoinjs-lib": "~2.2.0",
"blockchain-wallet-client": "3.32.4",
"blockchain.info": "~2.2.2",
"body-parser": "~1.14.1",
"colors": "~1.1.2",
"commander": "~2.9.0",
"express": "~4.13.3",
"json-rpc2": "~1.0.2",
"q": "~1.4.1",
"ramda": "~0.23.0",
"registry-url": "~3.1.0",
"request-promise": "~2.0.1",
"semver": "~5.3.0",
"unicode-length": "~2.0.0",
"winston": "~2.2.0"
},
"devDependencies": {
"chai": "~3.4.1",
"chai-as-promised": "~5.2.0",
"mocha": "~2.3.4",
"node-env-file": "~0.1.8",
"nodemon": "~1.8.1",
"sinon": "~1.17.3",
"sinon-chai": "~2.8.0",
"standard": "~8.6.0"
}
}