-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 940 Bytes
/
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
{
"name": "@open-node/graceful",
"version": "0.4.0",
"description": "Node.js process reload graceful",
"main": "src/graceful.js",
"scripts": {
"lint": "eslint ./src/*",
"test": "jest --coverage",
"test:watch": "jest --watch src",
"readme": "d=`head -n 40 README.md` && (echo \"$d\n\n\n\" && documentation build src/** -f md) > README.md",
"release": "npm publish --registry=https://registry.npmjs.org --access=public",
"release:github": "npm publish --registry=https://npm.pkg.github.com/"
},
"pre-commit": ["lint", "test"],
"repository": {
"type": "git",
"url": "git+https://github.com/open-node/graceful.git"
},
"keywords": ["process", "graceful"],
"author": "Redstone Zhao",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-node/graceful/issues"
},
"homepage": "https://github.com/open-node/graceful#readme",
"devDependencies": {
"jest": "^24.9.0"
}
}