forked from OptimalBits/bull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.65 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "bull",
"version": "3.3.8",
"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.5.0",
"cron-parser": "^2.4.1",
"debuglog": "^1.0.0",
"ioredis": "^3.1.4",
"lodash": "^4.17.4",
"semver": "^5.4.1",
"uuid": "^3.1.0"
},
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^3.0.0",
"eslint": "^4.4.1",
"expect.js": "^0.3.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"mocha-lcov-reporter": "^1.3.0",
"moment": "^2.18.1",
"sinon": "^1.17.7"
},
"scripts": {
"lint": "eslint lib test",
"pretest": "npm run lint",
"test": "NODE_ENV=test mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"postpublish": "git push && git push --tags"
},
"eslintConfig": {
"rules": {
"indent": [
2,
2,
{
"SwitchCase": 1
}
],
"semi": 2,
"valid-jsdoc": 0,
"func-style": 0,
"no-use-before-define": 0,
"camelcase": 1,
"no-unused-vars": 1,
"no-alert": 1,
"no-console": [
2,
{
"allow": [
"warn",
"error"
]
}
],
"quotes": [
2,
"single"
],
"no-underscore-dangle": 0
}
}
}