forked from w3f/polkadot-deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.47 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": "polkadot-deployer",
"version": "2.14.4",
"description": "Tool for deploying Polkadot nodes",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "mocha --reporter spec --recursive",
"start": "node index.js"
},
"bin": {
"polkadot-deployer": "./index.js"
},
"files": [
"index.js",
"/config",
"/lib",
"/terraform"
],
"repository": {
"type": "git",
"url": "git+https://github.com/w3f/polkadot-deployer.git"
},
"author": "W3F Infrastructure Team <[email protected]>",
"license": "Apache-2",
"bugs": {
"url": "https://github.com/w3f/polkadot-deployer/issues"
},
"homepage": "https://github.com/w3f/polkadot-deployer#readme",
"dependencies": {
"@polkadot/api": "0.82.0-beta.96",
"@polkadot/keyring": "0.95.0-beta.1",
"@polkadot/util": "0.95.0-beta.1",
"@polkadot/util-crypto": "0.95.0-beta.1",
"@polkadot/wasm-crypto": "0.13.1",
"@w3f/libp2p-crypto": "^0.16.1",
"axios": "^0.18.0",
"chalk": "^2.4.2",
"cli-table3": "^0.5.1",
"commander": "^2.20.0",
"fs-extra": "^7.0.1",
"handlebars": "^4.1.2",
"inquirer": "^6.3.1",
"js-yaml": "^3.13.1",
"moment": "^2.24.0",
"nedb-promises": "^3.0.3",
"ospath": "^1.2.2",
"peer-id": "^0.12.2",
"portastic": "^1.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"mocha": "^6.1.4",
"sinon": "^7.3.2",
"tmp": "^0.1.0"
}
}