-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
90 lines (90 loc) · 2.35 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
{
"name": "kalender-events",
"version": "0.28.3",
"description": "calendar events for nodejs",
"scripts": {
"test": "ts-mocha --timeout 10000 --paths test/**/*_spec.ts",
"testfile": "ts-mocha --timeout 10000 --paths ",
"watch": "tsc --watch",
"build": "node ./buildSrc/esbuild.js",
"copy": "cp src/windowsZones.json dist/",
"tsc-declaration": "tsc --declaration --emitDeclarationOnly",
"compile": "npm run build && npm run tsc-declaration && npm run copy",
"release": "release-it",
"coverage": "nyc npm run test"
},
"bin": {
"kalender-events": "./bin/kalender-events.js",
"kev": "./bin/kalender-events.js"
},
"repository": {
"type": "git",
"url": "https://github.com/naimo84/kalender-events.git"
},
"keywords": [
"ics",
"events",
"ical",
"calendar",
"caldav",
"icloud",
"apple",
"google",
"outlook",
"kalender",
"commandline",
"cli"
],
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"author": "naimo84",
"dependencies": {
"@naimo84/dav": "^1.9.0",
"axios": "^0.21.1",
"cloneextend": "0.0.3",
"debug": "^4.1.1",
"ical-expander": "^2.1.0",
"lodash": "^4.17.15",
"moment-timezone": "^0.5.34",
"node-cache": "^5.1.0",
"rrule": "2.6.4",
"scrapegoat": "1.0.1",
"uuid": "^8.3.2",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/lodash": "^4.14.149",
"@types/mocha": "^8.2.0",
"@types/moment-timezone": "^0.5.30",
"@types/node": "^13.11.0",
"@types/uuid": "^8.3.3",
"chai": "4.2.0",
"chai-like": "1.1.1",
"chai-things": "0.2.0",
"esbuild": "^0.13.15",
"esbuild-node-externals": "^1.4.1",
"mocha": "^8.0.0",
"nyc": "^15.1.0",
"release-it": "^14.11.8",
"sinon": "9.0.1",
"ts-mocha": "^8.0.0",
"typescript": "^4.5.3"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/naimo84/kalender-events/blob/main/LICENSE"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/naimo84/kalender-events/issues"
},
"homepage": "https://github.com/naimo84/kalender-events#readme",
"funding": {
"type": "paypal",
"url": "https://paypal.me/NeumannBenjamin"
}
}