-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.38 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
{
"name": "@zombienet/utils",
"version": "0.0.21",
"description": "Useful utilities for ZombieNet Framework",
"main": "dist/index.js",
"author": "Parity Technologies <admin@parity.io>",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/paritytech/zombienet#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/paritytech/zombienet.git"
},
"bugs": {
"url": "https://github.com/paritytech/zombienet/issues"
},
"keywords": [
"utilities",
"utils",
"zombienet"
],
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rm -rf ./dist/*",
"build": "tsc",
"lint": "npx prettier --check ./src",
"lint:write": "npx prettier --write ./src",
"test": "mocha --require ts-node/register src/**/*.spec.ts"
},
"types": "./dist/index.d.ts",
"dependencies": {
"cli-table3": "^0.6.2",
"debug": "^4.3.4",
"mocha": "^10.2.0",
"nunjucks": "^3.2.4",
"toml": "^3.0.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/deep-equal-in-any-order": "^1.0.1",
"@types/mocha": "^10.0.1",
"@types/nunjucks": "^3.2.3",
"@types/sinon": "^10.0.15",
"chai": "^4.3.7",
"deep-equal-in-any-order": "^2.0.6",
"sinon": "^21.0.0",
"yaml": "^2.3.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}