-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 987 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 987 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
34
35
36
{
"name": "deployment-bumper",
"version": "0.1.0",
"description": "Updates images",
"main": "src/index.js",
"scripts": {
"cleanup": "rm -fr /tmp/dragonraid",
"dev-ubuntu": "npm run cleanup && DOTENV_CONFIG_PATH='./.envUbuntu' node -r dotenv/config src/index.js",
"dev-helmfile": "npm run cleanup && DOTENV_CONFIG_PATH='./.envHelmfile' node -r dotenv/config src/index.js",
"start": "node src/index.js",
"test": "jest .",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/dragonraid/deployment-bumper.git"
},
"author": {
"name": "Lukas Novotny",
"email": "lucass.novotny@gmail.com"
},
"license": "ISC",
"dependencies": {
"axios": "^0.21.4",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"octonode": "^0.10.2",
"simple-git": "^3.3.0"
},
"devDependencies": {
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"jest": "^27.5.1"
}
}