forked from sebbo2002/ical-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.02 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.02 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
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
{
"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": {
"@qiwi/semantic-release-gh-pages-plugin": "^5.2.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@touch4it/ical-timezones": "^1.8.1",
"@types/luxon": "^3.0.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.20",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"dayjs": "^1.11.5",
"eslint": "^8.24.0",
"eslint-plugin-jsonc": "^2.4.0",
"license-checker": "^25.0.1",
"luxon": "^3.0.4",
"mocha": "^10.0.0",
"mochawesome": "^7.1.3",
"moment": "^2.29.4",
"moment-timezone": "^0.5.37",
"nyc": "^15.1.0",
"portfinder": "^1.0.32",
"rrule": "^2.7.1",
"semantic-release": "^19.0.5",
"semantic-release-license": "^1.0.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typedoc": "^0.23.15",
"typescript": "^4.8.3"
},
"engines": {
"node": ">=12.0.0"
},
"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.js",
"types": "./dist/index.d.ts",
"name": "ical-generator",
"peerDependencies": {
"@touch4it/ical-timezones": ">=1.6.0",
"@types/luxon": ">= 1.26.0",
"@types/mocha": ">= 8.2.1",
"@types/node": ">= 15.0.0",
"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": "tsc",
"build-all": "./.github/workflows/build.sh",
"coverage": "nyc mocha",
"develop": "ts-node ./src/bin/start.ts",
"example": "node ./dist/examples/push.js",
"license-check": "license-checker --production --summary",
"lint": "eslint . --ext .ts",
"start": "node ./dist/bin/start.js",
"test": "mocha"
},
"version": "v2.0.0-develop"
}