-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "@uphold/process-manager",
"version": "4.3.0",
"description": "A module for handling the lifecycle of a node process",
"keywords": [
"graceful",
"manager",
"process",
"shutdown"
],
"homepage": "https://github.com/uphold/process-manager",
"bugs": {
"url": "https://github.com/uphold/process-manager/issues"
},
"license": "MIT",
"author": "Uphold",
"main": "src/index.js",
"repository": "https://github.com/uphold/process-manager.git",
"scripts": {
"lint": "eslint src test",
"release": "release-it",
"test": "jest --coverage --verbose"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@uphold/github-changelog-generator": "^3.4.0",
"eslint": "~8.20.0",
"eslint-config-uphold": "^3.2.0",
"jest": "^29.6.4",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"release-it": "^17.6.0"
},
"jest": {
"restoreMocks": true,
"testEnvironment": "node"
},
"engines": {
"node": ">=14"
},
"pre-commit": {
"run": [
"lint"
]
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}