mirror of
https://github.com/OptimalBits/bull.git
synced 2026-07-02 00:17:41 +08:00
f6e1543208
Not a huge deal since these files are trivial, but important if they ever grow.
78 lines
1.9 KiB
JSON
78 lines
1.9 KiB
JSON
{
|
|
"name": "bull",
|
|
"version": "3.11.0",
|
|
"description": "Job manager",
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"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.0.0",
|
|
"ioredis": "^4.14.1",
|
|
"lodash": "^4.17.15",
|
|
"p-timeout": "^3.1.0",
|
|
"promise.prototype.finally": "^3.1.1",
|
|
"semver": "^6.3.0",
|
|
"util.promisify": "^1.0.0",
|
|
"uuid": "^3.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^7.5.2",
|
|
"@commitlint/config-conventional": "^7.5.0",
|
|
"chai": "^4.2.0",
|
|
"coveralls": "^3.0.6",
|
|
"delay": "^4.3.0",
|
|
"eslint": "^5.12.1",
|
|
"eslint-plugin-node": "^8.0.1",
|
|
"expect.js": "^0.3.1",
|
|
"husky": "^1.3.1",
|
|
"istanbul": "^0.4.5",
|
|
"lint-staged": "^8.2.1",
|
|
"mocha": "^6.2.0",
|
|
"mocha-lcov-reporter": "^1.3.0",
|
|
"moment": "^2.24.0",
|
|
"p-reflect": "^1.0.0",
|
|
"prettier": "^1.18.2",
|
|
"sinon": "^7.4.2"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint lib test *.js",
|
|
"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
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
}
|
|
}
|
|
}
|