-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathpackage.json
91 lines (91 loc) · 2.14 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "cron-parser",
"version": "4.9.0",
"description": "Node.js library for parsing crontab instructions",
"main": "lib/parser.js",
"types": "types/index.d.ts",
"typesVersions": {
"<4.1": {
"*": [
"types/ts3/*"
]
}
},
"directories": {
"test": "test"
},
"scripts": {
"test:tsd": "tsd",
"test:unit": "TZ=UTC tap ./test/*.js",
"test:cover": "TZ=UTC tap --coverage-report=html ./test/*.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "npm run lint && npm run test:unit && npm run test:tsd"
},
"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]>",
"Andy Thompson <[email protected]>",
"Regev Brody <[email protected]>"
],
"license": "MIT",
"dependencies": {
"luxon": "^3.2.1"
},
"devDependencies": {
"eslint": "^8.27.0",
"sinon": "^15.0.1",
"tap": "^16.3.3",
"tsd": "^0.26.0"
},
"engines": {
"node": ">=12.0.0"
},
"browser": {
"fs": false
},
"tap": {
"check-coverage": false
},
"tsd": {
"directory": "test",
"compilerOptions": {
"lib": [
"es2017",
"dom"
]
}
},
"files": [
"lib",
"types",
"LICENSE",
"README.md"
]
}