-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
73 lines (73 loc) · 2.25 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
{
"name": "slp-sdk",
"version": "4.13.2",
"description": "SLP SDK powered by BITBOX",
"main": "lib/SLP",
"scripts": {
"build": "node ./node_modules/gulp/bin/gulp.js build && ./node_modules/typescript/bin/tsc",
"test": "TEST=unit nyc --reporter=text mocha --require babel-core/register --timeout 10000 test/ --exit",
"test:unit": "TEST=unit nyc --reporter=text mocha --require babel-core/register --timeout 10000 test/ --exit",
"test:integration": "TEST=integration nyc --reporter=text mocha --require babel-core/register --timeout 30000 test/ --exit",
"test:e2e": "mocha --timeout 60000 test/e2e --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage:report": "nyc --reporter=html mocha --require babel-core/register --timeout 10000",
"semantic-release": "semantic-release"
},
"author": "Gabriel Cardona <[email protected]>",
"contributors": [
"Chris Troutner <[email protected]>",
"James Cramer @ SLP",
"Jt blockparty.sh"
],
"license": "MIT",
"engines": {
"node": ">=10.15.3"
},
"bin": {
"slp": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bitcoin-com/slp-sdk.git"
},
"dependencies": {
"@types/bigi": "^1.4.2",
"@types/bip39": "^2.4.2",
"@types/randombytes": "^2.0.0",
"@types/wif": "^2.0.1",
"axios": "0.19.0",
"babel-register": "^6.26.0",
"bignumber.js": "^8.0.2",
"bitbox-sdk": "8.10.1",
"chalk": "^2.3.0",
"clear": "0.1.0",
"commander": "^2.13.0",
"figlet": "^1.2.1",
"git-clone": "^0.1.0",
"mkdirp": "^0.5.1",
"node-emoji": "^1.8.1",
"repl.history": "^0.1.4",
"slpjs": "^0.24.3",
"touch": "^3.1.0"
},
"devDependencies": {
"@types/node": "^10.11.7",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^5.5.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"fs-extra": "^7.0.0",
"gulp": "^4.0.0",
"mocha": "6.1.4",
"nock": "^10.0.6",
"nyc": "^13.0.1",
"prettier": "^1.14.3",
"semantic-release": "^15.13.3",
"sinon": "^4.5.0",
"typescript": "^3.1.4"
}
}