-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.56 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
{
"name": "performance_check",
"version": "1.0.1",
"description": "molteo-engineering-team",
"main": "binding.js",
"engines": {
"node": ">=10"
},
"repository": {
"url": ""
},
"scripts": {
"config": "node-gyp configure",
"prebuild": "node-gyp prepare & node-gyp package & node-gyp rebuild",
"build": "node-gyp clean && rm -rf ./dist && tsc && node-gyp rebuild",
"postinall": "npm run build && npm publish",
"test": "jest --maxWorkers=2 --detectOpenHandles --forceExit",
"test:watch": "jest --watch",
"test:watchAll": "jest --watchAll",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint '{src,apps,libs}/**/*.ts' --fix",
"start:init": "ts-node src/init/digkstra.ts"
},
"keywords": [],
"author": "molteo-engineering-team",
"license": "MIT",
"dependencies": {
"nan": "^2.14.1",
"node-addon-api": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"jest": "^26.2.2",
"prettier": "^2.0.5",
"ts-jest": "^26.1.4",
"tsconfig-paths": "^3.9.0"
},
"jest": {
"moduleFileExtensions": [
"node",
"js",
"json",
"ts"
],
"rootDir": "test",
"testRegex": ".spec.js$",
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}