1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| {
| "name": "node-schedule",
| "version": "0.2.9",
| "description": "A cron-like and not-cron-like job scheduler for Node.",
| "keywords": [
| "schedule",
| "task",
| "job",
| "cron"
| ],
| "main": "./lib/schedule.js",
| "scripts": {
| "test": "./node_modules/.bin/nodeunit test",
| "lint": "./node_modules/.bin/eslint lib"
| },
| "author": {
| "name": "Matt Patenaude",
| "email": "matt@mattpatenaude.com",
| "url": "http://mattpatenaude.com"
| },
| "repository": {
| "type": "git",
| "url": "https://github.com/tejasmanohar/node-schedule.git"
| },
| "dependencies": {
| "cron-parser": "0.6.2",
| "long-timeout": "0.0.2"
| },
| "devDependencies": {
| "coveralls": "^2.11.2",
| "eslint": "^0.15.1",
| "istanbul": "^0.3.8",
| "nodeunit": "^0.9.1",
| "sinon": "^1.14.1"
| }
| }
|
|