This repository has been archived by the owner on Jun 7, 2022. It is now read-only.
forked from OptimalBits/bull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.75 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
{
"name": "@flipp/bull",
"version": "3.5.1",
"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.5.0",
"debuglog": "^1.0.0",
"ioredis": "^3.1.4",
"lodash": "^4.17.4",
"semver": "^5.5.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"expect.js": "^0.3.1",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"lint-staged": "^7.1.0",
"mocha": "^5.1.1",
"mocha-lcov-reporter": "^1.3.0",
"moment": "^2.22.1",
"prettier": "^1.12.1",
"sinon": "^5.0.7"
},
"scripts": {
"lint": "eslint lib test",
"pretest": "npm run lint",
"test": "NODE_ENV=test mocha --exit",
"coveralls":
"istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --exit -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"postpublish": "git push && git push --tags",
"prettier": "prettier --config package.json --write '**/*.js'",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json}": ["prettier --write", "git add"]
},
"prettier": {
"singleQuote": true
},
"eslintConfig": {
"rules": {
"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"]
}
],
"no-underscore-dangle": 0
}
}
}