forked from Slynova-Org/flydrive
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.19 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@slynova/flydrive",
"version": "1.0.0-0",
"description": "Flexible and Fluent way to manage storage in Node.js.",
"main": "./build/index.js",
"license": "MIT",
"keywords": [
"storage",
"filesystem",
"file",
"aws",
"s3",
"promise",
"async",
"spaces",
"google",
"cloud"
],
"author": "Romain Lanz <[email protected]>",
"contributors": [
"Harminder Virk <[email protected]>",
"Michaël Zasso <[email protected]>",
"Krzysztof Chrapka <krzysztof.chrapka gamfi pl>"
],
"files": [
"build"
],
"scripts": {
"build": "npm run clean && npm run tsc",
"clean": "rimraf build",
"lint": "eslint --ext js,ts src test jest.config.js",
"prepublishOnly": "npm run build",
"test": "npm run test:local",
"test:local": "jest",
"tsc": "tsc"
},
"engines": {
"node": ">10.10.0"
},
"dependencies": {
"fs-extra": "^8.1.0",
"node-exceptions": "^4.0.1"
},
"devDependencies": {
"@azure/storage-blob": "^12.0.1",
"@google-cloud/storage": "^4.0.0",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.0.23",
"@types/node": "^10.10.0",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"aws-sdk": "^2.553.0",
"dotenv": "^8.2.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"jest": "^24.9.0",
"node-fetch": "^2.6.0",
"np": "^5.1.1",
"prettier": "1.18.2",
"random-bytes-readable-stream": "^2.1.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.2.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4",
"uuid": "^3.3.3",
"yargs": "^15.0.2"
},
"repository": "[email protected]:Slynova-Org/flydrive.git",
"bugs": {
"url": "https://github.com/Slynova-Org/flydrive/issues"
},
"eslintConfig": {
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier",
"prettier/@typescript-eslint"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
]
},
"prettier": {
"arrowParens": "always",
"quoteProps": "consistent",
"semi": true,
"useTabs": true,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 120
}
}