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
37 lines (37 loc) · 788 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 788 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
{
"name": "bull",
"version": "0.7.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": "^2.10.2",
"lodash": "^3.10.1",
"node-uuid": "^1.4.7",
"redis": "^0.12.1",
"semver": "^4.2.0"
},
"devDependencies": {
"expect.js": "^0.3.1",
"gulp": "^3.8.11",
"gulp-eslint": "^0.13.2",
"mocha": "^2.3.4",
"sinon": "^1.17.2"
},
"scripts": {
"test": "gulp && mocha test/test_* --reporter spec --timeout 5000",
"postpublish": "git push && git push --tags"
}
}