{
  "name": "react-native-netwatch",
  "version": "1.3.16",
  "description": "Network traffic logger for React Native",
  "homepage": "https://github.com/odemolliens/react-native-netwatch",
  "main": "src/index.tsx",
  "types": "lib/index.d.ts",
  "author": "Imran Mentese <imran.mentese@gmail.com>",
  "license": "MIT",
  "keywords": [
    "react-native",
    "mobile",
    "ios",
    "android",
    "logging",
    "network",
    "traffic"
  ],
  "scripts": {
    "compile": "rm -rf lib && tsc -p .",
    "prettier:check": "prettier --config ./.prettierrc --check \"src/*.tsx\" ",
    "prettier:fix": "prettier --config ./.prettierrc --write --check \"src/**/*.tsx\" ",
    "lint": "tslint -p tsconfig.json 'src/**/*.tsx' 'src/**/*.ts'",
    "lint:fix": "tslint -p tsconfig.json --fix 'src/**/*.tsx' 'src/**/*.ts'",
    "prepare": "yarn compile",
    "test": "TZ=UTC jest",
    "testu": "TZ=UTC node_modules/.bin/jest --updateSnapshot"
  },
  "dependencies": {
    "@react-native-clipboard/clipboard": "^1.11.0",
    "react-native-json-tree": "^1.3.0",
    "url": "^0.11.0",
    "xlsx": "^0.18.4"
  },
  "devDependencies": {
    "@babel/core": "^7.12.10",
    "@babel/preset-typescript": "^7.12.7",
    "@babel/runtime": "^7.11.2",
    "@react-native-community/eslint-config": "^2.0.0",
    "@react-native-community/netinfo": "4.7.0",
    "@testing-library/react-native": "^7.2.0",
    "@types/enzyme": "^3.10.8",
    "@types/enzyme-adapter-react-16": "^1.0.6",
    "@types/jest": "^26.0.14",
    "@types/react-native": "0.63.46",
    "@types/react-native-share": "^3.3.1",
    "@types/react-native-vector-icons": "^6.4.6",
    "@types/react-test-renderer": "^16.9.3",
    "babel-jest": "^26.6.3",
    "enzyme": "^3.11.0",
    "enzyme-adapter-react-16": "^1.15.6",
    "enzyme-to-json": "^3.6.1",
    "eslint": "^7.9.0",
    "eslint-plugin-simple-import-sort": "^5.0.3",
    "jest": "^26.6.3",
    "metro-react-native-babel-preset": "0.64.0",
    "react": "17.0.1",
    "react-dom": "17.0.1",
    "react-native": "0.64.1",
    "react-native-device-info": "^8.0.2",
    "react-native-fs": "^2.20.0",
    "react-native-launch-arguments": "4.0.1",
    "react-native-paper": "^4.7.1",
    "react-native-share": "^5.1.4",
    "react-native-vector-icons": "^8.0.0",
    "react-test-renderer": "^16.13.1",
    "redux": "^4.0.5",
    "redux-mock-store": "^1.5.4",
    "ts-jest": "^26.4.4",
    "tslint": "^6.1.3",
    "tslint-config-airbnb-base": "^0.3.0",
    "tslint-config-prettier": "^1.18.0",
    "tslint-react": "^5.0.0",
    "typescript": "^4.0.3"
  },
  "peerDependencies": {
    "@react-native-clipboard/clipboard": "*",
    "@react-native-community/netinfo": "*",
    "react": "*",
    "react-native": "*",
    "react-native-device-info": "*",
    "react-native-fs": "*",
    "react-native-launch-arguments": "*",
    "react-native-paper": "*",
    "react-native-share": "*",
    "react-native-vector-icons": "*"
  },
  "jest": {
    "verbose": true,
    "collectCoverage": true,
    "preset": "react-native",
    "setupFiles": [
      "./config/jest.setup.js"
    ],
    "transformIgnorePatterns": [
      "/node_modules/(?!native-base)/"
    ],
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx"
    ],
    "modulePaths": [
      "<rootDir>"
    ],
    "transform": {
      "\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest"
    },
    "testMatch": [
      "**/__tests__/**/*.test.(js|ts|tsx)"
    ],
    "testPathIgnorePatterns": [
      "<rootDir>/node_modules/",
      "<rootDir>/example/"
    ],
    "coverageThreshold": {
      "global": {
        "statements": 80,
        "branches": 80,
        "functions": 80,
        "lines": 80
      }
    },
    "snapshotSerializers": [
      "enzyme-to-json/serializer"
    ]
  }
}
