-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.11 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.11 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
71
72
73
74
75
{
"name": "node-ical",
"version": "0.26.0",
"main": "node-ical.js",
"types": "node-ical.d.ts",
"description": "NodeJS class for parsing iCalendar/ICS files",
"keywords": [
"ical",
"ics",
"calendar",
"nodejs"
],
"homepage": "https://github.com/jens-maus/node-ical",
"author": "Jens Maus <mail@jens-maus.de>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/jens-maus/node-ical.git"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"rrule-temporal": "^1.5.1",
"temporal-polyfill": "^0.3.2"
},
"overrides": {
"@js-temporal/polyfill": "npm:temporal-polyfill@^0.3.0"
},
"devDependencies": {
"date-fns": "^4.1.0",
"dayjs": "^1.11.20",
"fast-xml-parser": "^5.7.0",
"lint-staged": "^16.4.0",
"luxon": "^3.7.2",
"mocha": "^11.7.5",
"moment-timezone": "^0.6.1",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.2",
"xo": "^2.0.2"
},
"xo": {
"space": 2,
"rules": {
"@stylistic/max-len": "off",
"@typescript-eslint/member-ordering": "off",
"@typescript-eslint/naming-convention": "off",
"n/prefer-promises/fs": "off",
"unicorn/prefer-module": "off",
"unicorn/prefer-spread": "off",
"max-params": [
"warn",
5
]
}
},
"scripts": {
"examples": "node examples/example-rrule-basic.js && node examples/example-rrule-moment.js && node examples/example-rrule-luxon.js && node examples/example-rrule-dayjs.js && node examples/example-rrule-datefns.js && node examples/example-rrule-vanilla.js && node examples/example.mjs",
"test": "npm run test:types && xo && mocha --timeout 8000",
"test:types": "tsc --project test/tsconfig.json",
"lint": "xo",
"lintfix": "xo --fix",
"prepare": "simple-git-hooks",
"build": "node build/update-windows-zones.mjs",
"build:strict": "node build/update-windows-zones.mjs --strict"
},
"simple-git-hooks": {
"pre-commit": "npx --no lint-staged",
"pre-push": "npm test"
},
"lint-staged": {
"!**/*.d.ts": [],
"**/*.{js,cjs,mjs,ts,tsx}": "xo --fix"
}
}