-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.84 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
{
"name": "unifile-webdav",
"version": "1.1.5",
"description": "WebDav plugin for Unifile",
"main": "lib/unifile-webdav.js",
"author": "Jean-Baptiste Richardet <jeanbaptiste.richardet@gmail.com> (https://github.com/JbIPS)",
"license": "MIT",
"scripts": {
"release": "",
"test": "mocha test/*.js",
"build": "echo NO BUILD STEP",
"watch": "mocha test/*.js -R min --watch",
"lint": "eslint test/*.js lib/*.js",
"cover": "nyc --reporter=lcov --check-coverage --branches 100 npm test",
"cover:export": "cat ./coverage/lcov.info | codacy-coverage",
"gen:docs": "jsdoc -R README.md -c jsdoc.json",
"preversion": "npm test && npm run lint && npm run gen:docs",
"version": "cross-env-shell LIB_VERSION=$(env | grep npm_package_version | grep -v script | cut -d= -f2); sed -e \"s/Unreleased/$LIB_VERSION/\" -e \"s/HEAD/v$LIB_VERSION/\" -e \"/^## \\[$LIB_VERSION/ s/$/ - $(date +%Y-%m-%d)/\" CHANGELOG.md -i && git add docs CHANGELOG.md package.json",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/silexlabs/unifile-webdav.git"
},
"files": [
"package.json",
"README.md",
"LICENSE",
"lib"
],
"bugs": {
"url": "https://github.com/silexlabs/unifile-webdav/issues"
},
"homepage": "https://github.com/silexlabs/unifile-webdav",
"keywords": [
"unifile",
"webdav"
],
"engines": {
"node": ">6.2.2",
"npm": ">3.9.5"
},
"dependencies": {
"bluebird": "^3.7.2",
"request": "^2.88.2",
"unifile-common-tools": "^1.0.4",
"xml-stream": "^0.4.5"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.2",
"docdash": "^1.2.0",
"eslint": "^6.8.0",
"jsdoc": "^3.6.6",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"webdav-server": "^2.6.2"
}
}