forked from kelektiv/node-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.46 KB
/
package.json
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
41
42
43
{
"name": "cron",
"description": "Cron jobs for your node",
"version": "1.0.9",
"author": "Nick Campbell <[email protected]> (http://github.com/ncb000gt)",
"bugs" : {
"url" : "http://github.com/ncb000gt/node-cron/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/ncb000gt/node-cron.git"
},
"main": "lib/cron",
"scripts": {
"test": "make test"
},
"dependencies": {
"moment-timezone": "~0.3.0"
},
"devDependencies": {
"nodeunit": ">=0.5.4",
"sinon": "~1.12.x"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"contributors": [
"Romain Beauxis <[email protected]> (https://github.com/toots)",
"James Padolsey <> (https://github.com/jamespadolsey)",
"Finn Herpich <[email protected]> (https://github.com/ErrorProne)",
"Clifton Cunningham <[email protected]> (https://github.com/cliftonc)",
"Eric Abouaf <[email protected]> (https://github.com/neyric)",
"humanchimp <[email protected]> (https://github.com/humanchimp)",
"Craig Condon <[email protected]> (https://github.com/spiceapps)",
"Dan Bear <[email protected]> (https://github.com/danhbear)",
"Vadim Baryshev <[email protected]> (https://github.com/baryshev)",
"Leandro Ferrari <[email protected]> (https://github.com/lfthomaz)",
"Gregg Zigler <[email protected]> (https://github.com/greggzigler)"
]
}