forked from OptimalBits/bull
-
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) · 859 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 859 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": "bull",
"version": "2.1.0",
"description": "Job manager",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/OptimalBits/bull.git"
},
"keywords": [
"job",
"queue",
"task",
"parallel"
],
"author": "OptimalBits",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"bluebird": "^3.4.7",
"debuglog": "^1.0.0",
"disturbed": "^1.0.6",
"ioredis": "^2.5.0",
"lodash": "^4.17.4",
"redlock": "^2.1.0",
"semver": "^5.3.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"expect.js": "^0.3.1",
"gulp": "^3.9.1",
"gulp-eslint": "^2.1.0",
"mocha": "^2.5.3",
"sinon": "^1.17.7"
},
"scripts": {
"test": "gulp && mocha test/test_* --reporter spec --timeout 5000",
"postpublish": "git push && git push --tags"
}
}