-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 736 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 736 Bytes
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
{
"name": "refraction",
"version": "0.0.1",
"dependencies": {
"async": "~1.5.0",
"bitcore-lib": "~0.13.11",
"commander": "~2.9.0",
"lodash": "~3.8.0",
"math-buffer": "~0.1.1",
"request": "~2.67.0",
"socks": "~1.1.8"
},
"engines": { "node" : ">=4.2.3" },
"preferGlobal": true,
"bin": {
"refraction": "src/index.js"
},
"devDependencies": {
"chai": "~3.4.1",
"mocha": "~2.3.4",
"nock": "~3.3.2",
"sinon": "~1.17.2",
"sinon-chai": "~2.8.0"
},
"scripts": {
"client": "node --harmony --harmony-destructuring ./src/index.js --alice",
"server": "node --harmony --harmony-destructuring ./src/index.js",
"test": "mocha --harmony --harmony-destructuring"
}
}