-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 1.99 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
75
76
77
78
79
80
81
82
83
{
"name": "@neurocode.io/k8s-graceful-shutdown",
"version": "1.5.1",
"main": "dist/lib/k8s-graceful-shutdown.js",
"source": "lib/k8s-graceful-shutdown.ts",
"types": "dist/lib/k8s-graceful-shutdown.d.ts",
"scripts": {
"clean": "rm -rf dist/*",
"pretest": "npx tsc",
"format": "prettier --write '{lib, test, demos}/*.{ts,js}'",
"test": "mocha --config test/mocharc.yaml test/**/*.test.ts",
"test:coverage": "nyc --reporter=lcov --reporter=text npm test"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/*.js",
"**/*.json",
"coverage/",
"test/",
"**/index.ts"
],
"reporter": [
"html"
],
"all": true
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/express": "4.17.21",
"@types/koa": "^2.13.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.5",
"@types/sinon": "^17.0.3",
"chai": "^4.3.7",
"express": "^4.18.2",
"husky": "^8.0.3",
"koa": "^2.14.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
},
"husky": {
"hooks": {
"pre-push": "npm run format"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120
},
"files": [
"dist/"
],
"description": "Library for NodeJS applications running in kubernetes wanting to have zero downtime deployments",
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neurocode-io/k8s-graceful-shutdown.git"
},
"keywords": [
"kubernetes",
"nodejs",
"zero downtime deployments",
"microservices",
"graceful shutdown"
],
"author": "neurocode I/O GmbH <info@neurocode.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/neurocode-io/k8s-graceful-shutdown/issues"
},
"homepage": "https://github.com/neurocode-io/k8s-graceful-shutdown/blob/master/README.md"
}