{
  "name": "enzyme",
  "version": "2.5.0",
  "description": "JavaScript Testing utilities for React",
  "main": "build",
  "scripts": {
    "prepublish": "npm run clean && npm run build",
    "preversion": "npm run clean && npm run check",
    "postversion": "git push && git push --tags && npm run clean && npm run docs:publish",
    "pretest": "npm run lint",
    "version": "npm run build",
    "clean": "rimraf build",
    "lint": "eslint --ext js,jsx src test",
    "check": "npm run lint && npm run test:all",
    "build": "babel src --out-dir build",
    "test": "npm run test:only",
    "test:only": "mocha --recursive test --reporter dot",
    "test:single": "mocha --watch --reporter dot",
    "test:watch": "mocha --recursive test --watch --reporter dot",
    "test:karma": "karma start",
    "test:env": "sh ./example-test.sh",
    "test:all": "npm run react:13 && npm run test:only && npm run react:14 && npm run test:only && npm run react:15 && npm run test:only",
    "react:clean": "rimraf node_modules/react node_modules/react-dom node_modules/react-addons-test-utils",
    "react:13": "npm run react:clean && npm i react@0.13",
    "react:14": "npm run react:clean && npm i react@0.14 react-dom@0.14 react-addons-test-utils@0.14",
    "react:15": "npm run react:clean && npm i react@15 react-dom@15 react-addons-test-utils@15",
    "docs:clean": "rimraf _book",
    "docs:prepare": "gitbook install",
    "docs:build": "npm run docs:prepare && gitbook build",
    "docs:watch": "npm run docs:prepare && gitbook serve",
    "docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git fetch git@github.com:airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push git@github.com:airbnb/enzyme.git gh-pages --force",
    "travis": "babel-node ./node_modules/.bin/istanbul cover --report html _mocha -- test --recursive"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/airbnb/enzyme.git"
  },
  "keywords": [
    "javascript",
    "shallow rendering",
    "shallowRender",
    "test",
    "reactjs",
    "react",
    "flux",
    "testing",
    "test utils",
    "assertion helpers",
    "tdd",
    "mocha"
  ],
  "author": "Leland Richardson <leland.richardson@airbnb.com>",
  "license": "MIT",
  "dependencies": {
    "cheerio": "^0.22.0",
    "is-subset": "^0.1.1",
    "lodash": "^4.15.0",
    "object-is": "^1.0.1",
    "object.assign": "^4.0.4",
    "object.values": "^1.0.3"
  },
  "devDependencies": {
    "babel-cli": "^6.14.0",
    "babel-core": "^6.14.0",
    "babel-eslint": "^6.1.2",
    "babel-loader": "^6.2.5",
    "babel-preset-airbnb": "^2.1.0",
    "babel-register": "^6.14.0",
    "chai": "^3.5.0",
    "coveralls": "^2.11.14",
    "enzyme-example-jest": "^0.1.0",
    "enzyme-example-karma": "^0.1.1",
    "enzyme-example-karma-webpack": "^0.1.4",
    "enzyme-example-mocha": "^0.1.0",
    "enzyme-example-react-native": "^0.1.0",
    "eslint": "^3.6.1",
    "eslint-config-airbnb": "^12.0.0",
    "eslint-plugin-import": "^1.16.0",
    "eslint-plugin-jsx-a11y": "^2.2.2",
    "eslint-plugin-react": "^6.3.0",
    "gitbook-cli": "^1.0.1",
    "istanbul": "^1.0.0-alpha.2",
    "jsdom": "^6.1.0",
    "json-loader": "^0.5.4",
    "karma": "^1.3.0",
    "karma-chrome-launcher": "^1.0.1",
    "karma-firefox-launcher": "^1.0.0",
    "karma-mocha": "^1.1.1",
    "karma-sourcemap-loader": "^0.3.7",
    "karma-webpack": "^1.7.0",
    "mocha": "^3.1.0",
    "rimraf": "^2.5.4",
    "sinon": "^1.17.6",
    "webpack": "^1.13.2"
  },
  "peerDependencies": {
    "react": "0.13.x || 0.14.x || ^15.0.0-0 || 15.x"
  }
}
