forked from natelindev/tsdav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.78 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": "tsdav",
"version": "2.1.0",
"description": "WebDAV, CALDAV, and CARDDAV client for Nodejs and the Browser",
"keywords": [
"dav",
"caldav",
"carddav",
"webdav",
"ical",
"vcard",
"addressbook",
"calendar",
"calendars",
"contacts",
"contact",
"sync",
"nodejs",
"browser",
"typescript"
],
"homepage": "https://tsdav.vercel.app/",
"repository": "https://github.com/natelindev/tsdav",
"license": "MIT",
"author": "[email protected]",
"main": "dist/tsdav.cjs.js",
"module": "dist/tsdav.esm.js",
"types": "dist/tsdav.d.ts",
"files": [
"dist",
"package.json"
],
"scripts": {
"build": "yarn -s clean && rollup -c rollup.config.mjs && copyfiles package.json LICENSE README.md ./dist && rimraf ./dist/ts",
"clean": "rimraf dist*",
"prepublishOnly": "yarn build",
"test": "echo \"temporarily disabled\" && exit 0",
"test:apple": "jest --testPathPattern=src/__tests__/integration/apple --runInBand",
"test:baikal": "jest --testPathPattern=src/__tests__/integration/baikal --runInBand",
"test:fastmail": "jest --testPathPattern=src/__tests__/integration/fastmail --runInBand",
"test:google": "jest --testPathPattern=src/__tests__/integration/google --runInBand",
"test:nextcloud": "jest --testPathPattern=src/__tests__/integration/nextcloud --runInBand",
"test:unit": "jest --testPathPattern=src/__tests__/unit",
"test:zoho": "jest --testPathPattern=src/__tests__/integration/zoho --runInBand",
"typecheck": "tsc --noEmit",
"watch": "tsc --watch --outDir ./dist"
},
"dependencies": {
"base-64": "1.0.0",
"cross-fetch": "4.0.0",
"debug": "4.3.5",
"xml-js": "1.6.11"
},
"devDependencies": {
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-typescript": "11.1.6",
"@types/base-64": "1.0.2",
"@types/debug": "4.1.12",
"@types/jest": "29.5.12",
"@types/node": "20.14.10",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"copyfiles": "2.4.1",
"cross-env": "7.0.3",
"dotenv": "16.4.5",
"eslint": "9.7.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-module-utils": "2.8.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"jest": "29.7.0",
"prettier": "3.3.3",
"rimraf": "5.0.7",
"rollup": "4.18.1",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-polyfill-node": "0.13.0",
"rollup-plugin-terser": "7.0.2",
"sort-package-json": "2.10.0",
"ts-jest": "29.2.2",
"tslib": "2.6.3",
"typescript": "5.5.3"
},
"engines": {
"node": ">=10"
}
}