-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.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.2",
"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": "linlilulll@gmail.com",
"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.7",
"xml-js": "1.6.11"
},
"devDependencies": {
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"@types/base-64": "1.0.2",
"@types/debug": "4.1.12",
"@types/jest": "29.5.12",
"@types/node": "22.5.4",
"@typescript-eslint/eslint-plugin": "8.5.0",
"@typescript-eslint/parser": "8.5.0",
"copyfiles": "2.4.1",
"cross-env": "7.0.3",
"dotenv": "16.4.5",
"eslint": "9.10.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-module-utils": "2.11.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-prettier": "5.1.3",
"jest": "29.7.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"rollup": "4.21.2",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-polyfill-node": "0.13.0",
"sort-package-json": "2.10.1",
"ts-jest": "29.2.5",
"tslib": "2.7.0",
"typescript": "5.6.2"
},
"engines": {
"node": ">=10"
}
}