-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
75 lines (75 loc) · 1.88 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
{
"name": "unifile",
"description": "Library to provide a unified API, mirroring Fs, for cloud storage services. ",
"version": "2.0.24",
"author": "Jean-Baptiste Richardet <[email protected]> (https://github.com/JbIPS)",
"contributors": [
"Alex Hoyau <[email protected]> (https://lexoyo.me/)"
],
"dependencies": {
"basic-ftp": "^3.8.6",
"bluebird": "^3.0.5",
"mime": "^2.0.3",
"request": "^2.88.0",
"sftp-promises": "^1.4.1",
"unifile-common-tools": "1.0.3",
"webfinger.js": "^2.4.2"
},
"devDependencies": {
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"coveralls": "^3.0.0",
"cross-env": "^5.1.1",
"docdash": "^0.4.0",
"eslint": "^4.1.1",
"ftp-srv": "^4.2.0",
"jsdoc": "^3.6.3",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"pem": "^1.14.2",
"ssh2": "^0.5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/silexlabs/unifile.git"
},
"keywords": [
"cloud",
"dropbox",
"github",
"storage",
"webdav",
"remotestorage",
"ftp",
"sftp"
],
"main": "lib/index.js",
"files": [
"lib/"
],
"directories": {
"lib": "lib",
"test": "test",
"example": "samples"
},
"license": "MIT",
"engines": {
"node": ">=10.16.3 <=12.22.10"
},
"scripts": {
"release": "",
"test": "mocha test/*.js",
"build": "echo NO BUILD STEP",
"test:cli": "mocha test/*.js -R nyan",
"watch": "npm run test:min -- --watch",
"lint": "eslint test/*.js lib/*.js",
"cover": "nyc --reporter=lcov npm run test:min",
"cover:check": "nyc check-coverage",
"cover:export": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"gen:docs": "jsdoc -R README.md -c jsdoc.json"
},
"bugs": {
"url": "https://github.com/silexlabs/unifile/issues"
},
"homepage": "http://projects.silexlabs.org/unifile/"
}