-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "gdrive-upload-action",
"version": "1.0.0",
"description": "Github action for uploading files to Google Drive using a service account credential to authenticate",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"release": "ncc build src/index.ts && git add -f dist/",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint **/*.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"github",
"action",
"google",
"drive",
"upload"
],
"author": "Isaac Oluwatemilorun <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/glob": "^0.4.0",
"@actions/io": "^1.1.3",
"googleapis": "^134.0.0"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@typescript-eslint/parser": "^7.4.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-plugin-github": "^4.10.2",
"glob": "^10.3.10",
"prettier": "^3.2.5",
"typescript": "^5.4.3"
}
}