-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
71 lines (71 loc) · 1.77 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
{
"name": "caldav-adapter",
"description": "CalDAV server for Node.js and Koa. Modernized and maintained for Forward Email.",
"version": "7.2.0",
"author": "Sanders DeNardi and Forward Email LLC",
"contributors": [
"Sanders DeNardi <[email protected]> (http://www.sandersdenardi.com/)",
"Forward Email (https://forwardemail.net)"
],
"dependencies": {
"@xmldom/xmldom": "^0.8.10",
"basic-auth": "^2.0.1",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"path-to-regexp": "^6.2.1",
"raw-body": "^2.5.2",
"validator": "^13.12.0",
"winston": "^3.11.0",
"xmlbuilder2": "^3.1.1",
"xpath": "0.0.34"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"ava": "^5.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"eslint-config-xo-lass": "^2.0.1",
"fixpack": "^4.0.0",
"husky": "^8.0.3",
"koa": "^2.15.0",
"koa-compress": "^5.1.1",
"koa-morgan": "^1.0.1",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.3",
"nyc": "^15.1.0",
"remark-cli": "11",
"remark-preset-github": "^4.0.4",
"xo": "^0.56.0"
},
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/forwardemail/caldav-adapter",
"keywords": [
"caldav",
"calendar",
"card",
"carddav",
"dav",
"express",
"fastify",
"ical",
"koa",
"web",
"webdav"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/forwardemail/caldav-adapter.git"
},
"scripts": {
"lint": "xo --fix && remark . -qfo && fixpack",
"prepare": "husky install",
"pretest": "npm run lint",
"test": "npm run test-coverage",
"test-coverage": "cross-env NODE_ENV=test nyc ava"
}
}