-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.72 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
{
"name": "@dnlup/fastify-traps",
"version": "3.0.2",
"description": "A Fastify plugin to close the server gracefully on SIGINT and SIGTERM signals",
"main": "index.js",
"type": "commonjs",
"types": "index.d.ts",
"scripts": {
"doc": "markdown-toc -i README.md",
"lint": "standard --fix | snazzy",
"test": "tap test/**.test.js",
"test:ci": "npm run test -- --cov --coverage-report=lcovonly",
"test:coverage": "npm test -- --coverage-report=html",
"prerelease": "npm cit",
"release": "HUSKY=0 standard-version --sign",
"postrelease": "npm run push && npm publish",
"prenext": "npm cit",
"next": "HUSKY=0 standard-version --sign --prerelease",
"postnext": "npm run push && npm publish --tag next",
"push": "git push origin --follow-tags `git rev-parse --abbrev-ref HEAD`",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dnlup/fastify-traps.git"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"fastify",
"close",
"graceful",
"gracefully",
"SIGINT",
"SIGTERM"
],
"author": "dnlup <dnlup.dev@gmail.com>",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/dnlup/fastify-traps/issues"
},
"homepage": "https://github.com/dnlup/fastify-traps#readme",
"devDependencies": {
"@types/node": "^20.1.2",
"fastify": "^4.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"markdown-toc": "^1.2.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"standard-version": "^9.2.0",
"tap": "^16.0.0",
"tsd": "^0.30.3",
"typescript": "^5.0.4"
},
"dependencies": {
"fastify-plugin": "^4.0.0"
}
}