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