-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "slp-list",
"version": "1.1.0",
"description": "List token holders and balances at any block height",
"main": "dist/index.js",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"start": "ts-node demo.ts",
"test": "nyc mocha --timeout 1000000",
"build": "tsc && browserify ./dist/index.js --standalone slp-list > dist/slp-list.js && uglifyjs dist/slp-list.js > dist/slp-list.min.js"
},
"unpkg": "dist/slp-list.min.js",
"bugs": {
"url": "https://github.com/simpleledger/slp-list.js/issues"
},
"homepage": "https://github.com/simpleledger/slp-list.js#readme",
"keywords": [
"SLP",
"BCH",
"Bitcoin",
"Cash"
],
"author": "James Cramer",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"big.js": "^5.2.2",
"buffer": "^5.6.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/big.js": "^4.0.5",
"@types/inquirer": "^6.5.0",
"@types/mocha": "^5.1.1",
"bchaddrjs-slp": "git://github.com/simpleledger/bchaddrjs.git#master",
"browserify": "^16.5.1",
"cli-spinner": "^0.2.10",
"grpc-bchrpc-node": "^0.10.0",
"inquirer": "^6.5.2",
"mocha": "^7.1.1",
"nyc": "^14.1.1",
"source-map-support": "^0.5.16",
"ts-node": "^8.8.2",
"typescript": "^3.8.3",
"typescript-tslint-plugin": "^0.5.5",
"uglify-es": "^3.3.9"
}
}