UNPKG

981 BJSONView Raw
1{
2 "name": "node-cron",
3 "version": "2.0.1",
4 "description": "A simple cron-like task scheduler for Node.js",
5 "author": "Lucas Merencia",
6 "license": "ISC",
7 "homepage": "https://github.com/merencia/node-cron",
8 "main": "src/node-cron.js",
9 "scripts": {
10 "test": "nyc --reporter=html --reporter=text mocha --recursive",
11 "coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
12 "check": "npm run test && npm run coveralls"
13 },
14 "engines": {
15 "node": ">=6.0.0"
16 },
17 "repository": {
18 "type": "git",
19 "url": "git+https://github.com/merencia/node-cron.git"
20 },
21 "keywords": [
22 "cron",
23 "scheduler",
24 "schedule",
25 "task",
26 "job"
27 ],
28 "bugs": {
29 "url": "https://github.com/merencia/node-cron/issues"
30 },
31 "devDependencies": {
32 "coveralls": "^3.0.2",
33 "expect.js": "^0.3.1",
34 "mocha": "^5.2.0",
35 "nyc": "^13.0.1",
36 "sinon": "^6.2.0"
37 },
38 "dependencies": {
39 "tz-offset": "0.0.1"
40 }
41}