-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
56 lines (56 loc) · 1.04 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
{
"name": "bitcoin-proof",
"version": "2.0.0",
"description": "Merkle proof for a Bitcoin transaction",
"main": "index.js",
"keywords": [
"bitcoin",
"tx",
"transaction",
"proof",
"merkle",
"root",
"light",
"client",
"ethereum"
],
"homepage": "https://github.com/ethers/bitcoin-proof",
"bugs": {
"url": "https://github.com/ethers/bitcoin-proof/issues"
},
"license": "MIT",
"author": "AJoseph",
"contributors": [
"Kirill Fomichev <fanatid@ya.ru>"
],
"files": [
"index.js",
"LICENSE",
"README.md"
],
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/ethers/bitcoin-proof.git"
},
"scripts": {
"prepublish": "npm run lint && npm run test",
"test": "mocha test/index.js",
"lint": "semistandard"
},
"dependencies": {
},
"devDependencies": {
"mocha": "^2.0.1",
"semistandard": "^7.0.0"
},
"engines": {
"node": ">=0.10"
},
"semistandard": {
"globals": [
"describe",
"it"
]
}
}