-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.33 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
{
"name": "tx-builder",
"version": "0.16.0",
"description": "Composable helpers for building and decoding blockchain transactions",
"main": "index.js",
"repository": "https://github.com/ilyavf/tx-builder.git",
"author": "Ilya Fadeev",
"license": "MIT",
"keywords": [
"bitcoin",
"blockchain",
"transaction",
"decode",
"build"
],
"scripts": {
"build": "make build",
"lint": "standard",
"lint:fix": "standard --fix",
"mocha": "nyc mocha -u tdd --timeout 999999 --colors test/test.js",
"preversion": "npm run lint && npm test",
"release:patch": "npm version patch && make publish",
"release:minor": "npm version minor && make publish",
"release:major": "npm version major && make publish",
"test": "npm run lint && npm run mocha"
},
"standard": {
"env": [
"mocha"
],
"ignore": [
"dist/",
"playground/"
]
},
"dependencies": {
"bip32": "^1.0.2",
"bip39": "^2.3.1",
"bitcoinjs-lib": "^4.0.1",
"bs58check": "^2.1.0",
"js-sha3": "^0.7.0",
"ramda": "^0.24.1",
"safe-buffer": "^5.1.1",
"typeforce": "^1.11.1",
"varuint-bitcoin": "^1.0.4"
},
"devDependencies": {
"assert": "^1.4.1",
"browserify": "^14.4.0",
"mocha": "^3.4.2",
"nyc": "^11.0.3",
"standard": "^10.0.2",
"uglify-es": "^3.1.9"
}
}