forked from serby/express-graceful-shutdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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": "express-graceful-shutdown",
"description": "Ensure that during shutdown express returns correctly with a 503",
"version": "1.1.3",
"dependencies": {},
"scripts": {
"lint": "eslint --cache --ext '.js,.jsx' -f unix .",
"prettier": "prettier --write --ignore-path .eslintignore './**/*.js*'",
"pretest": "yarn lint",
"test": "nyc mocha",
"posttest": "rm -rf .nyc_output",
"release": "standard-version"
},
"engines": {
"node": ">=9.7.0"
},
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"author": "Paul Serby <[email protected]>",
"license": "ISC",
"devDependencies": {
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"mc-logger": "0.0.0",
"mocha": "^2.4.5",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"rewire": "^2.5.1",
"standard-version": "^7.0.0"
},
"repository": {
"type": "git",
"url": "[email protected]:serby/express-graceful-shutdown.git"
}
}