-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
{
"name": "github-actions-invalidate-gcp-cdn",
"version": "1.0.0",
"description": "Github Action: Invalidate CDN cache on Goggle Cloud",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist/ && ncc build -m src/main.ts -o dist/main",
"docs": "./node_modules/.bin/actions-gen-readme",
"lint": "eslint . --ext .ts,.tsx",
"format": "eslint . --ext .ts,.tsx --fix",
"test": "node --require ts-node/register --test-reporter spec --test tests/unit/main.test.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/stefanodotit/github-actions-invalidate-gcp-cdn"
},
"keywords": [
"actions",
"google",
"cloud cdn",
"cdn",
"cache",
"invalidate cdn",
"invalidate cache"
],
"author": "Stefano Tagliabue",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/stefanodotit/github-actions-invalidate-gcp-cdn/issues"
},
"homepage": "https://github.com/stefanodotit/github-actions-invalidate-gcp-cdn#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.1",
"@google-github-actions/actions-utils": "^0.8.2",
"@google-github-actions/setup-cloud-sdk": "^1.1.7"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"googleapis": "^140.0.1",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}