UNPKG

1.04 kBJSONView Raw
1{
2 "name": "node-cron",
3 "version": "2.0.0",
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": "./node_modules/mocha/bin/mocha --recursive",
11 "coverage": "istanbul cover _mocha -- --recursive",
12 "coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
13 "check": "npm run coverage && npm run coveralls"
14 },
15 "engines" : {
16 "node" : ">=6.0.0"
17 },
18 "repository": {
19 "type": "git",
20 "url": "git+https://github.com/merencia/node-cron.git"
21 },
22 "keywords": [
23 "cron",
24 "scheduler",
25 "schedule",
26 "task",
27 "job"
28 ],
29 "bugs": {
30 "url": "https://github.com/merencia/node-cron/issues"
31 },
32 "devDependencies": {
33 "coveralls": "^3.0.2",
34 "expect.js": "^0.3.1",
35 "istanbul": "^0.4.5",
36 "mocha": "^5.2.0",
37 "sinon": "^6.2.0"
38 },
39 "dependencies": {
40 "tz-offset": "0.0.1"
41 }
42}