forked from dcposch/bitcoin-proof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.11 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": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"bitcoin",
"tx",
"transaction",
"proof",
"merkle",
"root",
"light",
"client",
"ethereum"
],
"homepage": "https://github.com/ethers/bitcoin-proof",
"bugs": "https://github.com/ethers/bitcoin-proof/issues",
"repository": "https://github.com/ethers/bitcoin-proof.git",
"license": "MIT",
"author": "AJoseph",
"contributors": [
"Kirill Fomichev <[email protected]>",
"dcposch"
],
"scripts": {
"prepublish": "npm run test && tsc",
"test": "ts-mocha test/index.js"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.41",
"mocha": "^10.0.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.0.0"
},
"engines": {
"node": ">=4"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 8
},
"env": {
"browser": true,
"node": true
}
},
"semistandard": {
"globals": [
"describe",
"it"
]
}
}