{
  "name": "reflective-bind",
  "version": "0.2.4",
  "description": "Eliminate wasteful re-rendering in React components caused by inline functions",
  "author": "Dounan Shi",
  "license": "MIT",
  "keywords": [
    "arrow function",
    "babel",
    "bind",
    "hoist",
    "inline function",
    "optimize",
    "pure",
    "PureComponent",
    "react",
    "shouldComponentUpdate"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/flexport/reflective-bind.git"
  },
  "devDependencies": {
    "@babel/cli": "^7.0.0",
    "@babel/core": "^7.0.0",
    "@babel/plugin-proposal-class-properties": "^7.0.0",
    "@babel/plugin-proposal-decorators": "^7.0.0",
    "@babel/plugin-proposal-export-namespace-from": "^7.0.0",
    "@babel/plugin-proposal-function-sent": "^7.0.0",
    "@babel/plugin-proposal-json-strings": "^7.0.0",
    "@babel/plugin-proposal-numeric-separator": "^7.0.0",
    "@babel/plugin-proposal-throw-expressions": "^7.0.0",
    "@babel/plugin-syntax-dynamic-import": "^7.0.0",
    "@babel/plugin-syntax-import-meta": "^7.0.0",
    "@babel/plugin-transform-flow-comments": "^7.0.0",
    "@babel/preset-env": "^7.0.0",
    "@babel/preset-flow": "^7.0.0",
    "@babel/preset-react": "^7.0.0",
    "babel-core": "^7.0.0-bridge.0",
    "babel-eslint": "8.0.0",
    "babel-jest": "^23.4.2",
    "babel-plugin-lodash": "3.3.4",
    "eslint": "4.7.1",
    "eslint-plugin-flowtype": "2.35.1",
    "eslint-plugin-jest": "21.1.0",
    "flow-bin": "0.54.1",
    "jest": "^23.5.0",
    "jest-environment-node-debug": "2.0.0",
    "react": "16.0.0",
    "rimraf": "2.6.2"
  },
  "scripts": {
    "build": "babel src/ -d dist/",
    "clean": "rimraf dist",
    "lint": "eslint src tests",
    "prepublishOnly": "yarn run flow && yarn run lint && yarn run test && yarn run clean && yarn run build",
    "test": "jest",
    "test:debug": "node --inspect-brk ./node_modules/.bin/jest -i --env jest-environment-node-debug"
  },
  "jest": {
    "coverageDirectory": "./coverage/",
    "collectCoverage": true,
    "testMatch": [
      "<rootDir>/tests/**/*.js"
    ]
  },
  "main": "./dist/index.js",
  "files": [
    "babel",
    "dist"
  ],
  "dependencies": {
    "@babel/helper-module-imports": "^7.0.0"
  }
}
