package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "logkitty",
  3. "version": "0.7.1",
  4. "description": "Display pretty Android and iOS logs without Android Studio or Console.app, with intuitive Command Line Interface.",
  5. "keywords": [
  6. "logcat",
  7. "cli",
  8. "android",
  9. "android studio",
  10. "ios",
  11. "Console.app",
  12. "console",
  13. "log",
  14. "logs",
  15. "logging"
  16. ],
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/zamotany/logkitty.git"
  20. },
  21. "author": "Paweł Trysła <zamotany.oss@gmail.com>",
  22. "bugs": {
  23. "url": "https://github.com/zamotany/logkitty/issues"
  24. },
  25. "homepage": "https://github.com/zamotany/logkitty",
  26. "license": "MIT",
  27. "bin": "bin/logkitty.js",
  28. "main": "build/api.js",
  29. "files": [
  30. "docs",
  31. "bin",
  32. "build"
  33. ],
  34. "scripts": {
  35. "lint": "eslint --ext '.js,.ts' ./src",
  36. "build:source": "babel src --out-dir build --extensions '.js,.ts' --ignore '**/__tests__/**' --source-maps --delete-dir-on-start",
  37. "build:def": "tsc --emitDeclarationOnly",
  38. "prepare": "yarn build:source && yarn build:def",
  39. "typecheck": "tsc --noEmit",
  40. "test": "jest"
  41. },
  42. "dependencies": {
  43. "ansi-fragments": "^0.2.1",
  44. "dayjs": "^1.8.15",
  45. "yargs": "^15.1.0"
  46. },
  47. "devDependencies": {
  48. "@babel/cli": "^7.4.3",
  49. "@babel/core": "^7.4.3",
  50. "@babel/plugin-proposal-class-properties": "^7.4.0",
  51. "@babel/preset-env": "^7.4.3",
  52. "@babel/preset-typescript": "^7.3.3",
  53. "@callstack/eslint-config": "^9.1.0",
  54. "@types/jest": "^24.0.11",
  55. "@types/node": "^10.12.18",
  56. "@types/yargs": "^15.0.0",
  57. "@typescript-eslint/eslint-plugin": "^2.15.0",
  58. "@typescript-eslint/parser": "^2.15.0",
  59. "babel-jest": "^24.7.1",
  60. "eslint": "^6.8.0",
  61. "jest": "^24.7.1",
  62. "typescript": "^3.7.4"
  63. },
  64. "jest": {
  65. "testRegex": "/__tests__/.*\\.(test|spec)\\.ts?$"
  66. }
  67. }