-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.13 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
{
"name": "ical-gen-calzone",
"version": "0.0.3",
"description": "A calendar component for ical-gen that automatically adds VTIMEZONE components",
"author": "Nick Singleton",
"license": "ISC",
"private": false,
"scripts": {
"build": "rm -rf ./dist ; tsc --project tsconfig.build.json",
"lint": "eslint 'src/**/*.ts'",
"test": "jest"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": {
"url": "https://github.com/Manc/ical-gen-calzone.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/Manc/ical-gen-calzone/issues"
},
"homepage": "https://github.com/Manc/ical-gen-calzone",
"keywords": [
"ical-gen",
"ical",
"icalendar",
"ics",
"vtimezone",
"timezone",
"rfc5545"
],
"dependencies": {
"icalzone": "^0.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.26.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"peerDependencies": {
"ical-gen": ">= 0.0.5 < 0.1"
}
}