forked from blockchain/service-my-wallet-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 962 Bytes
/
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
{
"name": "blockchain-wallet-service",
"version": "0.14.0",
"description": "Blockchain.info wallet api service",
"main": "index.js",
"bin": {
"blockchain-wallet-service": "./bin/cli.js"
},
"engines": {
"node": ">= 0.12.0",
"npm": ">= 2.11.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",
"test:int": "node_modules/mocha/bin/mocha test/integration.spec.js"
},
"author": "Justin Tormey <[email protected]>",
"dependencies": {
"blockchain-wallet-client-prebuilt": "~3.4.1",
"body-parser": "~1.14.1",
"commander": "~2.9.0",
"express": "~4.13.3",
"q": "~1.4.1",
"request-promise": "~1.0.2"
},
"devDependencies": {
"chai": "~3.4.1",
"chai-spies": "~0.7.1",
"mocha": "~2.3.4",
"node-env-file": "~0.1.8",
"nodemon": "~1.8.1"
}
}