forked from simpleledger/slpjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.05 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
{
"name": "slpjs",
"version": "0.27.11",
"description": "Simple Ledger Protocol (SLP) JavaScript Library",
"main": "index.js",
"files": [
"index.d.ts",
"lib/*.js",
"lib/*.d.ts",
"dist/"
],
"scripts": {
"test": "mocha",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"build": "npx tsc && mkdirp dist && browserify index.js --standalone slpjs > dist/slpjs.js && uglifyjs dist/slpjs.js > dist/slpjs.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simpleledger/slpjs.git"
},
"keywords": [
"bitcoin",
"bch",
"bitcoin cash",
"tokens",
"slp",
"ledger",
"simpleledger"
],
"author": "James Cramer",
"license": "ISC",
"unpkg": "dist/slpjs.min.js",
"bugs": {
"url": "https://github.com/simpleledger/slpjs/issues"
},
"homepage": "https://github.com/simpleledger/slpjs#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/mocha": "^7.0.2",
"@types/node": "^10.17.26",
"bitbox-sdk": "^8.11.2",
"bitcoin-rpc-promise": "^2.1.6",
"bitcore-lib-cash": "^9.0.0",
"browserify": "^16.5.1",
"grpc-bchrpc-node": "^0.11.5",
"mkdirp": "^0.5.5",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"slp-unit-test-data": "git+https://github.com/simpleledger/slp-unit-test-data.git#8c942eacfae12686dcf1f3366321445a4fba73e7",
"source-map-support": "^0.5.19",
"ts-node": "^7.0.1",
"typescript": "^3.9.5",
"typescript-tslint-plugin": "^0.5.5",
"uglify-es": "^3.3.9"
},
"peerDependencies": {
"bitbox-sdk": "^8.11.2",
"bitcore-lib-cash": "^9.0.0"
},
"dependencies": {
"@types/crypto-js": "^3.1.47",
"@types/lodash": "^4.14.156",
"@types/randombytes": "^2.0.0",
"@types/socket.io": "^2.1.8",
"@types/socket.io-client": "^1.4.33",
"@types/wif": "^2.0.1",
"axios": "^0.21.1",
"bchaddrjs-slp": "0.2.8",
"bignumber.js": "9.0.0",
"crypto-js": "^4.0.0",
"grpc-bchrpc": "^0.0.10",
"lodash": "^4.17.15",
"slp-mdm": "0.0.6"
}
}