UNPKG

937 BJSONView Raw
1{
2 "name": "node-cron",
3 "version": "1.1.3",
4 "description": "A simple cron-like task scheduler for Node.js",
5 "author": "Lucas Merencia",
6 "license": "ISC",
7 "homepage": "http://merencia.com/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 "repository": {
16 "type": "git",
17 "url": "git+https://github.com/merencia/node-cron.git"
18 },
19 "keywords": [
20 "cron",
21 "scheduler",
22 "schedule",
23 "task",
24 "job"
25 ],
26 "bugs": {
27 "url": "https://github.com/merencia/node-cron/issues"
28 },
29 "devDependencies": {
30 "coveralls": "^2.11.6",
31 "expect.js": "^0.3.1",
32 "istanbul": "^0.4.2",
33 "mocha": "^3.0.2",
34 "sinon": "^1.17.3"
35 }
36}