-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "etoken-list",
"version": "1.0.4",
"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 && esbuild --sourcemap --allow-overwrite --minify ./dist/index.js --outdir=dist/"
},
"unpkg": "dist/etoken-list.min.js",
"bugs": {
"url": "https://github.com/bytesofman/etoken-list/issues"
},
"homepage": "https://github.com/bytesofman/etoken-list#readme",
"keywords": [
"eToken",
"eCash",
"Bitcoin",
"Cash",
"XEC"
],
"author": "Joey King",
"license": "ISC",
"dependencies": {
"axios": "^1.6.5",
"big.js": "^5.2.2",
"buffer": "^5.6.0",
"ecashaddrjs": "^1.0.6",
"g": "^2.0.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/big.js": "^4.0.5",
"@types/inquirer": "^8.2.10",
"@types/mocha": "^5.1.1",
"cli-spinner": "^0.2.10",
"esbuild": "^0.19.11",
"grpc-bchrpc-node": "^0.10.0",
"inquirer": "^8.2.6",
"mocha": "^10.2.0",
"nyc": "^14.1.1",
"source-map-support": "^0.5.16",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"typescript-tslint-plugin": "^0.5.5"
}
}