forked from davidmarkclements/seneca-scheduler
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1017 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1017 Bytes
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
37
38
39
40
{
"name": "seneca-scheduler",
"version": "0.2.1",
"description": "Seneca scheduler plugin",
"main": "lib/scheduler.js",
"scripts": {
"test": "node_modules/.bin/mocha -u qunit",
"debug-test": "node_modules/.bin/node-debug -c node_modules/.bin/_mocha -u qunit"
},
"repository": {
"type": "git",
"url": "github.com/Doubl3/seneca-scheduler"
},
"keywords": [
"seneca",
"scheduler",
"scheduling",
"cron"
],
"author": "David Mark Clements",
"contributors": [
{ "name": "Herve Berard", "url": "https://github.com/Doubl3" },
{ "name": "Jun Matsushita", "url": "https://github.com/jmatsushita" }
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Doubl3/seneca-scheduler/issues"
},
"homepage": "https://github.com/Doubl3/seneca-scheduler",
"devDependencies": {
"seneca": "^3.3.0",
"chai": "^3.5.0",
"mocha": "^3.2.0"
},
"dependencies": {
"node-schedule": "^1.3.0",
"moment": "^2.17.1",
"lodash": "~4.17.4"
}
}