generated from lifion/lifion-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.1 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "serv-term",
"version": "1.0.0",
"description": "Module for gracefully terminating Node.js HTTP servers.",
"keywords": [],
"author": "Mark Crisp <Mark.Crisp@ADP.com>",
"maintainers": [
"Edgardo Avilés <Edgardo.Aviles@ADP.com>",
"Jenny Eckstein <Jenny.Eckstein@ADP.com>",
"Mark Crisp <Mark.Crisp@ADP.com>",
"Zaid Masud <Zaid.Masud@ADP.com>"
],
"contributors": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lifion/serv-term.git"
},
"bugs": {
"url": "https://github.com/lifion/serv-term/issues"
},
"homepage": "https://github.com/lifion/serv-term#readme",
"main": "lib/index.js",
"engines": {
"node": ">=v10.24.0"
},
"scripts": {
"build-docs": "jsdoc2md -t ./templates/README.hbs ./lib/*.js > ./README.md && git add ./README.md",
"build-docs-watch": "npm-watch build-docs",
"eslint": "eslint . --ext .js,.json --ignore-pattern='!.*.*'",
"format": "prettier --write '**/*.{md,js,json,ts}' '!coverage/**/*.{js,json}'",
"prepare": "husky install",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"test": "jest -c ./.jest.json --detectOpenHandles",
"type-check": "tsc --noEmit --project jsconfig.json",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^17.0.34",
"agentkeepalive": "^4.1.4",
"auto-changelog": "^2.3.0",
"axios": "^0.27.2",
"chalk": "^5.0.1",
"check-engines": "^1.5.0",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-config-lifion": "^2.1.1",
"husky": "^8.0.1",
"jest": "^27.2.1",
"jsdoc-to-markdown": "^7.0.1",
"lint-staged": "^12.4.1",
"npm-watch": "^0.11.0",
"pem": "^1.14.4",
"pinst": "^3.0.0",
"prettier": "^2.3.2",
"semver": "^7.3.5",
"typescript": "^4.4.2"
},
"watch": {
"build-docs": {
"patterns": [
"lib"
]
}
},
"@lifion/core-commons": {
"template": "public",
"updated": "2020-06-18T18:07:19.288Z",
"version": "2.4.0"
}
}