forked from harrisiirak/cron-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.5 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "cron-parser",
"version": "2.15.0",
"description": "Node.js library for parsing crontab instructions",
"main": "lib/parser.js",
"types": "lib/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap ./test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/harrisiirak/cron-parser.git"
},
"keywords": [
"cron",
"crontab",
"parser"
],
"author": "Harri Siirak",
"contributors": [
"Nicholas Clawson",
"Daniel Prentis <[email protected]>",
"Renault John Lecoultre",
"Richard Astbury <[email protected]>",
"Meaglin Wasabi <[email protected]>",
"Mike Kusold <[email protected]>",
"Alex Kit <[email protected]>",
"Santiago Gimeno <[email protected]>",
"Daniel <[email protected]>",
"Christian Steininger <[email protected]>",
"Mykola Piskovyi <[email protected]>",
"Brian Vaughn <[email protected]>",
"Nicholas Clawson <[email protected]>",
"Yasuhiroki <[email protected]>",
"Nicholas Clawson <[email protected]>",
"Brendan Warkentin <[email protected]>",
"Charlie Fish <[email protected]>",
"Ian Graves <[email protected]>"
],
"license": "MIT",
"dependencies": {
"is-nan": "^1.3.0",
"moment-timezone": "^0.5.31"
},
"devDependencies": {
"sinon": "^7.5.0",
"tap": "^14.10.7"
},
"engines": {
"node": ">=0.8"
},
"browser": {
"fs": false
}
}