-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.27 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.27 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
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
{
"name": "@catbee/cron-parser",
"version": "1.0.0",
"description": "A JavaScript library for parsing and manipulating cron expressions. Features timezone support, DST handling, and iterator capabilities.",
"publishConfig": {
"access": "public"
},
"author": "Hari G <harig@catbee.in>",
"maintainers": [
"Hari G <harig@catbee.in>",
"Bavi R <bavithra@catbee.in>"
],
"homepage": "https://catbee.in/docs/@catbee/cron-parser/intro",
"repository": {
"type": "git",
"url": "https://github.com/catbee-technologies/cron-parser.git"
},
"bugs": {
"url": "https://github.com/catbee-technologies/cron-parser/issues"
},
"license": "MIT",
"scripts": {
"prepare": "husky",
"prepack": "npm run compile -- --silent",
"compile": "tsup",
"clean": "rimraf dist",
"build": "npm run compile",
"build:clean": "npm run clean && npm run build",
"build:start": "npm run build && node dist/index.cjs && node dist/index.mjs",
"postbuild": "node scripts/add-license.mjs && node scripts/post-build.mjs",
"lint": "eslint src tests",
"lint:fix": "eslint --fix src tests",
"preversion": "npm run lint && npm run build:start && npm run test",
"dryrun": "npm pack --dry-run",
"dryrun:list": "npm pack --dry-run --json > pack-output.json",
"test": "cross-env TZ=UTC jest",
"test:coverage": "cross-env TZ=UTC jest --coverage",
"coverage": "npm run test:coverage",
"deps:update": "npx npm-check-updates -u --target latest && npm install"
},
"dependencies": {
"luxon": "^3.7.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.5.0",
"@types/jest": "^30.0.0",
"@types/luxon": "^3.7.1",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"cross-env": "^10.1.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jest-junit": "^16.0.0",
"jest-sonar-reporter": "^2.0.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.9",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1"
},
"engines": {
"node": ">=18.0"
}
}