-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "bitcoin-consensus-encoding",
"version": "0.3.5",
"description": "Abstract encoding for Bitcoin related objects",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"dependencies": {
"biguintle": "^1.0.1",
"buffer-reverse": "^1.0.1",
"nanoassert": "^2.0.0",
"sha256-wasm": "^2.2.1"
},
"devDependencies": {
"standard": "^12.0.1",
"tape": "^4.10.2"
},
"standard": {
"globals": [
"BigInt"
]
},
"scripts": {
"pretest": "standard",
"test": "tape test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperdivision/bitcoin-consensus-encoding.git"
},
"keywords": [],
"author": "Hyperdivision ApS <[email protected]>",
"contributors": [
"Christophe Diederichs <[email protected]>",
"Emil Bay <[email protected]>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/hyperdivision/bitcoin-consensus-encoding/issues"
},
"homepage": "https://github.com/hyperdivision/bitcoin-consensus-encoding#readme"
}