-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.75 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": "@scdev/fine",
"version": "2.0.0",
"description": "Graceful shutdown Node.js application, this module helps handling process exit signals and closing pending jobs",
"type": "module",
"types": "./src/index.d.cts",
"exports": {
"require": "./src/index.cjs",
"default": "./src/index.mjs",
"node": "./src/index.mjs",
"import": "./src/index.mjs"
},
"bugs": {
"url": "https://github.com/simonecorsi/fine/issues"
},
"engines": {
"node": ">=12"
},
"keywords": [
"nodejs",
"npm",
"javascript",
"graceful",
"shutdown",
"process exit",
"exit",
"clear exit",
"gracefully",
"graceful shutdown",
"process shutdown"
],
"homepage": "https://github.com/simonecorsi/fine",
"author": "Simone Corsi <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.0.2",
"@commitlint/config-conventional": "^19.0.0",
"@saithodev/semantic-release-backmerge": "^3.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^9.0.2",
"is-ci": "^3.0.0",
"lint-staged": "^15.0.1",
"markdown-toc": "^1.2.0",
"prettier": "^3.0.0",
"typescript": "^5.0.4"
},
"volta": {
"node": "16.15.1",
"npm": "7.18.1"
},
"scripts": {
"prepare": "node prepare.js || echo 'Skipping prepare'",
"types": "tsc --allowJs -d --emitDeclarationOnly src/index.cjs"
}
}