forked from node-modules/cfork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "cfork",
"version": "1.5.0",
"description": "cluster fork and restart easy way",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"cover": "node --harmony node_modules/.bin/istanbul cover --include-all-sources --report none --print none node_modules/.bin/_mocha -- --check-leaks -t 15000 test/*.test.js",
"lint": "eslint index.js test",
"test": "npm run clean && npm run lint && npm run cover && istanbul report json lcov html text",
"autod": "autod -w --prefix '~' -t test,fixtures",
"cnpm": "npm install --registry=https://registry.npm.taobao.org",
"clean": "rm -rf coverage"
},
"dependencies": {},
"devDependencies": {
"autod": "*",
"childprocess": "1",
"contributors": "*",
"eslint": "1",
"graceful": "1",
"istanbul": "^0.4.0",
"mocha": "2",
"pedding": "1",
"should": "4",
"urllib": "2"
},
"homepage": "https://github.com/node-modules/cfork",
"repository": {
"type": "git",
"url": "git://github.com/node-modules/cfork.git",
"web": "https://github.com/node-modules/cfork"
},
"bugs": {
"url": "https://github.com/node-modules/cfork/issues",
"email": "[email protected]"
},
"keywords": [
"cluster",
"cluster-fork",
"cfork",
"restart"
],
"engines": {
"node": ">= 0.12.0"
},
"author": "fengmk2 <[email protected]> (http://fengmk2.com)",
"license": "MIT"
}