package.json 976 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "canary-log-viewer",
  3. "version": "1.0.0",
  4. "description": "Structured log viewer for canary logs.",
  5. "main": "index.js",
  6. "bin": {
  7. "canary-log-viewer": "./bin/cli.js"
  8. },
  9. "scripts": {
  10. "start": "ts-node canary-log-viewer.ts",
  11. "build": "tsc",
  12. "lint": "eslint . --ext .ts",
  13. "test": "echo \"Error: no test specified\" && exit 1",
  14. "prepublishOnly": "npm run build && npm run lint"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "https://git.bodicsek.host/bodicsek/canary-log-viewer.git"
  19. },
  20. "author": "",
  21. "license": "MIT",
  22. "devDependencies": {
  23. "@types/node": "^14.14.41",
  24. "@types/yargs": "^16.0.1",
  25. "@typescript-eslint/eslint-plugin": "^4.22.0",
  26. "@typescript-eslint/parser": "^4.22.0",
  27. "eslint": "^7.25.0",
  28. "ts-node": "^9.1.1",
  29. "typescript": "^4.2.4"
  30. },
  31. "dependencies": {
  32. "rxjs": "^6.6.7",
  33. "yargs": "^16.2.0"
  34. },
  35. "publishConfig": {
  36. "registry": "https://npm.bodicsek.host"
  37. }
  38. }