-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 787 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 787 Bytes
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
{
"name": "kojo-deploy",
"version": "1.0.13",
"description": "Simplified GCP deployment CLI utility",
"main": "index.js",
"bin": {
"kojo-deploy": "./scripts/kojo-engine.js"
},
"scripts": {
"kojo-deploy": "node ./scripts/kojo-engine.js",
"dev": "node index.js",
"start": "node index.js",
"release": "npm version patch && npm publish --access public",
"postinstall": "node ./scripts/postinstall.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"gcp",
"cloud-run",
"deploy",
"cli"
],
"author": "Shadrack Inusah",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"execa": "^8.0.1",
"express": "^5.2.1",
"inquirer": "^9.2.12",
"ora": "^7.0.1"
},
"type": "module"
}