forked from setthase/division
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "division",
"version": "1.0.0-alpha",
"description": "Simple yet powerful wrapper over node.js cluster API. This module is inspired by impressive, but abandoned project Cluster created by TJ Holowaychuk.",
"author": "Tomasz Sobczak",
"main": "lib/division.js",
"devDependencies": {
"coffee-script": "1.8.0",
"coffeelint": "^1.6.1",
"coveralls": "^2.11.2",
"istanbul": "^0.3.5",
"mocha": "^2.0.1",
"should": "4.3.0",
"sinon": "^1.12.1"
},
"engines": {
"node": ">= 0.10.0",
"npm": ">= 1.3.7"
},
"scripts": {
"prepublish": "./node_modules/.bin/cake compile",
"precoverage": "./node_modules/.bin/cake compile",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcov -- -R spec",
"pretest": "./node_modules/.bin/cake compile",
"test": "./node_modules/.bin/cake --reporter spec test",
"lint": "./node_modules/.bin/coffeelint src"
},
"bugs": {
"url": "http://github.com/codename-/division/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/codename-/division.git"
},
"keywords": [
"division",
"cluster",
"manager",
"master",
"workers",
"supervisor",
"fork",
"spawn",
"multi-core",
"child-process"
],
"license": "MIT"
}