-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.91 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
{
"name": "any-cloud-storage",
"version": "1.0.3",
"description": "A common interface for file storage for AWS, GCP, Firebase, Supabase, git and local file system",
"keywords": [
"cloud",
"storage",
"AWS",
"GCP",
"git",
"Firebase",
"Supabase"
],
"author": {
"name": "Nicholas Albion",
"email": "[email protected]"
},
"license": "MPL-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/nalbion/any-cloud-storage.git"
},
"bugs": {
"url": "https://github.com/nalbion/any-cloud-storage/issues"
},
"homepage": "https://github.com/nalbion/any-cloud-storage#readme",
"scripts": {
"pretest": "npm run build && npm run lint",
"test": "jest",
"test:unit:coverage": "jest --coverage",
"build": "tsc",
"watch": "tsc -watch -p ./",
"prepublishOnly": "npm run build",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --fix --ext ts",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"files": [
"dist/",
"README.md",
"package.json",
"LICENSE.txt"
],
"dependencies": {
"fetch-blob": "^4.0.0",
"fs": "0.0.1-security"
},
"optionalDependencies": {
"@aws-sdk/client-s3": "^3.3.0",
"@azure/storage-blob": "^12.17.0",
"@google-cloud/storage": "^7.7.0",
"@supabase/supabase-js": "^2.39.3",
"firebase": "^10.8.0",
"firebase-admin": "^12.0.0",
"simple-git": "^3.22.0"
},
"devDependencies": {
"@types/firebase": "^3.2.1",
"@types/jest": "^29.5.12",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^36.1.0",
"husky": "^7.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.1.6"
}
}