-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.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
{
"name": "icalzone",
"version": "0.0.1",
"description": "iCalzone is a light-weight VTIMEZONE provider",
"author": "Nick Singleton",
"license": "ISC",
"scripts": {
"build-zones": "rm ./src/zones.ts ; ts-node --dir ./scripts buildzones",
"build-library": "rm -rf ./dist ; tsc --project tsconfig.build.json",
"build": "yarn run build-zones && yarn run build-library",
"lint": "eslint 'src/**/*.ts'",
"test": "jest"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": {
"url": "https://github.com/Manc/icalzone.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/Manc/icalzone/issues"
},
"homepage": "https://github.com/Manc/icalzone",
"keywords": [
"ical",
"icalendar",
"ics",
"vtimezone",
"timezone",
"rfc5545"
],
"devDependencies": {
"@touch4it/ical-timezones": "^1.6.1",
"@types/jest": "^26.0.23",
"@types/node": "^15.3.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.27.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependenciesMeta": {
"@touch4it/ical-timezones@1.6.1": {
"unplugged": true
}
}
}