forked from ZSLP/zslpjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "slpjs",
"version": "0.21.4",
"description": "Simple Ledger Protocol (SLP) JavaScript Library",
"main": "index.js",
"files": [
"index.ts",
"lib/*.js",
"lib/*.ts",
"dist/"
],
"scripts": {
"test": "tsc && mocha",
"build": "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": "Simple Ledger Protocol",
"license": "MIT",
"unpkg": "dist/slpjs.min.js",
"bugs": {
"url": "https://github.com/simpleledger/slpjs/issues"
},
"homepage": "https://github.com/simpleledger/slpjs#readme",
"devDependencies": {
"@types/mocha": "^5.1.1",
"@types/node": "^10.12.18",
"bitbox-sdk": "8.2.1",
"bitcoin-rpc-promise": "^2.1.6",
"browserify": "^16.2.2",
"grpc-bchrpc-node": "0.5.2",
"mkdirp": "^0.5.1",
"mocha": "^5.1.1",
"slp-unit-test-data": "git+https://github.com/simpleledger/slp-unit-test-data.git",
"ts-node": "^7.0.1",
"uglify-es": "^3.3.9",
"typescript-tslint-plugin": "^0.5.4",
"typescript": "^3.6.4"
},
"dependencies": {
"@types/lodash": "^4.14.120",
"axios": "^0.18.1",
"bchaddrjs-slp": "ZclassicCommunity/bchaddrjs#a297a3189ca42bc00a6bcea6b79015997a5024c9",
"bignumber.js": "^8.1.1",
"bitcore-lib-cash": "ZclassicCommunity/bitcore-lib-cash#38c113838a28230b3d6cee76568f53173709774a",
"lodash": "^4.17.14"
}
}