-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
55 lines (55 loc) · 1.34 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
52
53
54
55
{
"name": "luster",
"version": "2.4.1",
"description": "Node.js cluster wrapper",
"main": "./lib/luster.js",
"bin": {
"luster": "./bin/luster.js"
},
"scripts": {
"lint": "eslint ./lib ./test ./examples ./bin",
"unit": "istanbul test _mocha -- test/unit/test",
"func": "mocha test/func/test $@",
"test": "npm run lint && npm run unit && npm run func -- $@"
},
"repository": {
"type": "git",
"url": "git://github.com/nodules/luster.git"
},
"keywords": [
"cluster",
"luster",
"ipc"
],
"author": "Phillip Kovalev <[email protected]> (https://github.com/kaero)",
"maintainers": [
"Phillip Kovalev <[email protected]> (https://github.com/kaero)"
],
"contributors": [
"Vladimir Varankin <[email protected]> (https://github.com/narqo)",
"Alexey Rybakov <[email protected]> (https://github.com/flackus)"
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/nodules/luster/raw/master/LICENSE"
}
],
"dependencies": {
"terror": "^1.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"delay": "^4.3.0",
"eslint": "^4.19.1",
"eslint-config-nodules": "^0.4.0",
"istanbul": "^0.4.1",
"mocha": "^3.1.2",
"p-event": "^4.1.0",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0"
},
"engines": {
"node": ">=8"
}
}