-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.06 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
{
"name": "daemon-control",
"version": "0.1.5",
"description": "Daemon control script with pidfile management utility",
"scripts": {
"all": "npm run npmignore && npm run eslint && npm run coverage",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --recursive test",
"eslint": "./node_modules/.bin/eslint *.js example/*.js test/*js",
"npmignore": "echo '.codeclimate.yml\\n.eslintrc\\n.gitignore\\n.travis.yml\\nexample\\ntest' > .npmignore ; cat .gitignore >> .npmignore",
"test": "./node_modules/.bin/_mocha test"
},
"bugs": "https://github.com/iccicci/daemon-control/issues",
"repository": "https://github.com/iccicci/daemon-control",
"keywords": [
"daemon",
"pid",
"pidfile"
],
"engines": {
"node": ">=0.11"
},
"author": "Daniele Ricci <[email protected]> (https://github.com/iccicci)",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {},
"devDependencies": {
"eslint": "3.15.0",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"mocha-istanbul": "0.3.0"
}
}