| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "name": "node-cron",
- "version": "3.0.0",
- "description": "A simple cron-like task scheduler for Node.js",
- "author": "Lucas Merencia",
- "license": "ISC",
- "homepage": "https://github.com/merencia/node-cron",
- "main": "src/node-cron.js",
- "scripts": {
- "test": "nyc --reporter=html --reporter=text mocha --recursive",
- "coverage": "nyc report --reporter=text-lcov | coveralls",
- "lint": "./node_modules/.bin/eslint ./src ./test",
- "check": "npm run lint && npm test && npm run coverage"
- },
- "engines": {
- "node": ">=6.0.0"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/merencia/node-cron.git"
- },
- "keywords": [
- "cron",
- "scheduler",
- "schedule",
- "task",
- "job"
- ],
- "bugs": {
- "url": "https://github.com/merencia/node-cron/issues"
- },
- "devDependencies": {
- "chai": "^4.2.0",
- "coveralls": "^3.0.2",
- "eslint": "^5.7.0",
- "istanbul": "^0.4.2",
- "mocha": "^6.1.4",
- "nyc": "^14.0.0",
- "sinon": "^7.3.2"
- },
- "dependencies": {
- "moment-timezone": "^0.5.31"
- }
- }
|