-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.68 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
{
"name": "express-physical",
"version": "2.0.0",
"description": "Healthcheck middleware for Express 🌡",
"main": "index.js",
"repository": "[email protected]:Nevon/express-physical.git",
"author": "Tommy Brunn <[email protected]>",
"license": "MIT",
"scripts": {
"test": "npm run test:static-analysis && npm run test:unit && npm run test:integration",
"test:static-analysis": "npm run lint",
"test:unit": "NODE_ENV=test jest /__tests__/",
"test:unit:watch": "npm run test:unit -- --watch",
"test:integration": "NODE_ENV=test jest /__api_tests__/",
"test:integration:watch": "npm run test:integration -- --watch",
"test:benchmark": "npm run benchmark",
"benchmark": "docker-compose -f scripts/performance/docker-compose.yml up",
"benchmark:rebuild": "npm run benchmark -- --build",
"lint": "find . -path ./node_modules -prune -o -name '*.js' -print0 | xargs -0 prettier-check",
"format": "find . -path ./node_modules -prune -o -name '*.js' -print0 | xargs -0 prettier --write",
"debug": "node debug --harmony ./node_modules/jest-cli/bin/jest.js --runInBand -i",
"precommit": "lint-staged"
},
"devDependencies": {
"ajv": "^6.1.1",
"express": "^4.16.2",
"husky": "^1.3.1",
"jest": "29.5.0",
"lint-staged": "^11.1.1",
"prettier": "^1.16.4",
"prettier-check": "^2.0.0",
"supertest": "^3.0.0"
},
"dependencies": {
"async": "^3.2.2",
"ramda": "^0.29.0",
"snakecase-keys": "^2.0.0",
"zod": "^3.21.4",
"zod-validation-error": "^1.3.1"
},
"jest": {
"verbose": true,
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}