-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 920 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 920 Bytes
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
{
"name": "slave",
"description": "seamlessly create long-running child processes",
"version": "1.2.2",
"author": {
"name": "Jonathan Ong",
"email": "me@jongleberry.com",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"license": "MIT",
"repository": "thenables/slave",
"dependencies": {
"native-or-bluebird": "1",
"co": "4",
"is-generator": "1"
},
"devDependencies": {
"bluebird": "3.1.5",
"istanbul": "0",
"mocha": "2.3.4"
},
"scripts": {
"test": "mocha --reporter spec",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
},
"keywords": [
"slave",
"child",
"process",
"worker",
"thread"
],
"files": [
"index.js",
"slave.js",
"master.js"
]
}