-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
95 lines (95 loc) · 2.26 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "chromanode",
"version": "2.1.0",
"description": "",
"keywords": [
"bitcoin",
"mainnet",
"testnet3",
"blockchain",
"blockchain api",
"bitcoin api"
],
"bugs": {
"url": "https://github.com/chromaway/chromanode/issues"
},
"license": "MIT",
"author": "Chromaway AB",
"contributors": [
{
"name": "Alex Mizrahi",
"email": "alex.mizrahi@gmail.com"
},
{
"name": "Fabian Barkhau",
"email": "fabian.barkhau@gmail.com"
},
{
"name": "Kirill Fomichev",
"email": "fanatid@ya.ru"
}
],
"repository": {
"type": "git",
"url": "git@github.com:chromaway/chromanode.git"
},
"scripts": {
"clean": "rm -rf app",
"compile": "mkdir -p app && babel app.es6 -d app",
"compile:watch": "mkdir -p app && babel app.es6 -d app -w",
"lint": "standard",
"test": "npm run clean && npm run compile && npm run test:regtest",
"test:regtest": "find test/ -type f -name \"*.js\" | xargs mocha --compilers js:babel/register --reporter spec"
},
"dependencies": {
"babel": "^5.8.23",
"babel-runtime": "^5.8.25",
"bitcoind-rpc-client": "^0.3.0",
"bitcore-lib": "^0.13.7",
"bitcore-p2p": "^1.0.0",
"bluebird": "^3.0.5",
"body-parser": "^1.14.1",
"coloredcoinjs-lib": "^0.6.3",
"compression": "^1.5.2",
"core-decorators": "^0.8.1",
"cors": "^2.7.1",
"elapsed-time": "0.0.1",
"error-system": "^1.0.0",
"express": "^4.13.3",
"express-winston": "^0.4.1",
"js-yaml": "^3.4.2",
"lodash": "^3.10.1",
"make-concurrent": "^1.1.0",
"pg": "^4.4.2",
"pg-native": "^1.9.0",
"promise-useful-utils": "^0.2.1",
"ready-mixin": "^2.0.0",
"script2addresses": "^1.1.0",
"socket.io": "^1.3.7",
"socket.io-client": "^1.3.7",
"source-map-support": "^0.3.2",
"winston": "^2.1.0",
"yargs": "^3.27.0"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"bitcoind-regtest": "^0.2.2",
"chai": "^3.3.0",
"mocha": "^2.3.3",
"request": "^2.64.0",
"standard": "^5.3.1",
"url-join": "0.0.1"
},
"private": true,
"standard": {
"globals": [
"describe",
"before",
"after",
"beforeEach",
"afterEach",
"it"
],
"parser": "babel-eslint"
}
}