UNPKG

adonis-scheduler

Version:
85 lines (84 loc) 1.88 kB
{ "name": "adonis-scheduler", "version": "3.0.2", "description": "Easy task scheduling for AdonisJS", "scripts": { "coverage": "nyc report --reporter=text-lcov | coveralls", "lint": "standard", "posttest": "npm run coverage", "pretest": "npm run lint", "test": "nyc npm run test:local", "test:local": "FORCE_COLOR=true node bin/index.js --local", "test:win": "set FORCE_COLOR=true && node bin/index.js --win" }, "author": "Nicholas Rempel <nbrempel@gmail.com>", "contributors": [ "Artem Kolesnik <ya@artemkolesnik.ru>" ], "license": "MIT", "dependencies": { "@adonisjs/generic-exceptions": "^1.0.0", "debug": "^3.1.0", "lockfile": "^1.0.4", "lodash": "^4.17.10", "ms": "^2.1.1", "node-schedule": "^1.3.0", "pify": "^3.0.0", "pluralize": "^7.0.0" }, "devDependencies": { "@adonisjs/ace": "^4.0.8", "@adonisjs/fold": "^4.0.8", "@adonisjs/sink": "^1.0.16", "coveralls": "^3.0.1", "cz-conventional-changelog": "^2.1.0", "japa": "^1.0.6", "japa-cli": "^1.0.1", "nyc": "^11.8.0", "semver": "^5.5.0", "standard": "^11.0.1" }, "directories": { "test": "test" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "repository": { "type": "git", "url": "git+https://github.com/nrempel/adonis-scheduler.git" }, "keywords": [ "adonis", "task", "scheduler", "cron" ], "engines": { "node": ">= 7.0.0" }, "nyc": { "exclude": [ "bin", "test" ] }, "standard": { "globals": [ "use", "make" ] }, "files": [ "LICENSE", "README.md", "providers/", "src/" ], "bugs": { "url": "https://github.com/nrempel/adonis-scheduler/issues" }, "homepage": "https://github.com/nrempel/adonis-scheduler#readme" }