-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.33 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
{
"name": "ikalendar",
"version": "1.5.0",
"description": "iKalendar iCal (ics) generator and parser",
"repository": {
"type": "git",
"url": "https://github.com/iammatis/iKalendar.git"
},
"files": [
"/lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' 'tests/**/*.ts' --fix",
"build": "tsc"
},
"keywords": [
"ics",
"ical",
"calendar",
"icalendar",
"parser",
"generator",
"events",
"alarms",
"journals",
"typescript"
],
"author": "Matej Vilk <matej@vilk.sk>",
"contributors": [
"Claudius Coenen <opensource@amenthes.de>",
"BlueskyFR <hugo.cartigny@gmail.com>",
"vsulak <sulak@touch4it.com>"
],
"license": "ISC",
"dependencies": {
"@touch4it/ical-timezones": "^1.9.0",
"rrule": "^2.7.2"
},
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.4",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.3",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}