forked from paritytech/zombienet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.98 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@parity/zombienet",
"version": "1.2.54-1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Parity Technologies <[email protected]>",
"maintainers": [
"Javier Viola <[email protected]>"
],
"license": "GPL-3.0-or-later",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"description": "ZombieNet aim to be a testing framework for substrate based blockchains, providing a simple cli tool that allow users to spawn and test ephemeral Substrate based networks",
"scripts": {
"clean": "rm -rf ./dist/*",
"build": "tsc",
"start": "yarn build && node dist/cli.js",
"lint": "npx prettier --write ./src",
"package": "pkg . --out-path ./bins"
},
"dependencies": {
"@polkadot/api": "^8.9.1",
"@polkadot/keyring": "^9.5.1",
"@polkadot/util-crypto": "^9.5.1",
"axios": "^0.24.0",
"chai": "^4.3.4",
"commander": "^8.2.0",
"debug": "^4.3.2",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"jsdom": "^19.0.0",
"libp2p-crypto": "^0.20.0",
"minimatch": "^3.0.4",
"mocha": "^9.1.2",
"napi-maybe-compressed-blob": "0.0.2",
"nunjucks": "^3.2.3",
"peer-id": "^0.15.3",
"tmp-promise": "^3.0.2",
"toml": "^3.0.0",
"yaml": "^2.0.0-9"
},
"files": [
"dist",
"static-configs",
"scripts"
],
"bin": {
"zombienet": "dist/cli.js"
},
"pkg": {
"assets": [
"node_modules/@polkadot/**/*",
"node_modules/@babel/**/*",
"static-configs/*",
"scripts/*"
],
"targets": [
"node16-macos-x64",
"node16-linux-x64"
]
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jsdom": "^16.2.14",
"@types/minimatch": "^3.0.5",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.12",
"@types/nunjucks": "^3.2.1",
"@types/tmp": "^0.2.1",
"pkg": "~5.8.0",
"prettier": "2.2.1",
"typescript": "^4.1.5",
"yarn": "^1.22.10"
}
}