-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.17 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "bch-token-sweep",
"version": "2.0.0",
"description": "An npm library for sweeping BCH and SLP Tokens from a paper wallet.",
"main": "dist/bch-token-sweep.min.js",
"scripts": {
"start": "node index.js",
"test": "npm run lint && TEST=unit nyc mocha test/unit/",
"test:integration": "mocha --timeout 60000 test/integration/",
"test:temp": "nyc mocha test/unit/blockchain.unit.js",
"lint": "standard --env mocha --fix",
"docs": "./node_modules/.bin/apidoc -i src/ -o docs",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage:report": "nyc --reporter=html mocha test/unit/ --exit",
"build": "browserify index.js -p tinyify --s Sweep -o dist/bch-token-sweep.min.js"
},
"keywords": [
"bitcoin",
"bitcoin cash",
"wallet",
"javascript",
"cryptocurrency",
"react",
"front end",
"client",
"apidoc",
"slp",
"tokens"
],
"author": "Chris Troutner <[email protected]>",
"contributors": [
"Andre Cabrera ([email protected])",
"Daniel Gonzalez <[email protected]>"
],
"license": "MIT",
"apidoc": {
"title": "bch-token-sweep",
"url": "localhost:5000"
},
"repository": "Permissionless-Software-Foundation/bch-token-sweep",
"dependencies": {
"bch-donation": "1.1.2",
"bignumber.js": "9.0.0"
},
"devDependencies": {
"apidoc": "0.25.0",
"browserify": "16.5.2",
"chai": "4.1.2",
"coveralls": "3.0.2",
"eslint": "7.17.0",
"eslint-config-prettier": "7.1.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-standard": "4.0.0",
"husky": "4.3.8",
"lodash.clonedeep": "4.5.0",
"minimal-slp-wallet": "5.5.1",
"mocha": "8.4.0",
"nyc": "15.1.0",
"semantic-release": "17.4.4",
"sinon": "9.2.2",
"standard": "16.0.4",
"tinyify": "3.0.0"
},
"release": {
"publish": [
{
"path": "@semantic-release/npm",
"npmPublish": true
}
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run build"
}
},
"peerDependencies": {
"minimal-slp-wallet": ">= 4"
}
}