Adds repository and bugs fields to package.json

This commit is contained in:
Nemo 2018-06-04 14:35:26 +05:30
parent 1fe55b5b47
commit 2af25b94fe
2 changed files with 10 additions and 7 deletions

View File

@ -10,6 +10,6 @@ RUN npm install
COPY index.js server.js /app/
ENTRYPOINT ["/usr/bin/node", "server"]
ENTRYPOINT ["/usr/local/bin/node", "server.js"]
EXPOSE 3000

View File

@ -6,13 +6,16 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"actcorp",
"balance",
"flexibyte"
],
"keywords": ["actcorp", "balance", "flexibyte"],
"repository": {
"type": "git",
"url": "git+ssh://git@git.captnemo.in/nemo/prometheus-act-exporter.git"
},
"bugs": {
"url": "https://git.captnemo.in/nemo/prometheus-act-exporter/issues"
},
"author": "Nemo <npm@captnemo.in>",
"license": "MIT",
"license": "WTFPL",
"dependencies": {
"containerized": "^1.0.2",
"prom-client": "^11.0.0",