-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.44 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
{
"name": "lab-test-case-number-of-peers",
"version": "v0.1.0",
"description": "Polkadot Lab test case: number of peers",
"repository": "[email protected]:w3f/lab-test-case-number-of-peers.git",
"author": "W3F Infrastructure Team <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
"build": "tsc --build tsconfig.json",
"prepare": "yarn build",
"pretest": "yarn lint",
"test": "mocha --timeout 600000 --require ts-node/register --exit test/*.ts test/**/*.ts",
"e2e-test": "mocha --timeout 3000000 --require ts-node/register --exit e2e-test/**/*.ts",
"start": "node ./dist/index.js start"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"dependencies": {
"@w3f/config": "^0.1.1",
"@w3f/logger": "^0.4.0",
"@w3f/polkadot-lab-test-case-common": "^0.2.0",
"@w3f/polkadot-lab-types": "^0.10.1",
"@w3f/prometheus-api-client": "^0.3.0",
"commander": "^4.1.1",
"ws": "^7.3.0"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/koa": "^2.11.3",
"@types/mocha": "^7.0.1",
"@types/node": "^14.0.5",
"@types/ws": "^7.2.5",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"fs-extra": "^9.0.0",
"mocha": "^7.0.0",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
}
}