forked from google-github-actions/deploy-appengine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 KB
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
53
54
55
{
"name": "deploy-appengine",
"version": "0.4.0",
"description": "Github Action: Deploy to Google App Engine",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write **.ts",
"test": "mocha -r ts-node/register -t 150s 'tests/deploy-appengine.test.ts' 'setupGcloudSDK/tests/*.test.ts' --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/google-github-actions/deploy-appengine"
},
"keywords": [
"actions",
"google cloud",
"app engine",
"deploy",
"app"
],
"author": "Google LLC",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.5.0",
"@actions/exec": "^1.0.4",
"@actions/github": "^5.0.0",
"@actions/tool-cache": "^1.3.1",
"@lifeomic/attempt": "^3.0.0",
"@types/js-base64": "^3.0.0",
"@types/tmp": "^0.2.1",
"child_process": "^1.0.2",
"tmp": "^0.2.0",
"typed-rest-client": "^1.8.6"
},
"devDependencies": {
"@types/chai": "^4.2.x",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.4",
"@types/sinon": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.0",
"@zeit/ncc": "^0.22.0",
"chai": "^4.2.x",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.x",
"mocha": "^9.1.1",
"prettier": "^2.4.1",
"sinon": "^11.1.2",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
}
}