forked from tweedegolf/storage-abstraction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.83 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@tweedegolf/storage-abstraction",
"version": "1.4.3",
"description": "Provides an abstraction layer for interacting with a storage; the storage can be local or in the cloud.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/tweedegolf/storage-abstraction/",
"repository": "https://github.com/tweedegolf/storage-abstraction/",
"files": [
"dist/*",
"tests/test.ts"
],
"dependencies": {
"@gideo-llc/backblaze-b2-upload-any": "^0.1.3",
"@google-cloud/storage": "^4.7.0",
"await-to-js": "^2.1.1",
"aws-sdk": "^2.673.0",
"backblaze-b2": "^1.5.0",
"fast-crc32c": "^2.0.0",
"glob": "^7.1.6",
"ramda": "^0.27.0",
"rimraf": "^3.0.2",
"slugify": "^1.3.6",
"uniquid": "^1.1.4"
},
"devDependencies": {
"@types/jasmine": "^3.5.10",
"@types/node": "^12.12.38",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"copy": "^0.3.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jasmine": "^3.5.0",
"markdown-toc": "^1.2.0",
"prettier": "^1.19.1",
"ts-node": "^8.10.1",
"tsc-watch": "^4.0.0",
"typescript": "^3.7.3"
},
"scripts": {
"test-await": "ts-node ./tests/test-await.ts",
"test-all": "npm run test-urls-jasmine && npm run test-local && npm run test-gcs && npm run test-s3 && npm run test-b2",
"test-jasmine": "ts-node ./node_modules/.bin/jasmine ./tests/test.jasmine.ts",
"test-config-b2": "ts-node ./node_modules/.bin/jasmine ./tests/test-config-b2.jasmine.ts",
"test-config-s3": "ts-node ./node_modules/.bin/jasmine ./tests/test-config-s3.jasmine.ts",
"test-config-gcs": "ts-node ./node_modules/.bin/jasmine ./tests/test-config-gcs.jasmine.ts",
"test-config-local": "ts-node ./node_modules/.bin/jasmine ./tests/test-config-local.jasmine.ts",
"test-local": "TYPE='local' ts-node ./node_modules/.bin/jasmine ./tests/test.jasmine.ts",
"test-gcs": "TYPE='gcs' ts-node ./node_modules/.bin/jasmine ./tests/test.jasmine.ts",
"test-s3": "TYPE='s3' ts-node ./node_modules/.bin/jasmine ./tests/test.jasmine.ts",
"test-b2": "TYPE='b2' ts-node ./node_modules/.bin/jasmine ./tests/test.jasmine.ts",
"test": "ts-node ./tests/test.ts",
"test1": "ts-node ./tests/test1.ts",
"test2": "ts-node ./tests/test2.ts",
"test3": "ts-node ./tests/test3.ts",
"test6": "ts-node ./tests/test6.ts",
"ts": "ts-node",
"test-urls": "ts-node ./tests/test-urls.ts",
"tsc": "node_modules/.bin/tsc",
"copy-readme": "copy ./README.md ./publish",
"prepublishOnly": "npm run tsc && npm run toc && npm run copy-readme",
"toc": "markdown-toc -i README.md"
},
"keywords": [
"storage",
"storage abstraction",
"cloud filesystem",
"google cloud",
"amazon s3",
"backblaze b2"
],
"author": "[email protected]",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"prettier": {
"semi": true,
"trailingComma": "es5",
"printWidth": 100
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"browser": true,
"es6": true,
"jasmine": true
},
"globals": {},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"ignorePatterns": [
"node_modules/",
"dist/"
],
"rules": {
"prettier/prettier": "error",
"no-dupe-class-members": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/no-var-requires": "off"
},
"parser": "@typescript-eslint/parser",
"plugins": [
"prettier"
]
}
}