-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 983 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
42
43
44
45
{
"name": "synchronize-pool",
"version": "0.1.0",
"description": "Concurrent control of fibers on a per-pool basis with synchronize.js",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/mixmaxhq/synchronize-pool.git"
},
"keywords": [
"concurrent",
"fiber",
"fibers",
"pool",
"synchronize",
"synchronize.js",
"task"
],
"files": [
"index.js"
],
"author": "Eli Skeggs <[email protected]> (https://eliskeggs.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixmaxhq/synchronize-pool/issues"
},
"homepage": "https://github.com/mixmaxhq/synchronize-pool#readme",
"dependencies": {
"synchronize": "^0.9.15"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": ">=3",
"eslint-config-mixmax": "^0.6.0",
"mocha": "^2.5.3",
"pre-commit": "^1.2.2"
},
"pre-commit": [
"lint"
]
}