-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 974 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
{
"name": "appengine-remove",
"version": "0.1.0",
"description": "Github Action: Remove versions from Google App Engine",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist/ && ncc build --source-map --no-source-map-register src/main.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write src/*.ts"
},
"keywords": [
"actions",
"google cloud",
"app engine",
"deploy"
],
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.3",
"@actions/tool-cache": "^2.0.1",
"@google-github-actions/setup-cloud-sdk": "^1.0.1"
},
"devDependencies": {
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^9",
"eslint-plugin-prettier": "^5",
"prettier": "^3",
"ts-node": "^10.9.1",
"typescript": "^5"
}
}