-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 844 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
{
"name": "helm-bump-chart-version",
"version": "1.0.0",
"description": "Github Action to bump the chart version #",
"main": "index.js",
"scripts": {
"build": "tsc && ncc build lib/main.js",
"dev": "nodemon src/main.ts",
"format": "prettier --write **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KBelbina/helm-bump-chart-version.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/KBelbina/helm-bump-chart-version/issues"
},
"homepage": "https://github.com/KBelbina/helm-bump-chart-version#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.27.0",
"prettier": "^2.2.1",
"typescript": "^4.1.3",
"ts-node": "^9.0.0"
}
}