forked from perry-mitchell/webdav-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.6 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": "webdav",
"version": "2.5.0",
"description": "WebDAV client for NodeJS",
"main": "dist/index.js",
"scripts": {
"build": "babel --out-dir dist source",
"docs": "jsdoc2md 'source/**/*.js' > API.md",
"format": "prettier --write '{source,test}/**/*.js'",
"precommit": "lint-staged",
"prepare": "npm run build",
"test": "run-s test:node test:web test:format",
"test:format": "prettier-check '{source,test}/**/*.js'",
"test:node": "npm run build && mocha -r test/specs/index.js test/specs/**/*.spec.js",
"test:node:watch": "nodemon --exec 'npm run test:node' --ignore 'dist/'",
"test:web": "npm run test:web:pack && concurrently --success 'first' --kill-others 'npm run test:web:karma' 'npm run test:web:server'",
"test:web:karma": "sleep 2 && karma start test/web/karma.conf.js",
"test:web:pack": "webpack --mode development --config test/web/webpack.config.js",
"test:web:server": "node test/web/server.js"
},
"files": [
"dist/",
"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": [
"prettier --write",
"git add"
]
},
"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.18.0",
"base-64": "^0.1.0",
"hot-patcher": "^0.5.0",
"merge": "^1.2.1",
"path-posix": "^1.0.0",
"url-join": "^4.0.0",
"url-parse": "^1.4.4",
"xml2js": "^0.4.19"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"buffer-equals": "^2.0.0",
"chai": "^4.2.0",
"concurrently": "^4.1.0",
"copy-dir": "^0.4.0",
"directory-exists": "^2.0.1",
"exists-file": "^3.0.2",
"husky": "^1.3.1",
"jsdoc-to-markdown": "^4.0.1",
"karma": "^3.1.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"lint-staged": "^8.1.0",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"nock": "^10.0.6",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.1",
"prettier-check": "^2.0.0",
"rimraf": "^2.6.3",
"sinon": "^7.2.3",
"wait-on": "^3.2.0",
"webdav-server": "^2.4.5",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
}
}