{
  "name": "airbnb-prop-types",
  "version": "2.16.0",
  "description": "Custom React PropType validators that we use at Airbnb.",
  "main": "index.js",
  "dependencies": {
    "array.prototype.find": "^2.1.1",
    "function.prototype.name": "^1.1.2",
    "is-regex": "^1.1.0",
    "object-is": "^1.1.2",
    "object.assign": "^4.1.0",
    "object.entries": "^1.1.2",
    "prop-types": "^15.7.2",
    "prop-types-exact": "^1.2.0",
    "react-is": "^16.13.1"
  },
  "devDependencies": {
    "@babel/cli": "^7.10.3",
    "@babel/core": "^7.10.3",
    "@babel/register": "^7.10.3",
    "airbnb-browser-shims": "^3.3.0",
    "babel-plugin-istanbul": "^5.2.0",
    "babel-plugin-transform-replace-object-assign": "^2.0.0",
    "babel-preset-airbnb": "^3.3.2",
    "chai": "^4.2.0",
    "enzyme": "^3.11.0",
    "enzyme-adapter-react-helper": "^1.3.8",
    "eslint": "^7.3.1",
    "eslint-config-airbnb": "^18.2.0",
    "eslint-plugin-import": "^2.22.0",
    "eslint-plugin-jsx-a11y": "^6.3.1",
    "eslint-plugin-react": "^7.20.2",
    "mocha": "^3.5.3",
    "mock-env": "^0.2.0",
    "nyc": "^10.3.2",
    "object-inspect": "^1.8.0",
    "object.values": "^1.1.1",
    "react": "^0.14 || ^15.0.0 || ^16.0.0-alpha",
    "reflect.ownkeys": "^1.0.1",
    "rimraf": "^2.7.1",
    "safe-publish-latest": "^1.1.4"
  },
  "peerDependencies": {
    "react": "^0.14 || ^15.0.0 || ^16.0.0-alpha"
  },
  "scripts": {
    "pretest": "npm run lint",
    "pretest:prepare": "npm run build",
    "test:prepare": "npm run react && npm run build:test",
    "test": "npm run build:test && npm run test:only",
    "test:only": "npm run mocha build-test",
    "test:all": "npm run test:only && npm run react:14 && npm run test:only && npm run react:15 && npm run test:only",
    "lint": "eslint --ext js,jsx src test",
    "prepublish": "npm run build && safe-publish-latest",
    "clean": "rimraf build",
    "prebuild": "npm run clean",
    "build": "babel src --out-dir build --source-maps",
    "postbuild": "npm run build:index",
    "prebuild:index": "cp index.js .index.js",
    "build:index": "babel index.js --out-file index.js --no-babelrc --source-maps",
    "postbuild:index": "mv .index.js index.js",
    "prebuild:test": "rimraf build-test",
    "build:test": "babel test --out-dir build-test --source-maps",
    "cover:clean": "rimraf coverage",
    "cover:run": "nyc --show-process-tree npm run --silent mocha build-test -- --reporter=dot",
    "precoverage": "NODE_ENV=test npm run build",
    "coverage": "npm run --quiet cover:clean && npm run --silent cover:run",
    "mocha": "mocha --recursive build-test/helpers/_failTestsOnErrors",
    "react": "enzyme-adapter-react-install 16"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/airbnb/prop-types.git"
  },
  "keywords": [
    "react",
    "propTypes",
    "airbnb",
    "prop",
    "types",
    "validator",
    "validation"
  ],
  "author": "Jordan Harband <ljharb@gmail.com>",
  "funding": {
    "url": "https://github.com/sponsors/ljharb"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/airbnb/prop-types/issues"
  },
  "homepage": "https://github.com/airbnb/prop-types#readme",
  "greenkeeper": {
    "//": "nyc and mocha are ignored because they requires node 4+, and we support older than that",
    "ignore": [
      "nyc",
      "mocha"
    ]
  }
}
