-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 KB
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
{
"name": "@rahu619/cron-converter-u2q",
"version": "1.2.2",
"description": "Converts cron expressions between unix and quartz formats",
"main": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --no-watchman --coverage",
"lint": "npx eslint src/**/*.ts --fix"
},
"author": "BitBundler <rahu619@gmail.com>",
"keywords": [
"cron",
"unix",
"quartz",
"cron-expression",
"cron-convert"
],
"engines": {
"node": "^20 || ^22 || ^24"
},
"license": "MIT",
"homepage": "https://github.com/rahu619/cron-converter-u2q",
"repository": {
"type": "git",
"url": "git+https://github.com/rahu619/cron-converter-u2q.git"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.9",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.46.0",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}