sails-hook-cron
Version:
Sails hook for running tasks by cron
55 lines (54 loc) • 1.27 kB
JSON
{
"name": "sails-hook-cron",
"version": "3.2.0",
"description": "Sails hook for running tasks by cron",
"license": "MIT",
"main": "src/index.js",
"author": {
"email": "ghaiklor@gmail.com",
"name": "Eugene Obrezkov",
"url": "https://ghaiklor.com"
},
"sails": {
"isHook": true
},
"scripts": {
"coveralls": "cat coverage/lcov.info | coveralls",
"prepublishOnly": "npm run lint && npm run test",
"test": "istanbul cover _mocha",
"lint": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "https://github.com/ghaiklor/sails-hook-cron.git"
},
"keywords": [
"sails",
"hook",
"cron"
],
"bugs": {
"url": "https://github.com/ghaiklor/sails-hook-cron/issues"
},
"homepage": "https://github.com/ghaiklor/sails-hook-cron#readme",
"files": [
"src"
],
"devDependencies": {
"chai": "4.2.0",
"coveralls": "3.1.0",
"eslint": "7.3.1",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"istanbul": "0.4.5",
"mocha": "8.0.1",
"sails": "1.2.4",
"sinon": "9.0.2"
},
"dependencies": {
"cron": "1.8.2"
}
}