-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
{
"name": "express-exception-handler",
"version": "1.3.5",
"description": "a top level exception handle package",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"test:dev": "jest --watchAll",
"test:cov": "jest --coverage && codecov",
"push": "yarn test && git push",
"deploy:major": "yarn version --major",
"deploy:minor": "yarn version --minor",
"deploy:patch": "yarn version --patch",
"deploy:push": "git push && git push --tags",
"preversion": "yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kanekotic/express-exception-handler.git"
},
"keywords": [
"exception",
"express",
"expressjs",
"middleware",
"handler",
"async/await",
"async",
"await",
"es6"
],
"author": "kanekotic",
"contributors": [
"Brad Reed (http://www.bradreed.co.uk)",
"Oren Zomer (https://github.com/ozomer)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kanekotic/express-exception-handler/issues"
},
"homepage": "https://github.com/kanekotic/express-exception-handler#readme",
"devDependencies": {
"codecov": "3.8.3",
"jest": "29.7.0"
},
"jest": {
"testMatch": [
"**/test/**/*-test.js"
],
"testEnvironment": "node",
"automock": false
}
}