forked from rchampourlier/calsync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 733 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 733 Bytes
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
{
"name": "calsync",
"version": "1.3.0",
"description": "Synchronizes between CalDAV and Google Calendar",
"main": "app.js",
"keywords": [
"caldav",
"nodejs",
"typescript"
],
"author": "Romain Champourlier",
"scripts": {
"build": "tsc",
"app:dev": "yarn build && node --trace-warnings ./dist/app.js",
"app": "node --trace-warnings ./dist/app.js",
"test": "jest --watch"
},
"dependencies": {
"googleapis": "^120.0.0",
"ical.js": "^1.5.0",
"moment": "^2.29.4",
"xml2js": "^0.6.0"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^20.3.3",
"jest": "^29.5.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"license": "MIT"
}