-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathpackage.json
117 lines (117 loc) · 3.52 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "cron-parser",
"version": "5.0.2",
"description": "Node.js library for parsing crontab instructions",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"type": "commonjs",
"scripts": {
"clean": "rimraf dist",
"bench": "cross-env node -r ts-node/register benchmarks/index.ts",
"bench:pattern": "cross-env node -r ts-node/register benchmarks/pattern.ts",
"bench:clean": "rimraf benchmarks/versions && rimraf benchmarks/results",
"build": "npm run clean && tsc -p tsconfig.json",
"prepublishOnly": "npm run build",
"prepare": "husky && npm run build",
"precommit": "lint-staged",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:debug": "cross-env DEBUG=eslint:cli-engine eslint .",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"test:unit": "cross-env TZ=UTC jest",
"test:coverage": "cross-env TZ=UTC jest --coverage",
"generate-badges": "jest-coverage-badges",
"test:types": "npm run build && tsd",
"test": "cross-env TZ=UTC npm run lint && npm run test:types && npm run test:coverage && npm run generate-badges",
"docs": "rimraf docs && typedoc --out docs --readme none --name 'CronParser' src"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"luxon": "^3.5.0"
},
"devDependencies": {
"@tsd/typescript": "^5.7.3",
"@types/jest": "^29.5.14",
"@types/luxon": "^3.4.2",
"@types/node": "^22.13.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"cross-env": "^7.0.3",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-coverage-badges": "^1.0.0",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsd": "^0.31.2",
"typedoc": "^0.27.6",
"typescript": "^5.7.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json}": [
"prettier --write"
]
},
"engines": {
"node": ">=18"
},
"browser": {
"fs": false,
"fs/promises": false
},
"tsd": {
"directory": "tests"
},
"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]>",
"Michael Hobbs <[email protected]>"
],
"license": "MIT"
}