-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1012 Bytes
/
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
{
"name": "gcs-file-upload",
"version": "1.1.1",
"description": "Upload files to GCS and firebase storage.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn ./test/index.ts",
"lint": "eslint --fix index.ts"
},
"keywords": [
"Google-Cloud-Storage",
"firebase-storage",
"file-upload"
],
"author": "Olamilekan Odukoya",
"license": "ISC",
"dependencies": {
"@google-cloud/storage": "^4.1.0"
},
"devDependencies": {
"@types/node": "^12.12.14",
"@types/webgl-ext": "0.0.30",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.6.4"
},
"repository": {
"type": "git",
"url": "https://github.com/olamilekan000/gcs-file-upload.git"
}
}