Add NodeJS and NPM requirements

Signed-off-by: Steven Kriegler <sk.bunsenbrenner@gmail.com>
This commit is contained in:
justusbunsi 2022-05-27 15:35:55 +02:00
parent ce13a040b8
commit 0cc1cdc6c8
No known key found for this signature in database
GPG Key ID: 82B29BF2507F9F8B
3 changed files with 11 additions and 0 deletions

2
.npmrc Normal file
View File

@ -0,0 +1,2 @@
# .npmrc
engine-strict=true

4
package-lock.json generated
View File

@ -8,6 +8,10 @@
"license": "MIT",
"dependencies": {
"readme-generator-for-helm": "^1.3.1"
},
"engines": {
"node": ">=12.21.0",
"npm": ">=8.0.0"
}
},
"node_modules/balanced-match": {

View File

@ -14,6 +14,11 @@
"pull request",
"bot"
],
"engineStrict": true,
"engines": {
"node": ">=12.21.0",
"npm": ">=8.0.0"
},
"scripts": {
"helm-params": "cd node_modules/readme-generator-for-helm && node bin/index.js --config ./../../helm/readme-generator-config.json --readme ./../../helm/README.md --values ./../../helm/values.yaml"
},