forked from OptimalBits/bull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.83 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
79
80
81
{
"name": "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.3",
"cron-parser": "^2.5.0",
"debuglog": "^1.0.0",
"ioredis": "^3.1.4",
"lodash": "^4.17.11",
"semver": "^5.6.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"expect.js": "^0.3.1",
"husky": "^1.1.4",
"istanbul": "^0.4.5",
"lint-staged": "^8.0.4",
"mocha": "^5.1.1",
"mocha-lcov-reporter": "^1.3.0",
"moment": "^2.22.1",
"prettier": "^1.15.2",
"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",
"build": "tsc"
},
"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
}
}
}