-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.65 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
{
"name": "preview-cloudrun",
"version": "1.0.0",
"description": "A GitHub Action for deploying preview revisions per a PR to Google Cloud Run. This action deploys a new revision with zero traffic and creates a comment which shows the revision URLs to the PR.",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist/ && ncc build -m src/main.ts -o dist",
"lint": "eslint src/ --ext .ts,.tsx",
"format": "eslint src/ --ext .ts,.tsx --fix",
"test": "mocha -r ts-node/register -t 150s 'src/*.test.ts' --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knanao/preview-cloudrun.git"
},
"keywords": [],
"author": "knanao",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/knanao/preview-cloudrun/issues"
},
"homepage": "https://github.com/knanao/preview-cloudrun#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@google-github-actions/actions-utils": "^0.4.7",
"@google-github-actions/setup-cloud-sdk": "^1.1.1",
"@kubernetes/client-node": "^0.18.1",
"@octokit/graphql": "^5.0.5",
"@octokit/graphql-schema": "github:octokit/graphql-schema",
"@octokit/webhooks-definitions": "^3.67.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@vercel/ncc": "^0.36.1",
"chai": "^4.3.7",
"eslint": "^8.37.0",
"jest": "^29.5.0",
"mocha": "^10.2.0",
"npm": "^9.6.2",
"ts-jest": "^29.0.5"
}
}