-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
38 lines (38 loc) · 862 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
37
38
{
"name": "deploy-heroku",
"version": "3.0.0",
"description": "A simple action to deploy container to Heroku Container Registry",
"main": "index.js",
"scripts": {},
"husky": {
"hooks": {
"pre-commit": "npx @vercel/ncc build index.ts && git add ."
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jctaveras/heroku-deploy.git"
},
"keywords": [
"github",
"actions",
"heroku",
"deploy",
"container",
"docker"
],
"author": "Jean Carlos Tavera",
"license": "ISC",
"bugs": {
"url": "https://github.com/jctaveras/heroku-deploy/issues"
},
"homepage": "https://github.com/jctaveras/heroku-deploy#readme",
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/github": "^2.1.1"
},
"devDependencies": {
"husky": "^4.2.5",
"typescript": "^4.6.2"
}
}