forked from OptimalBits/bull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.91 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
{
"name": "bull",
"version": "3.20.0",
"description": "Job manager",
"engines": {
"node": ">=10"
},
"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": {
"cron-parser": "^2.13.0",
"debuglog": "^1.0.0",
"get-port": "^5.1.1",
"ioredis": "4.18.0",
"lodash": "^4.17.19",
"p-timeout": "^3.2.0",
"promise.prototype.finally": "^3.1.2",
"semver": "^7.3.2",
"util.promisify": "^1.0.1",
"uuid": "^8.3.0"
},
"devDependencies": {
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"delay": "^4.3.0",
"eslint": "^7.4.0",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^8.0.1",
"expect.js": "^0.3.1",
"husky": "^4.2.5",
"istanbul": "^0.4.5",
"lint-staged": "^8.2.1",
"mocha": "^8.1.1",
"mocha-lcov-reporter": "^1.3.0",
"moment": "^2.24.0",
"nyc": "^15.1.0",
"p-reflect": "^1.0.0",
"prettier": "^1.19.1",
"sinon": "^7.5.0"
},
"scripts": {
"pretest": "npm run lint",
"lint": "eslint lib test *.js",
"test": "NODE_ENV=test nyc mocha -- 'test/test_*' --recursive --exit",
"test:nolint": "NODE_ENV=test mocha 'test/test_*' --recursive --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"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
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}