forked from w3f/polkadot-validator-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "polkadot-secure-validator",
"version": "3.4.2",
"main": "src/index.js",
"repository": "https://github.com/w3f/polkadot-secure-validator",
"author": "W3F Infrastructure Team <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"test": "mocha --reporter spec --recursive",
"sync": "node . sync",
"clean": "node . clean",
"plan": "node . plan",
"restore-db": "node . restore-db",
"rotate-keys": "node . rotate-keys",
"update-binary": "node . update-binary",
"lint": "eslint .",
"pretest": "yarn lint"
},
"bin": {
"polkadot-secure-validator": "src/index.js"
},
"files": [
"/ansible",
"/src",
"/terraform",
"/tpl"
],
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"dotenv": "^8.2.0",
"fs-extra": "^8.1.0",
"handlebars": "^4.7.6",
"node-forge": "^0.10.0",
"ospath": "^1.2.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.6.0",
"mocha": "^6.2.3",
"tmp": "^0.1.0"
}
}