-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 974 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
36
37
38
{
"name": "bitcoin-rpc-spec",
"description": "A JavaScript + YAML specification for the Bitcoin Core RPC interface",
"version": "0.2.1",
"main": "lib/index.js",
"author": {
"name": "Chris Arnesen",
"email": "chris.arnesen@gmail.com"
},
"repository": "git://github.com/carnesen/bitcoin-rpc-spec.git",
"bugs": {
"url": "https://github.com/carnesen/bitcoin-rpc-spec/issues"
},
"homepage": "https://github.com/carnesen/bitcoin-rpc-spec",
"license": "MIT",
"scripts": {
"test": "gulp test"
},
"dependencies": {
"bitcore": "^0.11.4",
"js-yaml": "^3.2.7",
"lodash": "^3.6.0",
"minimist": "^1.1.1"
},
"devDependencies": {
"chai": "^2.1.2",
"eventemitter2": "^0.4.14",
"gulp": "^3.8.11",
"gulp-coveralls": "^0.1.3",
"gulp-jshint": "^1.9.4",
"gulp-mocha": "^2.0.0",
"gulp-shell": "^0.4.0",
"istanbul": "^0.3.10",
"mocha": "^2.2.1",
"plato": "^1.4.0",
"sinon": "^1.14.1"
}
}