-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.27 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-body-parser-error-handler",
"version": "1.0.8",
"description": "middleware to be set right after body parser in order to return 4xx error back to the client",
"scripts": {
"test": "jest --clearCache && jest --coverage",
"lint": "standard --fix",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ntedgi/express-body-parser-error-handler.git"
},
"keywords": [
"express",
"body-parser",
"middleware",
"error-handler"
],
"author": "Naor Tedgi (Naor.tedgi@gmail.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/ntedgi/express-body-parser-error-handler/issues"
},
"homepage": "https://github.com/ntedgi/express-body-parser-error-handler#readme",
"dependencies": {
"@types/express": "^4.17.15"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"body-parser": "^1.15.1",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"express": "^4.17.1",
"jest": "^29.7.0",
"nyc": "^15.1.0",
"sinon": "^14.0.1",
"standard": "^17.1.0",
"supertest": "^6.1.6"
},
"standard": {
"globals": [
"describe",
"beforeAll",
"it",
"afterAll"
]
}
}