-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
71 lines (71 loc) · 1.86 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": "@nextcloud/cdav-library",
"version": "1.5.2",
"description": "CalDAV and CardDAV client library for Nextcloud",
"type": "module",
"main": "dist/index.cjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"README.md",
"LICENSE",
"dist"
],
"scripts": {
"build": "vite build --mode=production",
"dev": "vite build --mode=development",
"watch": "vite build --mode=development --watch",
"test": "karma start karma.conf.cjs",
"test:watch": "karma start --auto-watch=true --single-run=false karma.conf.cjs",
"lint": "eslint --ext .js src",
"lint:fix": "eslint --ext .js src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud/cdav-library.git"
},
"keywords": [
"caldav",
"carddav",
"nextcloud",
"rfc4791",
"rfc6352"
],
"author": "Nextcloud GmbH and Nextcloud contributors",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/nextcloud/cdav-library/issues"
},
"homepage": "https://github.com/nextcloud/cdav-library#readme",
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@nextcloud/babel-config": "^1.2.0",
"@nextcloud/browserslist-config": "^3.0.0",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/vite-config": "^2.0.1",
"babel-loader": "^9.1.0",
"istanbul": "^0.4.5",
"jasmine": "^5.0.0",
"karma": "^6.3.9",
"karma-coverage": "^2.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^5.0.0",
"vite": "^5.2.13",
"webpack": "^5.65.0",
"webpack-cli": "^5.0.0",
"webpack-merge": "^5.8.0"
}
}