-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
42 lines (42 loc) · 881 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
39
40
41
42
{
"name": "bitcointest",
"version": "0.4.8",
"description": "Bitcoin testing framework for node.js",
"main": "index.js",
"scripts": {
"test": "mocha tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dgarage/bitcointest.git"
},
"keywords": [
"bitcoin",
"rpc",
"testing",
"module",
"utility"
],
"author": "Karl-Johan Alm",
"license": "ISC",
"bugs": {
"url": "https://github.com/dgarage/bitcointest/issues"
},
"bin": {
"bitcointest": "./index.js"
},
"homepage": "https://github.com/dgarage/bitcointest#readme",
"dependencies": {
"async": "^3.2.2",
"bcrpc": "^0.1.1",
"deasync": "^0.1.14",
"death": "^1.1.0",
"mkdirp": "^0.5.1",
"remove": "^0.1.5",
"which": "^1.3.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0"
}
}