-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.08 KB
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
{
"name": "ewf-validator-tool",
"version": "1.0.3",
"description": "Command line tool for sensitive operations with Volta and EWC validator accounts.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"validatortool": "dist/index.js"
},
"scripts": {
"test": "mocha",
"clean": "rm -rf dist/",
"build": "node_modules/typescript/bin/tsc",
"build:clean": "npm run clean && npm run build",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngyam/validator-tool.git"
},
"keywords": [
"authority",
"validator",
"admin",
"ewf",
"volta",
"ewc",
"reward",
"payout",
"address"
],
"author": "Adam Nagy (ngy.am.zs@gmail.com)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ngyam/validator-tool/issues"
},
"homepage": "https://github.com/ngyam/validator-tool#readme",
"devDependencies": {
"mocha": "^6.1.4"
},
"dependencies": {
"fs-extra": "^8.1.0",
"typescript": "^3.5.3",
"web3": "1.2.0",
"yargs": "^13.2.4"
}
}