-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
34 lines (34 loc) · 969 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
{
"name": "heroku-docker-deploy",
"version": "1.3.2",
"license": "MIT",
"author": "Kamil Klyta",
"description": "Build, Push and Release a Docker container to Heroku.",
"main": "src/main.ts",
"homepage": "https://github.com/gonuit/heroku-docker-deploy",
"repository": {
"type": "git",
"url": "git+https://github.com/gonuit/heroku-docker-deploy.git"
},
"scripts": {
"echo": "echo COMMAND",
"build": "npx @zeit/ncc build src/main.ts",
"lint": "eslint \"**/*.ts\"",
"fix": "eslint \"**/*.ts\" --fix"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^2.1.1",
"assert": "^2.0.0"
},
"devDependencies": {
"@types/eslint": "^6.1.1",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"typescript": "^4.0.2"
}
}