{
  "name": "react-native-bitedata-analytics",
  "version": "0.1.57",
  "description": "The hassle-free way to add bitedata analytics to your React-Native app.",
  "license": "MIT",
  "main": "build/cjs/index.js",
  "module": "build/esm/index.js",
  "types": "build/esm/index.d.ts",
  "files": [
    "android",
    "ios",
    "build",
    "src",
    "RNAnalytics.podspec"
  ],
  "scripts": {
    "build:clean": "rimraf build",
    "build:ts": "run-p build:ts:*",
    "build:ts:cjs": "tsc --target es5 --outDir build/cjs --module commonjs",
    "build:ts:esm": "tsc --target es5 --outDir build/esm --module esnext",
    "build:pkg": "ts-node -T src/make-pkg.ts > build/package.json",
    "build": "run-s build:{clean,ts,pkg}",
    "docs:clean": "rimraf docs",
    "docs:gen": "typedoc --out docs --module esnext --ignoreCompilerErrors --excludePrivate --excludeExternals --theme markdown --mode file --entrypoint Analytics --gitRevision master",
    "docs": "run-s docs:{clean,gen}",
    "lint": "tslint -p .",
    "test": "jest",
    "deploy": "./deploy.sh",
    "release": "standard-version --infile ../../CHANGELOG.md",
    "prepublish": "yarn build"
  },
  "devDependencies": {
    "@types/jest": "^23.3.1",
    "babel-core": "^6.26.3",
    "babel-jest": "^23.4.2",
    "jest": "^23.4.2",
    "jest-mock-console": "^0.4.0",
    "standard-version": "^4.4.0",
    "ts-jest": "^23.1.3",
    "ts-node": "^7.0.1",
    "tslint": "^5.11.0",
    "tslint-config-prettier": "^1.14.0",
    "tslint-plugin-prettier": "^2.0.0",
    "typedoc": "^0.12.0",
    "typedoc-plugin-markdown": "^1.1.13",
    "typescript": "^3.0.1"
  },
  "jest": {
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ],
    "rootDir": "src",
    "collectCoverage": true,
    "coverageDirectory": "../build/coverage",
    "testEnvironment": "node"
  }
}
