-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.93 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@zombienet/orchestrator",
"version": "0.0.51",
"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",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paritytech/zombienet.git"
},
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rm -rf ./dist/*",
"build": "tsc && npm run copy:podman",
"copy:podman": "cp -r src/providers/podman/resources/configs dist/providers/podman/resources",
"lint": "npx prettier --check ./src",
"lint:write": "npx prettier --write ./src",
"test": "echo \"Error: no test specified\""
},
"keywords": [
"testing",
"framework",
"substrate",
"zombienet",
"cli",
"tool"
],
"author": "Parity Technologies <admin@parity.io>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/paritytech/zombienet/issues"
},
"dependencies": {
"@polkadot/api": "^10.9.1",
"@polkadot/keyring": "^12.3.2",
"@polkadot/util-crypto": "^12.3.2",
"@zombienet/utils": "^0.0.21",
"chai": "^4.3.7",
"debug": "^4.3.4",
"execa": "^5.1.1",
"fs-extra": "^11.1.1",
"jsdom": "^22.1.0",
"json-bigint": "^1.0.0",
"JSONStream": "^1.3.5",
"libp2p-crypto": "^0.21.2",
"minimatch": "^9.0.3",
"mocha": "^10.2.0",
"napi-maybe-compressed-blob": "^0.0.11",
"peer-id": "^0.16.0",
"tmp-promise": "^3.0.3",
"typescript": "^5.9.3",
"yaml": "^2.3.1"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/fs-extra": "^11.0.1",
"@types/jsdom": "^21.1.1",
"@types/minimatch": "^5.1.2",
"@types/mocha": "^10.0.1"
},
"homepage": "https://github.com/paritytech/zombienet#readme"
}