-
Notifications
You must be signed in to change notification settings - Fork 162
/
package.json
133 lines (133 loc) · 3.29 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"author": "Sebastian Pekarek <mail@sebbo.net>",
"bugs": {
"url": "http://github.com/sebbo2002/ical-generator/issues"
},
"dependencies": {
"uuid-random": "^1.3.2"
},
"description": "ical-generator is a small piece of code which generates ical calendar files",
"devDependencies": {
"@eslint/js": "^9.13.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@qiwi/semantic-release-gh-pages-plugin": "^5.2.12",
"@sebbo2002/semantic-release-jsr": "^2.0.1-develop.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@touch4it/ical-timezones": "^1.9.0",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/luxon": "^3.4.2",
"@types/mocha": "^10.0.9",
"c8": "^10.1.2",
"dayjs": "^1.11.13",
"eslint": "^9.13.0",
"eslint-plugin-jsonc": "^2.16.0",
"esm": "^3.2.25",
"license-checker": "^25.0.1",
"luxon": "^3.5.0",
"mocha": "^10.7.3",
"mochawesome": "^7.1.3",
"moment": "^2.30.1",
"moment-timezone": "^0.5.46",
"nyc": "^17.1.0",
"rrule": "^2.8.1",
"semantic-release": "^24.1.2",
"semantic-release-license": "^1.0.2",
"source-map-support": "^0.5.21",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typedoc": "^0.26.8",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1"
},
"engines": {
"node": "18 || 20 || >=22.0.0"
},
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"files": [
"/src",
"/dist"
],
"homepage": "https://github.com/sebbo2002/ical-generator",
"keywords": [
"ical",
"ics",
"icalendar",
"generator",
"calendar",
"subscription",
"outlook",
"rfc",
"rfc5545",
"events",
"alarms"
],
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"name": "ical-generator",
"peerDependencies": {
"@touch4it/ical-timezones": ">=1.6.0",
"@types/luxon": ">= 1.26.0",
"@types/mocha": ">= 8.2.1",
"dayjs": ">= 1.10.0",
"luxon": ">= 1.26.0",
"moment": ">= 2.29.0",
"moment-timezone": ">= 0.5.33",
"rrule": ">= 2.6.8"
},
"peerDependenciesMeta": {
"@touch4it/ical-timezones": {
"optional": true
},
"@types/luxon": {
"optional": true
},
"@types/mocha": {
"optional": true
},
"@types/node": {
"optional": true
},
"dayjs": {
"optional": true
},
"luxon": {
"optional": true
},
"moment": {
"optional": true
},
"moment-timezone": {
"optional": true
},
"rrule": {
"optional": true
}
},
"preferGlobal": false,
"repository": {
"type": "git",
"url": "https://github.com/sebbo2002/ical-generator.git"
},
"runkitExampleFilename": "examples/example-runkit.js",
"scripts": {
"build": "tsup && cp ./dist/index.d.ts ./dist/index.d.cts",
"build-all": "./.github/workflows/build.sh",
"coverage": "c8 mocha",
"develop": "tsx src/bin/start.ts",
"example": "node ./dist/examples/push.js",
"license-check": "license-checker --production --summary",
"lint": "eslint .",
"start": "node ./dist/bin/start.js",
"test": "mocha"
},
"type": "module",
"version": "8.0.2-develop.2"
}