package.json 837 B

12345678910111213141516171819202122232425262728293031323334
  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. "clv": "./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. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://git.bodicsek.host/bodicsek/canary-log-viewer.git"
  18. },
  19. "author": "",
  20. "license": "MIT",
  21. "devDependencies": {
  22. "@types/node": "^14.14.41",
  23. "@types/yargs": "^16.0.1",
  24. "@typescript-eslint/eslint-plugin": "^4.22.0",
  25. "@typescript-eslint/parser": "^4.22.0",
  26. "eslint": "^7.25.0",
  27. "ts-node": "^9.1.1",
  28. "typescript": "^4.2.4"
  29. },
  30. "dependencies": {
  31. "rxjs": "^6.6.7",
  32. "yargs": "^16.2.0"
  33. }
  34. }