forked from silexlabs/unifile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.18 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
{
"name": "unifile",
"description": "Library to provide a unified API for cloud storage services. ",
"version": "1.2.0",
"author": "Jean-Baptiste Richardet <jeanbaptiste.richardet@gmail.com> (https://github.com/JbIPS)",
"contributors": [
"Alex Hoyau <a.hoyau@silexlabs.org> (https://lexoyo.me/)"
],
"dependencies": {
"bluebird": "^3.0.5",
"ftp": "^0.3.10",
"mime": "^1.3.4",
"request": "^2.72.0",
"sftp-promises": "^1.4.1",
"webfinger.js": "^2.4.2",
"xml-stream": "^0.4.5"
},
"devDependencies": {
"chai": "^3.4.1",
"chai-as-promised": "^6.0.0",
"codacy-coverage": "^2.0.0",
"docdash": "^0.4.0",
"eslint": "^3.4.0",
"ftp-srv": "^2.7.2",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.0",
"mocha": "^3.0.2",
"proxyquire": "^1.7.10"
},
"repository": {
"type": "git",
"url": "https://github.com/silexlabs/unifile.git"
},
"keywords": [
"cloud",
"dropbox",
"github",
"storage",
"webdav",
"remotestorage",
"ftp"
],
"main": "lib/index.js",
"files": [
"lib/"
],
"directories": {
"lib": "lib",
"test": "test",
"example": "samples"
},
"license": "MIT",
"engines": {
"node": "^6.2.2",
"npm": "^3.9.5"
},
"scripts": {
"test": "mocha test/ -R nyan",
"lint": "eslint lib test samples --ignore-pattern node_modules",
"lint:fix": "eslint lib test samples --fix --ignore-pattern node_modules",
"watch:test": "mocha -wd test/",
"cover": "istanbul cover _mocha -- -R landing",
"cover:check": "istanbul check-coverage",
"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": "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"
},
"bugs": {
"url": "https://github.com/silexlabs/unifile/issues"
},
"homepage": "http://projects.silexlabs.org/unifile/"
}