-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "@w3f/test-utils",
"version": "1.2.2",
"description": "Test utilities",
"repository": "[email protected]:w3f/test-utils-ts.git",
"author": "W3F Infrastructure Team <[email protected]>",
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
"build": "tsc --build tsconfig.json",
"prepare": "yarn build",
"pretest": "yarn lint",
"test": "mocha --timeout 200000 --require ts-node/register --exit test/**/*.ts",
"start": "node ./dist/src/index.js start"
},
"dependencies": {
"@polkadot/api": "^4.7.2",
"@w3f/logger": "^0.4.2",
"docker-cli-js": "^2.7.1",
"mariadb": "^2.3.1",
"mongoose": "^5.9.7"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/mongoose": "^5.7.8",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"mocha": "^7.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}