cliche-scheduler
Version:
Job queue and scheduler for cliche.js
37 lines (36 loc) • 1.2 kB
JSON
{
"name": "cliche-scheduler",
"version": "1.0.0-alpha.2",
"description": "Job queue and scheduler for cliche.js",
"keywords": [
"cliche",
"queue",
"jobs",
"scheduler"
],
"author": "Konstantin Tsabolov <ktsabolov@gmail.com> (https://tsabolov.com)",
"license": "MIT",
"repository": "gitlab:cliche.js/cliche.git",
"main": "lib/scheduler.js",
"scripts": {
"test": "NODE_ENV=testing mocha --reporter spec --bail --check-leaks --globals='$V,$M,$L,$P'",
"test-cov": "NODE_ENV=testing istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks --globals='$V,$M,$L,$P'",
"test-ci": "NODE_ENV=testing istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks --globals='$V,$M,$L,$P'",
"test-tap": "NODE_ENV=testing mocha --reporter tap --check-leaks --globals='$V,$M,$L,$P'"
},
"bin": {
"cliche-scheduler": ".bin/scheduler.js"
},
"dependencies": {
"bluebird": "^3.3.5",
"cliche-config": "^3.0.0",
"cliche-logger": "^1.0.0-alpha.1",
"kue": "^0.10.5",
"string": "^3.3.1"
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5"
}
}