-
-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
132 lines (132 loc) · 3.88 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "webdav",
"version": "5.7.1",
"description": "WebDAV client for NodeJS",
"exports": {
".": {
"browser": "./dist/web/index.js",
"react-native": "./dist/react-native/index.js",
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.js"
},
"./react-native": "./dist/react-native/index.js",
"./web": "./dist/web/index.js",
"./dist/*": "./dist/*"
},
"react-native": "./dist/react-native/index.js",
"type": "module",
"types": "./dist/node/index.d.ts",
"scripts": {
"build": "npm run clean && run-p build:node build:web",
"build:node": "tsc",
"build:web": "webpack --mode production --config webpack.config.cjs",
"clean": "rimraf dist web",
"dev": "nodemon -e ts,js --exec 'npm run build' --ignore 'dist/' --ignore 'web/'",
"format": "prettier --write '{source,test}/**/*.{js,ts}'",
"prepublishOnly": "npm run build",
"test": "run-s test:node test:web test:format",
"test:format": "prettier-check '{source,test}/**/*.{js,ts}'",
"test:node": "c8 --check-coverage --lines 89 --functions 91 --branches 77 --statements 89 mocha --config .mocharc.json",
"test:node:watch": "nodemon --exec 'npm run test:node' --ignore 'dist/'",
"test:web": "concurrently --success 'first' --kill-others 'npm run test:web:karma' 'npm run test:web:server'",
"test:web:karma": "karma start test/karma.conf.cjs",
"test:web:server": "node --loader ts-node/esm ./test/server.web.ts"
},
"files": [
"dist/",
"test/server/",
"*.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/perry-mitchell/webdav-client.git"
},
"keywords": [
"webdav",
"client",
"remote",
"sync"
],
"engines": {
"node": ">=16"
},
"lint-staged": {
"{source,test}/**/*.{js,ts}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"author": "Perry Mitchell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/perry-mitchell/webdav-client/issues"
},
"homepage": "https://github.com/perry-mitchell/webdav-client#readme",
"dependencies": {
"@buttercup/fetch": "^0.2.1",
"base-64": "^1.0.0",
"byte-length": "^1.0.2",
"entities": "^5.0.0",
"fast-xml-parser": "^4.4.1",
"hot-patcher": "^2.0.1",
"layerr": "^3.0.0",
"md5": "^2.3.0",
"minimatch": "^9.0.5",
"nested-property": "^4.0.0",
"node-fetch": "^3.3.2",
"path-posix": "^1.0.0",
"url-join": "^5.0.0",
"url-parse": "^1.5.10"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@types/chai": "^4.3.17",
"@types/he": "^1.2.3",
"@types/mocha": "^10.0.7",
"@types/node": "^22.1.0",
"@types/sinon": "^17.0.3",
"@types/url-parse": "^1.4.11",
"babel-loader": "^9.1.3",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"buffer-equals": "^2.0.0",
"c8": "^10.1.2",
"chai": "^4.5.0",
"concurrently": "^8.2.2",
"copy-dir": "^1.3.0",
"directory-exists": "^2.0.1",
"exists-file": "^3.0.2",
"husky": "^4.3.8",
"karma": "^6.4.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-sinon": "^1.0.5",
"karma-spec-reporter": "^0.0.36",
"karma-webpack": "^5.0.1",
"lint-staged": "^15.2.7",
"mkdirp": "^3.0.1",
"mocha": "^10.7.0",
"nock": "^13.5.4",
"nodemon": "^3.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-check": "^2.0.0",
"resolve-typescript-plugin": "^2.0.1",
"rimraf": "^6.0.1",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"wait-on": "^7.2.0",
"webdav-server": "^2.6.2",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
}
}