forked from Slynova-Org/flydrive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.48 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": "@slynova/flydrive",
"version": "0.3.1",
"description": "Flexible and Fluent way to manage storage in Node.js.",
"keywords": [
"storage",
"filesystem",
"file",
"aws",
"s3",
"ftp"
],
"author": "Romain Lanz <[email protected]>",
"contributors": [
"Harminder Virk <[email protected]>",
"Xavier Stouder <[email protected]>"
],
"license": "MIT",
"main": "src/StorageManager.js",
"scripts": {
"lint": "eslint src",
"pretest": "npm run lint",
"posttest": "npm run coverage",
"test:local": "FORCE_COLOR=true node bin/index.js --local",
"test": "./node_modules/.bin/nyc npm run test:local",
"test:win": "set FORCE_COLOR=true && node bin/index.js --win",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/Slynova-Org/node-flydrive"
},
"bugs": {
"url": "https://github.com/Slynova-Org/node-flydrive/issues"
},
"dependencies": {
"create-output-stream": "0.0.1",
"fs-extra": "^8.0.0",
"node-exceptions": "^3.0.0",
"resetable": "^1.0.2"
},
"devDependencies": {
"@slynova/eslint-config": "^1.0.5",
"aws-sdk": "^2.240.1",
"coveralls": "^3.0.1",
"dotenv": "^6.0.0",
"eslint": "^5.0.0",
"eslint-plugin-import": "^2.11.0",
"japa": "^1.0.5",
"japa-cli": "^1.0.1",
"jsftp": "^2.1.3",
"nyc": "^14.0.0",
"semver": "^5.5.0"
},
"nyc": {
"include": [
"src"
]
}
}