-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 883 Bytes
/
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
{
"name": "machinegun",
"description": "Async task runner with controlled parallelism (and an angry cat)",
"version": "0.2.0",
"author": {
"name": "Alexander Kuznetsov",
"email": "[email protected]",
"url": "http://kuznetsov.by/"
},
"repository": {
"type": "git",
"url": "https://github.com/shkuznetsov/machinegun.git"
},
"homepage": "https://github.com/shkuznetsov/machinegun",
"keywords": [
"async",
"task",
"runner",
"parallel",
"sequential",
"pause",
"resume"
],
"main": "./index.js",
"devDependencies": {
"chai": "^3.5.0",
"chai-sequencer": "^1.0.1",
"mocha": "^2.5.3"
},
"scripts": {
"test": "mocha"
},
"engines": {
"node": ">= 0.10"
},
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/shkuznetsov/machinegun/issues"
}
}