forked from perry-mitchell/webdav-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.26 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
{
"name": "webdav",
"version": "4.6.0",
"description": "WebDAV client for NodeJS",
"main": "dist/node/index.js",
"scripts": {
"build": "npm run clean && run-p build:node build:web",
"build:node": "tsc",
"build:web": "webpack --mode production --config webpack.config.js && tsc --emitDeclarationOnly --outDir dist/web/",
"clean": "rimraf dist web",
"format": "prettier --write '{source,test}/**/*.{js,ts}'",
"prepare:publish:web": "cp -r ./dist/web ./web && mv ./web/webdav.js ./web/index.js",
"prepublishOnly": "run-s build prepare:publish:web",
"test": "run-s test:node test:web test:format",
"test:format": "prettier-check '{source,test}/**/*.{js,ts}'",
"test:node": "npm run build:node && nyc mocha -r test/index.node.js \"test/node/**/*.spec.js\"",
"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.js",
"test:web:server": "node test/server.web.js"
},
"types": "dist/node/index.d.ts",
"files": [
"dist/",
"web/",
"test/server/",
"*.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/perry-mitchell/webdav-client.git"
},
"keywords": [
"webdav",
"client",
"remote",
"sync"
],
"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": {
"axios": "^0.21.1",
"base-64": "^1.0.0",
"fast-xml-parser": "^3.19.0",
"he": "^1.2.0",
"hot-patcher": "^0.5.0",
"layerr": "^0.1.2",
"md5": "^2.3.0",
"minimatch": "^3.0.4",
"nested-property": "^4.0.0",
"path-posix": "^1.0.0",
"url-join": "^4.0.1",
"url-parse": "^1.5.1"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/node": "^15.3.0",
"@types/url-parse": "^1.4.3",
"babel-loader": "^8.2.2",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"buffer-equals": "^2.0.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"concurrently": "^6.1.0",
"copy-dir": "^1.3.0",
"directory-exists": "^2.0.1",
"exists-file": "^3.0.2",
"husky": "^4.3.8",
"karma": "^6.3.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-sinon": "^1.0.5",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^5.0.0",
"lint-staged": "^10.5.3",
"mkdirp": "^1.0.4",
"mocha": "^8.4.0",
"nock": "^13.0.11",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"prettier-check": "^2.0.0",
"rimraf": "^3.0.2",
"sinon": "^10.0.0",
"typescript": "^4.2.4",
"wait-on": "^5.3.0",
"webdav-server": "^2.6.2",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0"
}
}