|
|
@@ -4,13 +4,14 @@
|
|
|
"description": "Structured log viewer for canary logs.",
|
|
|
"main": "index.js",
|
|
|
"bin": {
|
|
|
- "clv": "./bin/cli.js"
|
|
|
+ "canary-log-viewer": "./bin/cli.js"
|
|
|
},
|
|
|
"scripts": {
|
|
|
"start": "ts-node canary-log-viewer.ts",
|
|
|
"build": "tsc",
|
|
|
"lint": "eslint . --ext .ts",
|
|
|
- "test": "echo \"Error: no test specified\" && exit 1"
|
|
|
+ "test": "echo \"Error: no test specified\" && exit 1",
|
|
|
+ "prepublishOnly": "npm run build && npm run lint"
|
|
|
},
|
|
|
"repository": {
|
|
|
"type": "git",
|
|
|
@@ -30,5 +31,8 @@
|
|
|
"dependencies": {
|
|
|
"rxjs": "^6.6.7",
|
|
|
"yargs": "^16.2.0"
|
|
|
+ },
|
|
|
+ "publishConfig": {
|
|
|
+ "registry": "https://npm.bodicsek.host"
|
|
|
}
|
|
|
}
|