-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 876 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
{
"name": "abstract-common-blockchain",
"version": "0.2.0",
"description": "A test suite and interface you can use to implement standard Bitcoin blockchain API calls for various backends and platforms.",
"main": "src/index.js",
"directories": {
"test": "tests"
},
"devDependencies": {
"tape": "^4.0.0"
},
"scripts": {
"test": "node tests/run.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockai/abstract-common-blockchain.git"
},
"keywords": [
"bitcoin",
"blockchain",
"common",
"api",
"test",
"suite"
],
"author": "William Cotton",
"license": "ISC",
"bugs": {
"url": "https://github.com/blockai/abstract-common-blockchain/issues"
},
"homepage": "https://github.com/blockai/abstract-common-blockchain#readme",
"dependencies": {
"bitcoinjs-lib": "^1.5.7"
}
}