UNPKG

2.16 kBJSONView Raw
1{
2 "name": "unifile",
3 "description": "Library to provide a unified API, mirroring Fs, for cloud storage services. ",
4 "version": "2.0.0",
5 "author": "Jean-Baptiste Richardet <jeanbaptiste.richardet@gmail.com> (https://github.com/JbIPS)",
6 "contributors": [
7 "Alex Hoyau <a.hoyau@silexlabs.org> (https://lexoyo.me/)"
8 ],
9 "dependencies": {
10 "bluebird": "^3.0.5",
11 "ftp": "^0.3.10",
12 "mime": "^2.0.3",
13 "request": "^2.72.0",
14 "sftp-promises": "^1.4.1",
15 "unifile-common-tools": "^1.0.0",
16 "webfinger.js": "^2.4.2"
17 },
18 "devDependencies": {
19 "chai": "^4.0.2",
20 "chai-as-promised": "^7.0.0",
21 "codacy-coverage": "^2.0.0",
22 "docdash": "^0.4.0",
23 "eslint": "^4.1.1",
24 "ftp-srv": "^2.7.2",
25 "jsdoc": "^3.5.5",
26 "mocha": "^4.0.1",
27 "nyc": "^11.2.1",
28 "pem": "^1.9.7",
29 "ssh2": "^0.5.5"
30 },
31 "repository": {
32 "type": "git",
33 "url": "https://github.com/silexlabs/unifile.git"
34 },
35 "keywords": [
36 "cloud",
37 "dropbox",
38 "github",
39 "storage",
40 "webdav",
41 "remotestorage",
42 "ftp"
43 ],
44 "main": "lib/index.js",
45 "files": [
46 "lib/"
47 ],
48 "directories": {
49 "lib": "lib",
50 "test": "test",
51 "example": "samples"
52 },
53 "license": "MIT",
54 "engines": {
55 "node": "^6.2.2",
56 "npm": "^3.9.5"
57 },
58 "scripts": {
59 "test": "mocha test/*.js -R nyan",
60 "watch": "mocha test/*.js -R min --watch",
61 "lint": "eslint test/*.js lib/*.js",
62 "cover": "nyc --reporter=lcov npm test",
63 "cover:check": "nyc check-coverage",
64 "cover:export": "cat ./coverage/lcov.info | codacy-coverage",
65 "gen:docs": "jsdoc -R README.md -c jsdoc.json",
66 "preversion": "npm test && npm run lint && npm run gen:docs",
67 "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",
68 "postversion": "git push --follow-tags"
69 },
70 "bugs": {
71 "url": "https://github.com/silexlabs/unifile/issues"
72 },
73 "homepage": "http://projects.silexlabs.org/unifile/"
74}