{"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"gdborton","email":"gdborton@gmail.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"dist-tags":{"latest":"2.8.2","next":"2.0.0-rc1","backport-v2.4":"2.4.2","backport-v2.5":"2.5.2"},"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"description":"JavaScript Testing utilities for React","readme":"Enzyme\n=======\n\n[![Join the chat at https://gitter.im/airbnb/enzyme](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/airbnb/enzyme?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\n[![npm Version](https://img.shields.io/npm/v/enzyme.svg)](https://www.npmjs.com/package/enzyme) [![License](https://img.shields.io/npm/l/enzyme.svg)](https://www.npmjs.com/package/enzyme) [![Build Status](https://travis-ci.org/airbnb/enzyme.svg)](https://travis-ci.org/airbnb/enzyme) [![Coverage Status](https://coveralls.io/repos/airbnb/enzyme/badge.svg?branch=master&service=github)](https://coveralls.io/github/airbnb/enzyme?branch=master)\n[![Discord Channel](https://img.shields.io/badge/discord-testing@reactiflux-738bd7.svg?style=flat-square)](https://discord.gg/0ZcbPKXt5bY8vNTA)\n\n\n\nEnzyme is a JavaScript Testing utility for React that makes it easier to assert, manipulate,\nand traverse your React Components' output.\n\nEnzyme's API is meant to be intuitive and flexible by mimicking jQuery's API for DOM manipulation\nand traversal.\n\nEnzyme is unopinionated regarding which test runner or assertion library you use, and should be\ncompatible with all major test runners and assertion libraries out there. The documentation and\nexamples for enzyme use [mocha](https://mochajs.org/) and [chai](http://chaijs.com/), but you\nshould be able to extrapolate to your framework of choice.\n\nIf you are interested in using enzyme with custom assertions and convenience functions for\ntesting your React components, you can consider using:\n\n* [`chai-enzyme`](https://github.com/producthunt/chai-enzyme) with Mocha/Chai.\n* [`jasmine-enzyme`](https://github.com/blainekasten/enzyme-matchers/tree/master/packages/jasmine-enzyme) with Jasmine.\n* [`jest-enzyme`](https://github.com/blainekasten/enzyme-matchers/tree/master/packages/jest-enzyme) with Jest.\n* [`should-enzyme`](https://github.com/rkotze/should-enzyme) for should.js.\n* [`expect-enzyme`](https://github.com/PsychoLlama/expect-enzyme) for expect.\n\n\n[Using Enzyme with Mocha](/docs/guides/mocha.md)\n\n[Using Enzyme with Karma](/docs/guides/karma.md)\n\n[Using Enzyme with Browserify](/docs/guides/browserify.md)\n\n[Using Enzyme with SystemJS](/docs/guides/systemjs.md)\n\n[Using Enzyme with WebPack](/docs/guides/webpack.md)\n\n[Using Enzyme with JSDOM](/docs/guides/jsdom.md)\n\n[Using Enzyme with React Native](/docs/guides/react-native.md)\n\n[Using Enzyme with Jest](/docs/guides/jest.md)\n\n[Using Enzyme with Lab](/docs/guides/lab.md)\n\n[Using Enzyme with Tape and AVA](/docs/guides/tape-ava.md)\n\n### [Installation](/docs/installation/README.md)\n\nTo get started with enzyme, you can simply install it with npm:\n\n```bash\nnpm i --save-dev enzyme\n```\n\nEnzyme is currently compatible with `React 15.x`, `React 0.14.x` and `React 0.13.x`. In order to\nachieve this compatibility, some dependencies cannot be explicitly listed in our `package.json`.\n\nIf you are using `React 0.14` or `React <15.5`, in addition to `enzyme`, you will have to ensure that\nyou also have the following npm modules installed if they were not already:\n\n```bash\nnpm i --save-dev react-addons-test-utils react-dom\n```\n\nIf you are using `React >=15.5`, in addition to `enzyme`, you will have to ensure that you also have\nthe following npm modules installed if they were not already:\n\n```bash\nnpm i --save-dev react-test-renderer react-dom\n```\n\n\nBasic Usage\n===========\n\n## [Shallow Rendering](/docs/api/shallow.md)\n\n```javascript\nimport React from 'react';\nimport { expect } from 'chai';\nimport { shallow } from 'enzyme';\nimport sinon from 'sinon';\n\nimport MyComponent from './MyComponent';\nimport Foo from './Foo';\n\ndescribe('<MyComponent />', () => {\n  it('renders three <Foo /> components', () => {\n    const wrapper = shallow(<MyComponent />);\n    expect(wrapper.find(Foo)).to.have.length(3);\n  });\n\n  it('renders an `.icon-star`', () => {\n    const wrapper = shallow(<MyComponent />);\n    expect(wrapper.find('.icon-star')).to.have.length(1);\n  });\n\n  it('renders children when passed in', () => {\n    const wrapper = shallow(\n      <MyComponent>\n        <div className=\"unique\" />\n      </MyComponent>\n    );\n    expect(wrapper.contains(<div className=\"unique\" />)).to.equal(true);\n  });\n\n  it('simulates click events', () => {\n    const onButtonClick = sinon.spy();\n    const wrapper = shallow(\n      <Foo onButtonClick={onButtonClick} />\n    );\n    wrapper.find('button').simulate('click');\n    expect(onButtonClick).to.have.property('callCount', 1);\n  });\n});\n```\n\nRead the full [API Documentation](/docs/api/shallow.md)\n\n\n\n## [Full DOM Rendering](/docs/api/mount.md)\n\n```javascript\nimport React from 'react';\nimport sinon from 'sinon';\nimport { expect } from 'chai';\nimport { mount } from 'enzyme';\n\nimport Foo from './Foo';\n\ndescribe('<Foo />', () => {\n  it('allows us to set props', () => {\n    const wrapper = mount(<Foo bar=\"baz\" />);\n    expect(wrapper.props().bar).to.equal('baz');\n    wrapper.setProps({ bar: 'foo' });\n    expect(wrapper.props().bar).to.equal('foo');\n  });\n\n  it('simulates click events', () => {\n    const onButtonClick = sinon.spy();\n    const wrapper = mount(\n      <Foo onButtonClick={onButtonClick} />\n    );\n    wrapper.find('button').simulate('click');\n    expect(onButtonClick).to.have.property('callCount', 1);\n  });\n\n  it('calls componentDidMount', () => {\n    sinon.spy(Foo.prototype, 'componentDidMount');\n    const wrapper = mount(<Foo />);\n    expect(Foo.prototype.componentDidMount).to.have.property('callCount', 1);\n    Foo.prototype.componentDidMount.restore();\n  });\n});\n```\n\nRead the full [API Documentation](/docs/api/mount.md)\n\n\n## [Static Rendered Markup](/docs/api/render.md)\n\n```javascript\nimport React from 'react';\nimport { expect } from 'chai';\nimport { render } from 'enzyme';\n\nimport Foo from './Foo';\n\ndescribe('<Foo />', () => {\n  it('renders three `.foo-bar`s', () => {\n    const wrapper = render(<Foo />);\n    expect(wrapper.find('.foo-bar').length).to.equal(3);\n  });\n\n  it('renders the title', () => {\n    const wrapper = render(<Foo title=\"unique\" />);\n    expect(wrapper.text()).to.contain('unique');\n  });\n});\n```\n\nRead the full [API Documentation](/docs/api/render.md)\n\n\n### Future\n\n[Enzyme Future](/docs/future.md)\n\n\n### Contributing\n\nSee the [Contributors Guide](/CONTRIBUTING.md)\n\n### In the wild\n\nOrganizations and projects using `enzyme` can list themselves [here](INTHEWILD.md).\n\n### License\n\n[MIT](/LICENSE.md)\n","repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"users":{"corintho":true,"ahmedelgabri":true,"havvy":true,"alexandreth":true,"deedubs":true,"nexume":true,"panlw":true,"mdrobny":true,"robertcuadra":true,"jaxelson":true,"koulmomo":true,"xupea":true,"qmmr":true,"princetoad":true,"cfleschhut":true,"kaashin":true,"leonardorb":true,"wangnan0610":true,"vipergtsrz":true,"knoja4":true,"psychollama":true,"muroc":true,"zorak":true,"ckaatz":true,"vmleon":true,"charlietango592":true,"filipdanic":true,"shuoshubao":true,"oncletom":true,"chrisakakay":true,"saravntbe":true,"josokinas":true,"staydan":true,"erikvold":true,"s4j":true,"fabrianibrahim":true},"bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"license":"MIT","versions":{"1.0.0":{"name":"enzyme","version":"1.0.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","version":"npm run build","clean":"rimraf build","lint":"eslint src/**","test":"mocha --compilers js:babel/register --recursive src/**/__tests__/*.js","check":"npm run lint && npm run test:all","build":"babel src --out-dir build","test:watch":"mocha --compilers js:babel/register --recursive src/**/__tests__/*.js --watch","test:all":"npm run react:13 && npm test && npm run react:14 && npm test","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","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 https://github.com/airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://github.com/airbnb/enzyme.git gh-pages --force","travis":"istanbul cover _mocha -- --compilers js:babel/register --recursive src/**/__tests__/*.js"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.19.0","sinon":"^1.15.4","underscore":"^1.8.3","jsdom":"^6.1.0","mocha-jsdom":"^1.0.0"},"devDependencies":{"babel":"^5.8.21","babel-eslint":"^4.1.4","chai":"^3.2.0","coveralls":"^2.11.4","eslint":"^1.9.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-react":"^3.8.0","gitbook-cli":"^1.0.0","istanbul":"^0.4.0","mocha":"^2.2.5","rimraf":"^2.4.3"},"peerDependencies":{"react":"0.13.x || 0.14.x"},"optionalDependencies":{"jsdom":"^6.1.0","mocha-jsdom":"^1.0.0"},"gitHead":"38ae4b22a78ae3570b2c35c4071602037e2b0c9c","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@1.0.0","_shasum":"82ec4621a9b916b5381e3272ab7c9849da216d76","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"82ec4621a9b916b5381e3272ab7c9849da216d76","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-1.0.0.tgz"},"maintainers":[{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"}],"directories":{}},"1.1.0":{"name":"enzyme","version":"1.1.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","version":"npm run build","clean":"rimraf build","lint":"eslint src/**","test":"mocha --compilers js:babel/register --recursive src/**/__tests__/*.js","check":"npm run lint && npm run test:all","build":"babel src --out-dir build","test:watch":"mocha --compilers js:babel/register --recursive src/**/__tests__/*.js --watch","test:all":"npm run react:13 && npm test && npm run react:14 && npm test","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","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 https://github.com/airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://github.com/airbnb/enzyme.git gh-pages --force","travis":"istanbul cover _mocha -- --compilers js:babel/register --recursive src/**/__tests__/*.js"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.19.0","sinon":"^1.15.4","underscore":"^1.8.3","jsdom":"^6.1.0","mocha-jsdom":"^1.0.0"},"devDependencies":{"babel":"^5.8.21","babel-eslint":"^4.1.4","chai":"^3.2.0","coveralls":"^2.11.4","eslint":"^1.9.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-react":"^3.8.0","gitbook-cli":"^1.0.0","istanbul":"^0.4.0","mocha":"^2.2.5","rimraf":"^2.4.3"},"peerDependencies":{"react":"0.13.x || 0.14.x"},"optionalDependencies":{"jsdom":"^6.1.0","mocha-jsdom":"^1.0.0"},"gitHead":"2db7c671dd9adbd02e4078bff8c8fcd866e4792b","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@1.1.0","_shasum":"51d9dd26bba7a6f0755963b4d9e30d98a7c3e3d0","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"51d9dd26bba7a6f0755963b4d9e30d98a7c3e3d0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-1.1.0.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"1.2.0":{"name":"enzyme","version":"1.2.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","version":"npm run build","clean":"rimraf build","lint":"eslint src/**","test":"mocha --compilers js:babel/register --recursive src/**/__tests__/*.js","check":"npm run lint && npm run test:all","build":"babel src --out-dir build","test:watch":"mocha --compilers js:babel/register --recursive src/**/__tests__/*.js --watch","test:all":"npm run react:13 && npm test && npm run react:14 && npm test","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","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 https://github.com/airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://github.com/airbnb/enzyme.git gh-pages --force","travis":"istanbul cover _mocha -- --compilers js:babel/register --recursive src/**/__tests__/*.js"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.19.0","sinon":"^1.15.4","underscore":"^1.8.3","jsdom":"^6.1.0","mocha-jsdom":"^1.0.0"},"devDependencies":{"babel":"^5.8.21","babel-eslint":"^4.1.4","chai":"^3.2.0","coveralls":"^2.11.4","eslint":"^1.9.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-react":"^3.8.0","gitbook-cli":"^1.0.0","istanbul":"^0.4.0","mocha":"^2.2.5","rimraf":"^2.4.3"},"peerDependencies":{"react":"0.13.x || 0.14.x"},"optionalDependencies":{"jsdom":"^6.1.0","mocha-jsdom":"^1.0.0"},"gitHead":"74362795bde94a2c654f08b708d5444d3c38e48a","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@1.2.0","_shasum":"91e74a71dd27dfa30aeaaf3fe0dc04fbf8101447","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"91e74a71dd27dfa30aeaaf3fe0dc04fbf8101447","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-1.2.0.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"1.3.0":{"name":"enzyme","version":"1.3.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","version":"npm run build","clean":"rimraf build","lint":"eslint src/**","test":"mocha --compilers js:babel/register --recursive src/**/__tests__/*.js","check":"npm run lint && npm run test:all","build":"babel src --out-dir build","test:watch":"mocha --compilers js:babel/register --recursive src/**/__tests__/*.js --watch","test:all":"npm run react:13 && npm test && npm run react:14 && npm test","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","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 https://github.com/airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://github.com/airbnb/enzyme.git gh-pages --force","travis":"istanbul cover _mocha -- --compilers js:babel/register --recursive src/**/__tests__/*.js"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.19.0","object.assign":"^4.0.3","sinon":"^1.15.4","underscore":"^1.8.3","jsdom":"^3.1.2 || ^5.6.1 || ^6.1.0 || ^7.2.2","mocha-jsdom":"^1.0.0"},"devDependencies":{"babel":"^5.8.21","babel-eslint":"^4.1.4","chai":"^3.2.0","coveralls":"^2.11.4","eslint":"^1.10.3","eslint-config-airbnb":"^3.0.2","eslint-plugin-react":"^3.14.0","gitbook-cli":"^1.0.0","istanbul":"^0.4.0","mocha":"^2.2.5","rimraf":"^2.4.3"},"peerDependencies":{"react":"0.13.x || 0.14.x"},"optionalDependencies":{"jsdom":"^3.1.2 || ^5.6.1 || ^6.1.0 || ^7.2.2","mocha-jsdom":"^1.0.0"},"gitHead":"0910d00f3045284134343e74baa9f4c12c58f28f","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@1.3.0","_shasum":"b413447d7099f068d945c00664c559c48bcbf8d8","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"b413447d7099f068d945c00664c559c48bcbf8d8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-1.3.0.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"1.3.1":{"name":"enzyme","version":"1.3.1","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","version":"npm run build","clean":"rimraf build","lint":"eslint src/**","test":"mocha --compilers js:babel/register --recursive src/**/__tests__/*.js","check":"npm run lint && npm run test:all","build":"babel src --out-dir build","test:watch":"mocha --compilers js:babel/register --recursive src/**/__tests__/*.js --watch","test:all":"npm run react:13 && npm test && npm run react:14 && npm test","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","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 https://github.com/airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://github.com/airbnb/enzyme.git gh-pages --force","travis":"istanbul cover _mocha -- --compilers js:babel/register --recursive src/**/__tests__/*.js"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.19.0","object.assign":"^4.0.3","sinon":"^1.15.4","underscore":"^1.8.3","jsdom":"^3.1.2 || ^5.6.1 || ^6.1.0 || ^7.2.2","mocha-jsdom":"^1.0.0"},"devDependencies":{"babel":"^5.8.21","babel-eslint":"^4.1.4","chai":"^3.2.0","coveralls":"^2.11.4","eslint":"^1.10.3","eslint-config-airbnb":"^3.0.2","eslint-plugin-react":"^3.14.0","gitbook-cli":"^1.0.0","istanbul":"^0.4.0","mocha":"^2.2.5","rimraf":"^2.4.3"},"peerDependencies":{"react":"0.13.x || 0.14.x"},"optionalDependencies":{"jsdom":"^3.1.2 || ^5.6.1 || ^6.1.0 || ^7.2.2","mocha-jsdom":"^1.0.0"},"gitHead":"c06ac0a6c3c088803ced9728dfa6be215def100c","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@1.3.1","_shasum":"dea18e209d7f77ca7b073ced697eb756e57d258f","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"dea18e209d7f77ca7b073ced697eb756e57d258f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-1.3.1.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"2.0.0-rc1":{"name":"enzyme","version":"2.0.0-rc1","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","version":"npm run build","clean":"rimraf build","lint":"eslint src/**","check":"npm run lint && npm run test:all","build":"npm run build:core","build:core":"babel src --out-dir build","build:packages":"bash ./scripts/build-packages.sh","test":"npm run test:core","test:core":"mocha --compilers js:babel/register","test:packages":"bash ./scripts/test-packages.sh","test:watch":"mocha --compilers js:babel/register --watch","test:all":"npm run react:13 && npm test && npm run react:14 && npm test","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","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 https://github.com/airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://github.com/airbnb/enzyme.git gh-pages --force","travis":"istanbul cover _mocha -- --compilers js:babel/register"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.19.0","object.assign":"^4.0.3","sinon":"^1.15.4","underscore":"^1.8.3"},"devDependencies":{"babel":"^5.8.21","babel-eslint":"^4.1.4","chai":"^3.2.0","coveralls":"^2.11.4","eslint":"^1.10.3","eslint-config-airbnb":"^3.0.2","eslint-plugin-react":"^3.14.0","gitbook-cli":"^1.0.0","istanbul":"^0.4.0","jsdom":"^6.1.0","mocha":"^2.2.5","mocha-jsdom":"^1.0.0","rimraf":"^2.4.3","sinon":"^1.15.4"},"peerDependencies":{"react":"0.13.x || 0.14.x"},"gitHead":"d7e7c38f36916beeefc17ab82be9392a5758df5c","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@2.0.0-rc1","_shasum":"61f163e62552f050b54a131ef1719fb14093e89a","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"61f163e62552f050b54a131ef1719fb14093e89a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-2.0.0-rc1.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"1.4.0":{"name":"enzyme","version":"1.4.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","version":"npm run build","clean":"rimraf build","lint":"eslint src/**","test":"mocha --compilers js:babel/register --recursive src/**/__tests__/*.js","check":"npm run lint && npm run test:all","build":"babel src --out-dir build","test:watch":"mocha --compilers js:babel/register --recursive src/**/__tests__/*.js --watch","test:describeWithDOMOnly":"mocha --compilers js:babel/register --recursive src/**/__tests__/describeWithDOM/describeWithDOMOnly-spec.js","test:describeWithDOMSkip":"mocha --compilers js:babel/register --recursive src/**/__tests__/describeWithDOM/describeWithDOMSkip-spec.js","test:all":"npm run react:13 && npm test && npm run test:describeWithDOMOnly && npm run test:describeWithDOMSkip && npm run react:14 && npm test && npm run test:describeWithDOMOnly && npm run test:describeWithDOMSkip","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","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 https://github.com/airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://github.com/airbnb/enzyme.git gh-pages --force","travis":"istanbul cover _mocha -- --compilers js:babel/register --recursive src/**/__tests__/*.js"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.19.0","is-subset":"^0.1.1","object.assign":"^4.0.3","sinon":"^1.15.4","underscore":"^1.8.3","jsdom":"^3.1.2 || ^5.6.1 || ^6.1.0 || ^7.2.2","mocha-jsdom":"^1.0.0"},"devDependencies":{"babel":"^5.8.21","babel-eslint":"^4.1.4","chai":"^3.2.0","coveralls":"^2.11.4","eslint":"^1.10.3","eslint-config-airbnb":"^3.0.2","eslint-plugin-react":"^3.14.0","gitbook-cli":"^1.0.0","istanbul":"^0.4.0","mocha":"^2.2.5","rimraf":"^2.4.3"},"peerDependencies":{"react":"0.13.x || 0.14.x"},"optionalDependencies":{"jsdom":"^3.1.2 || ^5.6.1 || ^6.1.0 || ^7.2.2","mocha-jsdom":"^1.0.0"},"gitHead":"3763d3269327b17e3b51691f7103731cad18ea44","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@1.4.0","_shasum":"2ba0cb16cee31b469ef713ecec83a3e151e8e2ac","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"2ba0cb16cee31b469ef713ecec83a3e151e8e2ac","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-1.4.0.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"1.4.1":{"name":"enzyme","version":"1.4.1","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","version":"npm run build","clean":"rimraf build","lint":"eslint src/**","test":"mocha --compilers js:babel-core/register --recursive src/**/__tests__/*.js","check":"npm run lint && npm run test:all","build":"babel src --out-dir build","test:watch":"mocha --compilers js:babel-core/register --recursive src/**/__tests__/*.js --watch","test:describeWithDOMOnly":"mocha --compilers js:babel-core/register --recursive src/**/__tests__/describeWithDOM/describeWithDOMOnly-spec.js","test:describeWithDOMSkip":"mocha --compilers js:babel-core/register --recursive src/**/__tests__/describeWithDOM/describeWithDOMSkip-spec.js","test:all":"npm run react:13 && npm test && npm run test:describeWithDOMOnly && npm run test:describeWithDOMSkip && npm run react:14 && npm test && npm run test:describeWithDOMOnly && npm run test:describeWithDOMSkip","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","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 https://github.com/airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://github.com/airbnb/enzyme.git gh-pages --force","travis":"babel-istanbul cover --report html _mocha -- --recursive src/**/__tests__/*.js"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.19.0","is-subset":"^0.1.1","object.assign":"^4.0.3","sinon":"^1.15.4","underscore":"^1.8.3","jsdom":"^3.1.2 || ^5.6.1 || ^6.1.0 || ^7.2.2","mocha-jsdom":"^1.0.0"},"devDependencies":{"babel-cli":"^6.3.17","babel-core":"^6.3.21","babel-eslint":"^4.1.4","babel-istanbul":"^0.5.9","babel-preset-airbnb":"^1.0.1","babel-register":"^6.3.13","chai":"^3.2.0","coveralls":"^2.11.4","eslint":"^1.10.3","eslint-config-airbnb":"^3.0.2","eslint-plugin-react":"^3.14.0","gitbook-cli":"^1.0.0","istanbul":"^0.4.0","mocha":"^2.3.4","rimraf":"^2.4.3"},"peerDependencies":{"react":"0.13.x || 0.14.x"},"optionalDependencies":{"jsdom":"^3.1.2 || ^5.6.1 || ^6.1.0 || ^7.2.2","mocha-jsdom":"^1.0.0"},"gitHead":"442147f669abace1eeae08040885893894ae0505","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@1.4.1","_shasum":"164262c8d4456e5a0b29389c2e50d27deb765bfd","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"164262c8d4456e5a0b29389c2e50d27deb765bfd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-1.4.1.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"1.5.0":{"name":"enzyme","version":"1.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","version":"npm run build","clean":"rimraf build","lint":"eslint src/**","check":"npm run lint && npm run test:all","build":"babel src --out-dir build","test":"npm run lint && npm run test:only","test:only":"mocha --require withDom.js --compilers js:babel-core/register --recursive src/**/__tests__/*.js","test:single":"mocha --require withDom.js --compilers js:babel-core/register --watch","test:watch":"mocha --require withDom.js --compilers js:babel-core/register --recursive src/**/__tests__/*.js --watch","test:describeWithDOMOnly":"mocha --compilers js:babel-core/register --recursive src/**/__tests__/describeWithDOM/describeWithDOMOnly-spec.js","test:describeWithDOMSkip":"mocha --compilers js:babel-core/register --recursive src/**/__tests__/describeWithDOM/describeWithDOMSkip-spec.js","test:all":"npm run react:13 && npm test && npm run test:describeWithDOMOnly && npm run test:describeWithDOMSkip && npm run react:14 && npm test && npm run test:describeWithDOMOnly && npm run test:describeWithDOMSkip","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","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 https://github.com/airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://github.com/airbnb/enzyme.git gh-pages --force","travis":"babel-istanbul cover --report html _mocha -- --recursive src/**/__tests__/*.js"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.20.0","is-subset":"^0.1.1","object.assign":"^4.0.3","object.values":"^1.0.3","sinon":"^1.17.3","underscore":"^1.8.3","jsdom":"^3.1.2 || ^5.6.1 || ^6.1.0 || ^7.2.2","mocha-jsdom":"^1.0.0"},"devDependencies":{"babel-cli":"^6.3.17","babel-core":"^6.3.21","babel-eslint":"^4.1.8","babel-istanbul":"^0.5.9","babel-preset-airbnb":"^1.0.1","babel-register":"^6.3.13","chai":"^3.5.0","coveralls":"^2.11.6","eslint":"^1.10.3","eslint-config-airbnb":"^4.0.0","eslint-plugin-react":"^3.16.1","gitbook-cli":"^1.0.1","istanbul":"^0.4.2","mocha":"^2.4.5","rimraf":"^2.5.1"},"peerDependencies":{"react":"0.13.x || 0.14.x"},"optionalDependencies":{"jsdom":"^3.1.2 || ^5.6.1 || ^6.1.0 || ^7.2.2","mocha-jsdom":"^1.0.0"},"gitHead":"ad02abf8c5a671acfe5b94d5fe6e5ee8c7a638b1","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@1.5.0","_shasum":"67157e7c86f44eb779a10660adec625dac803e0c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"67157e7c86f44eb779a10660adec625dac803e0c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-1.5.0.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/enzyme-1.5.0.tgz_1454451088403_0.6387281350325793"},"directories":{}},"1.6.0":{"name":"enzyme","version":"1.6.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","version":"npm run build","clean":"rimraf build","lint":"eslint src/**","check":"npm run lint && npm run test:all","build":"babel src --out-dir build","test":"npm run lint && npm run test:only","test:only":"mocha --require withDom.js --compilers js:babel-core/register --recursive src/**/__tests__/*.js","test:single":"mocha --require withDom.js --compilers js:babel-core/register --watch","test:watch":"mocha --require withDom.js --compilers js:babel-core/register --recursive src/**/__tests__/*.js --watch","test:describeWithDOMOnly":"mocha --compilers js:babel-core/register --recursive src/**/__tests__/describeWithDOM/describeWithDOMOnly-spec.js","test:describeWithDOMSkip":"mocha --compilers js:babel-core/register --recursive src/**/__tests__/describeWithDOM/describeWithDOMSkip-spec.js","test:all":"npm run react:13 && npm test && npm run test:describeWithDOMOnly && npm run test:describeWithDOMSkip && npm run react:14 && npm test && npm run test:describeWithDOMOnly && npm run test:describeWithDOMSkip","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","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 https://github.com/airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://github.com/airbnb/enzyme.git gh-pages --force","travis":"babel-istanbul cover --report html _mocha -- --recursive src/**/__tests__/*.js"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.20.0","is-subset":"^0.1.1","object.assign":"^4.0.3","object.values":"^1.0.3","sinon":"^1.17.3","underscore":"^1.8.3","jsdom":"^3.1.2 || ^5.6.1 || ^6.1.0 || ^7.2.2","mocha-jsdom":"^1.0.0"},"devDependencies":{"babel-cli":"^6.3.17","babel-core":"^6.3.21","babel-eslint":"^4.1.8","babel-istanbul":"^0.5.9","babel-preset-airbnb":"^1.0.1","babel-register":"^6.3.13","chai":"^3.5.0","coveralls":"^2.11.6","eslint":"^1.10.3","eslint-config-airbnb":"^4.0.0","eslint-plugin-react":"^3.16.1","gitbook-cli":"^1.0.1","istanbul":"^0.4.2","mocha":"^2.4.5","rimraf":"^2.5.1"},"peerDependencies":{"react":"0.13.x || 0.14.x"},"optionalDependencies":{"jsdom":"^3.1.2 || ^5.6.1 || ^6.1.0 || ^7.2.2","mocha-jsdom":"^1.0.0"},"gitHead":"ec1c559921e4090dd5000b3d8fb4722369635321","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@1.6.0","_shasum":"19c8015111a38c725b6a7d7ca562cd7601d1a38d","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"19c8015111a38c725b6a7d7ca562cd7601d1a38d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-1.6.0.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/enzyme-1.6.0.tgz_1455148385728_0.46637724433094263"},"directories":{}},"2.0.0":{"name":"enzyme","version":"2.0.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","version":"npm run build","clean":"rimraf build","lint":"eslint src/**","check":"npm run lint && npm run test:all","build":"babel src --out-dir build","test":"npm run lint && npm run test:only","test:only":"mocha --require withDom.js --compilers js:babel-core/register --recursive test/*.js","test:single":"mocha --require withDom.js --compilers js:babel-core/register --watch","test:watch":"mocha --require withDom.js --compilers js:babel-core/register --recursive test/*.js --watch","test:env":"sh ./example-test.sh","test:all":"npm run react:13 && npm test && npm run react:14 && npm test","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","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 https://github.com/airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://github.com/airbnb/enzyme.git gh-pages --force","travis":"babel-node ./node_modules/.bin/istanbul cover --report html _mocha -- --require withDom.js test --recursive"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.20.0","is-subset":"^0.1.1","object.assign":"^4.0.3","object.values":"^1.0.3","underscore":"^1.8.3"},"devDependencies":{"babel-cli":"^6.3.17","babel-core":"^6.3.21","babel-eslint":"^4.1.8","babel-preset-airbnb":"^1.0.1","babel-register":"^6.3.13","chai":"^3.5.0","coveralls":"^2.11.6","enzyme-example-jest":"^0.1.0","enzyme-example-karma":"^0.1.1","enzyme-example-karma-webpack":"^0.1.3","enzyme-example-mocha":"^0.1.0","enzyme-example-react-native":"^0.1.0","eslint":"^1.10.3","eslint-config-airbnb":"^4.0.0","eslint-plugin-react":"^3.16.1","gitbook-cli":"^1.0.1","istanbul":"^1.0.0-alpha.2","jsdom":"^6.1.0","mocha":"^2.4.5","rimraf":"^2.5.1","sinon":"^1.15.4"},"peerDependencies":{"react":"0.13.x || 0.14.x"},"gitHead":"4abc67788e13744b0374fea76114cd0f22f64ab2","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@2.0.0","_shasum":"d47d7e58a6667be5950e5e70412d2c60069e4a5f","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"d47d7e58a6667be5950e5e70412d2c60069e4a5f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-2.0.0.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/enzyme-2.0.0.tgz_1455152006675_0.4094189568422735"},"directories":{}},"2.1.0":{"name":"enzyme","version":"2.1.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","version":"npm run build","clean":"rimraf build","lint":"eslint src/**","check":"npm run lint && npm run test:all","build":"babel src --out-dir build","test":"npm run lint && npm run test:only","test:only":"mocha --require withDom.js --compilers js:babel-core/register --recursive test/*.js --reporter dot","test:single":"mocha --require withDom.js --compilers js:babel-core/register --watch --reporter dot","test:watch":"mocha --require withDom.js --compilers js:babel-core/register --recursive test/*.js --watch --reporter dot","test:env":"sh ./example-test.sh","test:all":"npm run react:13 && npm test && npm run react:14 && npm test && npm run react:15 && npm test","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.0.0-rc.1 react-dom@15.0.0-rc.1 react-addons-test-utils@15.0.0-rc.1","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 https://github.com/airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://github.com/airbnb/enzyme.git gh-pages --force","travis":"babel-node ./node_modules/.bin/istanbul cover --report html _mocha -- --require withDom.js test --recursive"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.20.0","is-subset":"^0.1.1","lodash":"^4.0.0","object.assign":"^4.0.3","object.values":"^1.0.3"},"devDependencies":{"babel-cli":"^6.6.4","babel-core":"^6.6.4","babel-eslint":"^5.0.0","babel-preset-airbnb":"^1.1.1","babel-register":"^6.6.0","chai":"^3.5.0","coveralls":"^2.11.6","enzyme-example-jest":"^0.1.0","enzyme-example-karma":"^0.1.1","enzyme-example-karma-webpack":"^0.1.3","enzyme-example-mocha":"^0.1.0","enzyme-example-react-native":"^0.1.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.2","eslint-plugin-react":"^4.1.0","gitbook-cli":"^1.0.1","istanbul":"^1.0.0-alpha.2","jsdom":"^6.1.0","mocha":"^2.4.5","rimraf":"^2.5.1","sinon":"^1.15.4"},"peerDependencies":{"react":"0.13.x || 0.14.x || 15.* || 15.0.0-rc.1"},"gitHead":"fc1f243f99c333e6316889357f30777cb12e839a","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@2.1.0","_shasum":"c9ef5def7ec5590da8cf6dd8cf801c6ed31b4ebf","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"c9ef5def7ec5590da8cf6dd8cf801c6ed31b4ebf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-2.1.0.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/enzyme-2.1.0.tgz_1457555862957_0.12881131004542112"},"directories":{}},"2.2.0":{"name":"enzyme","version":"2.2.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","version":"npm run build","clean":"rimraf build","lint":"eslint src/** test/**","check":"npm run lint && npm run test:all","build":"babel src --out-dir build","test":"npm run lint && npm run test:only","test:only":"mocha --require withDom.js --compilers js:babel-core/register --recursive test/*.js --reporter dot","test:single":"mocha --require withDom.js --compilers js:babel-core/register --watch --reporter dot","test:watch":"mocha --require withDom.js --compilers js:babel-core/register --recursive test/*.js --watch --reporter dot","test:env":"sh ./example-test.sh","test:all":"npm run react:13 && npm test && npm run react:14 && npm test && npm run react:15 && npm test","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.0.0-rc.2 react-dom@15.0.0-rc.2 react-addons-test-utils@15.0.0-rc.2","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 https://github.com/airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://github.com/airbnb/enzyme.git gh-pages --force","travis":"babel-node ./node_modules/.bin/istanbul cover --report html _mocha -- --require withDom.js test --recursive"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.20.0","is-subset":"^0.1.1","lodash":"^4.0.0","object.assign":"^4.0.3","object.values":"^1.0.3"},"devDependencies":{"babel-cli":"^6.6.4","babel-core":"^6.6.4","babel-eslint":"^5.0.0","babel-preset-airbnb":"^1.1.1","babel-register":"^6.6.0","chai":"^3.5.0","coveralls":"^2.11.6","enzyme-example-jest":"^0.1.0","enzyme-example-karma":"^0.1.1","enzyme-example-karma-webpack":"^0.1.3","enzyme-example-mocha":"^0.1.0","enzyme-example-react-native":"^0.1.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.2","eslint-plugin-react":"^4.1.0","gitbook-cli":"^1.0.1","istanbul":"^1.0.0-alpha.2","jsdom":"^6.1.0","mocha":"^2.4.5","rimraf":"^2.5.1","sinon":"^1.15.4"},"peerDependencies":{"react":"0.13.x || 0.14.x || 15.* || ^15.0.0-rc"},"gitHead":"699ec7e39560a68c198ecf80b59d177d003fc869","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@2.2.0","_shasum":"972f1b89d771356ad4e06a15b4736173ec64aed5","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"972f1b89d771356ad4e06a15b4736173ec64aed5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-2.2.0.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/enzyme-2.2.0.tgz_1458581192445_0.8459953551646322"},"directories":{}},"2.3.0":{"name":"enzyme","version":"2.3.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","version":"npm run build","clean":"rimraf build","lint":"eslint src/** test/**","check":"npm run lint && npm run test:all","build":"babel src --out-dir build","test":"npm run lint && npm run test:only","test:only":"mocha --require withDom.js --compilers js:babel-core/register --recursive test/*.js --reporter dot","test:single":"mocha --require withDom.js --compilers js:babel-core/register --watch --reporter dot","test:watch":"mocha --require withDom.js --compilers js:babel-core/register --recursive test/*.js --watch --reporter dot","test:env":"sh ./example-test.sh","test:all":"npm run react:13 && npm test && npm run react:14 && npm test && npm run react:15 && npm test","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 https://github.com/airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://github.com/airbnb/enzyme.git gh-pages --force","travis":"babel-node ./node_modules/.bin/istanbul cover --report html _mocha -- --require withDom.js test --recursive"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.20.0","is-subset":"^0.1.1","lodash":"^4.8.2","object-is":"^1.0.1","object.assign":"^4.0.3","object.values":"^1.0.3"},"devDependencies":{"babel-cli":"^6.6.5","babel-core":"^6.7.4","babel-eslint":"^6.0.2","babel-preset-airbnb":"^1.1.1","babel-register":"^6.7.2","chai":"^3.5.0","coveralls":"^2.11.9","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":"^2.7.0","eslint-config-airbnb":"^6.2.0","eslint-plugin-react":"^4.3.0","gitbook-cli":"^1.0.1","istanbul":"^1.0.0-alpha.2","jsdom":"^6.1.0","mocha":"^2.4.5","rimraf":"^2.5.2","sinon":"^1.17.3"},"peerDependencies":{"react":"0.13.x || 0.14.x || ^15.0.0-0"},"gitHead":"d0d18f91317d2a72f682cb96f8bfc7bd6f0f3bd5","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@2.3.0","_shasum":"2cbc0c37d3cc067b7d1b8b0b51cf6e7961e520de","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"2cbc0c37d3cc067b7d1b8b0b51cf6e7961e520de","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-2.3.0.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/enzyme-2.3.0.tgz_1462843636029_0.3784440306480974"},"directories":{}},"2.4.0":{"name":"enzyme","version":"2.4.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 src/** test/**","check":"npm run lint && npm run test:all","build":"babel src --out-dir build","test":"npm run test:only","test:only":"mocha --require withDom.js --compilers js:babel-core/register --recursive test/*.js --reporter dot","test:single":"mocha --require withDom.js --compilers js:babel-core/register --watch --reporter dot","test:watch":"mocha --require withDom.js --compilers js:babel-core/register --recursive test/*.js --watch --reporter dot","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 https://github.com/airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://github.com/airbnb/enzyme.git gh-pages --force","travis":"babel-node ./node_modules/.bin/istanbul cover --report html _mocha -- --require withDom.js test --recursive"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.20.0","is-subset":"^0.1.1","lodash":"^4.13.1","object-is":"^1.0.1","object.assign":"^4.0.3","object.values":"^1.0.3"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.10.4","babel-eslint":"^6.1.0","babel-preset-airbnb":"^2.0.0","babel-register":"^6.9.0","chai":"^3.5.0","coveralls":"^2.11.9","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":"^2.13.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-import":"^1.10.0","eslint-plugin-jsx-a11y":"^1.5.3","eslint-plugin-react":"^5.2.2","gitbook-cli":"^1.0.1","istanbul":"^1.0.0-alpha.2","jsdom":"^6.1.0","mocha":"^2.5.3","rimraf":"^2.5.2","sinon":"^1.17.4"},"peerDependencies":{"react":"0.13.x || 0.14.x || ^15.0.0-0"},"gitHead":"62ef7cae5511fcc786cd32ef97d9cec611e0bf37","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@2.4.0","_shasum":"993b4ba5ca3c8c90da182423cdf3e531bb735753","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"993b4ba5ca3c8c90da182423cdf3e531bb735753","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-2.4.0.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/enzyme-2.4.0.tgz_1467955691643_0.1470443489961326"},"deprecated":"shallow rendering has a bug when experimental lifecycle support is off. try 2.4.1 or higher!","directories":{}},"2.4.1":{"name":"enzyme","version":"2.4.1","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 src/** test/**","check":"npm run lint && npm run test:all","build":"babel src --out-dir build","test":"npm run test:only","test:only":"mocha --require withDom.js --compilers js:babel-core/register --recursive test/*.js --reporter dot","test:single":"mocha --require withDom.js --compilers js:babel-core/register --watch --reporter dot","test:watch":"mocha --require withDom.js --compilers js:babel-core/register --recursive test/*.js --watch --reporter dot","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 https://github.com/airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://github.com/airbnb/enzyme.git gh-pages --force","travis":"babel-node ./node_modules/.bin/istanbul cover --report html _mocha -- --require withDom.js test --recursive"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.20.0","is-subset":"^0.1.1","lodash":"^4.13.1","object-is":"^1.0.1","object.assign":"^4.0.3","object.values":"^1.0.3"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.10.4","babel-eslint":"^6.1.0","babel-preset-airbnb":"^2.0.0","babel-register":"^6.9.0","chai":"^3.5.0","coveralls":"^2.11.9","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":"^2.13.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-import":"^1.10.0","eslint-plugin-jsx-a11y":"^1.5.3","eslint-plugin-react":"^5.2.2","gitbook-cli":"^1.0.1","istanbul":"^1.0.0-alpha.2","jsdom":"^6.1.0","mocha":"^2.5.3","rimraf":"^2.5.2","sinon":"^1.17.4"},"peerDependencies":{"react":"0.13.x || 0.14.x || ^15.0.0-0"},"gitHead":"811ec8dca4e8eb46dc10fcb70e1412d81872982b","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@2.4.1","_shasum":"90fa9861d982d0ceb92a9fd57e38426a2f74d3b1","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"90fa9861d982d0ceb92a9fd57e38426a2f74d3b1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-2.4.1.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/enzyme-2.4.1.tgz_1468000447818_0.1621358753181994"},"directories":{}},"2.5.0":{"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":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"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"},"gitHead":"e0ac40042af512229de61a4ddcb0db70103be9db","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@2.5.0","_shasum":"ab0b3f19cc5239f3aa3c253b21cece9b0400d64a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"ab0b3f19cc5239f3aa3c253b21cece9b0400d64a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-2.5.0.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/enzyme-2.5.0.tgz_1476720541175_0.5772610292769969"},"directories":{}},"2.5.1":{"name":"enzyme","version":"2.5.1","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":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"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.16.0","babel-core":"^6.17.0","babel-eslint":"^6.1.2","babel-loader":"^6.2.5","babel-preset-airbnb":"^2.1.1","babel-register":"^6.16.3","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.8.0","eslint-config-airbnb":"^12.0.0","eslint-plugin-import":"^1.16.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.4.1","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.2","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"},"gitHead":"5ea91d3de12f1681db5892cff5b10fe6cc7e75e8","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@2.5.1","_shasum":"d7c8e2352c04c27fcf2523fb17bc7e0569352743","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"d7c8e2352c04c27fcf2523fb17bc7e0569352743","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-2.5.1.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/enzyme-2.5.1.tgz_1476731978769_0.555383603554219"},"directories":{}},"2.4.2":{"name":"enzyme","version":"2.4.2","description":"JavaScript Testing utilities for React","main":"build","scripts":{"prepublish":"not-in-publish || (npm run clean && npm run build && safe-publish-latest)","preversion":"npm run clean && npm run check","postversion":"git push && git push --tags && npm run clean && npm run docs:publish","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","pretest":"npm run lint","test":"npm run clean && npm run build && npm run test:only","test:only":"mocha --recursive test/*.js","test:single":"mocha --watch","test:watch":"mocha --recursive test/*.js --watch","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 https://github.com/airbnb/enzyme.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push https://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":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.20.0","function.prototype.name":"^1.0.0","in-publish":"^2.0.0","is-subset":"^0.1.1","lodash":"^4.13.1","object-is":"^1.0.1","object.assign":"^4.0.4","object.entries":"^1.0.3","object.values":"^1.0.3","uuid":"^2.0.3"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.10.4","babel-eslint":"^6.1.0","babel-preset-airbnb":"^2.0.0","babel-register":"^6.9.0","chai":"^3.5.0","coveralls":"^2.11.9","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":"^2.13.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-import":"^1.10.0","eslint-plugin-jsx-a11y":"^1.5.3","eslint-plugin-react":"^5.2.2","gitbook-cli":"^1.0.1","istanbul":"^1.0.0-alpha.2","jsdom":"^6.1.0","mocha":"^2.5.3","rimraf":"^2.5.2","safe-publish-latest":"^1.1.1","sinon":"^1.17.4"},"peerDependencies":{"react":"0.13.x || 0.14.x || ^15.0.0-0"},"gitHead":"e04fcc22ad95e13fa78433d4daabf8741ed8d2e4","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@2.4.2","_shasum":"09baeced8a6ad48d507f9075ac9ce1274f9cff62","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"09baeced8a6ad48d507f9075ac9ce1274f9cff62","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-2.4.2.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/enzyme-2.4.2.tgz_1478746781662_0.988147733034566"},"directories":{}},"2.5.2":{"name":"enzyme","version":"2.5.2","description":"JavaScript Testing utilities for React","main":"build","scripts":{"prepublish":"not-in-publish || (npm run clean && npm run build && safe-publish-latest)","preversion":"npm run clean && npm run check","postversion":"git push && git push --tags && npm run clean && npm run docs:publish","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","pretest":"npm run lint","test":"npm run clean && npm run build && npm run test:only","test:only":"mocha --recursive test","test:single":"mocha --watch","test:watch":"mocha --recursive --watch test","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":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.22.0","function.prototype.name":"^1.0.0","in-publish":"^2.0.0","is-subset":"^0.1.1","lodash":"^4.15.0","object-is":"^1.0.1","object.assign":"^4.0.4","object.entries":"^1.0.3","object.values":"^1.0.3","uuid":"^2.0.3"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-eslint":"^6.1.2","babel-loader":"^6.2.5","babel-preset-airbnb":"^2.1.1","babel-register":"^6.16.3","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.8.0","eslint-config-airbnb":"^12.0.0","eslint-plugin-import":"^1.16.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.4.1","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.2","rimraf":"^2.5.4","safe-publish-latest":"^1.1.1","sinon":"^1.17.6","webpack":"^1.13.2"},"peerDependencies":{"react":"0.13.x || 0.14.x || ^15.0.0-0 || 15.x"},"gitHead":"ea162be76c84af1cc00539d2c97ef465ba4d07ae","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@2.5.2","_shasum":"138f6f9a9ab529157a174fcad40a20f67b9daa3d","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"138f6f9a9ab529157a174fcad40a20f67b9daa3d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-2.5.2.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/enzyme-2.5.2.tgz_1478746806097_0.4856291839387268"},"directories":{}},"2.6.0":{"name":"enzyme","version":"2.6.0","description":"JavaScript Testing utilities for React","main":"build","scripts":{"prepublish":"not-in-publish || (npm run clean && npm run build && safe-publish-latest)","preversion":"npm run clean && npm run check","postversion":"git push && git push --tags && npm run clean && npm run docs:publish","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","pretest":"npm run lint","test":"npm run clean && npm run build && npm run test:only","test:only":"mocha --recursive test","test:single":"mocha --watch","test:watch":"mocha --recursive --watch test","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":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.22.0","function.prototype.name":"^1.0.0","in-publish":"^2.0.0","is-subset":"^0.1.1","lodash":"^4.16.4","object-is":"^1.0.1","object.assign":"^4.0.4","object.entries":"^1.0.3","object.values":"^1.0.3","uuid":"^2.0.3"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.18.2","babel-eslint":"^7.1.0","babel-loader":"^6.2.7","babel-preset-airbnb":"^2.1.1","babel-register":"^6.18.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.9.1","eslint-config-airbnb":"^13.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.6.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.2.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.8.0","mocha":"^3.1.2","rimraf":"^2.5.4","safe-publish-latest":"^1.1.1","sinon":"^1.17.6","webpack":"^1.13.3"},"peerDependencies":{"react":"0.13.x || 0.14.x || ^15.0.0-0 || 15.x"},"gitHead":"5c37d91715a88d393f3c260447a189a446d76e0c","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@2.6.0","_shasum":"148d742b25e2565f7e80870a0c92aea9be1b90ea","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"148d742b25e2565f7e80870a0c92aea9be1b90ea","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-2.6.0.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/enzyme-2.6.0.tgz_1478746866117_0.454174768878147"},"directories":{}},"2.7.0":{"name":"enzyme","version":"2.7.0","description":"JavaScript Testing utilities for React","main":"build","scripts":{"prepublish":"not-in-publish || (npm run clean && npm run build && safe-publish-latest)","preversion":"npm run clean && npm run check","postversion":"git push && git push --tags && npm run clean && npm run docs:publish","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","pretest":"npm run lint","test":"npm run clean && npm run build && npm run test:only","test:only":"mocha --recursive test","test:single":"mocha --watch","test:watch":"mocha --recursive --watch test","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":"rimraf node_modules/.bin/npm && npm run react:clean && npm i react@0.13 && npm install","react:14":"rimraf node_modules/.bin/npm && npm run react:clean && npm i react@0.14 react-dom@0.14 react-addons-test-utils@0.14 && npm install","react:15":"rimraf node_modules/.bin/npm && npm run react:clean && npm i react@15 react-dom@15 react-addons-test-utils@15 && npm install","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":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.22.0","function.prototype.name":"^1.0.0","is-subset":"^0.1.1","lodash":"^4.17.2","object-is":"^1.0.1","object.assign":"^4.0.4","object.entries":"^1.0.3","object.values":"^1.0.3","uuid":"^2.0.3"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.18.2","babel-eslint":"^7.1.0","babel-loader":"^6.2.7","babel-preset-airbnb":"^2.1.1","babel-register":"^6.18.0","chai":"^3.5.0","coveralls":"^2.11.15","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.10.2","eslint-config-airbnb":"^13.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.7.1","gitbook-cli":"^1.0.1","in-publish":"^2.0.0","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.2.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.8.0","mocha":"^3.1.2","rimraf":"^2.5.4","safe-publish-latest":"^1.1.1","sinon":"^1.17.6","webpack":"^1.13.3"},"peerDependencies":{"react":"0.13.x || 0.14.x || ^15.0.0-0 || 15.x"},"gitHead":"8ede787270c22dc0d8ea9bd48ba533a3c9ff34e3","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@2.7.0","_shasum":"772477800547ca2514cc0af258e647c166aee899","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.3.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"772477800547ca2514cc0af258e647c166aee899","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-2.7.0.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/enzyme-2.7.0.tgz_1482393522104_0.06946176011115313"},"directories":{}},"2.7.1":{"name":"enzyme","version":"2.7.1","description":"JavaScript Testing utilities for React","main":"build","scripts":{"prepublish":"not-in-publish || (npm run clean && npm run build && safe-publish-latest)","preversion":"npm run clean && npm run check","postversion":"git push && git push --tags && npm run clean && npm run docs:publish","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","pretest":"npm run lint","test":"npm run clean && npm run build && npm run test:only","test:only":"mocha --recursive test","test:single":"mocha --watch","test:watch":"mocha --recursive --watch test","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":"rimraf node_modules/.bin/npm && npm run react:clean && npm i react@0.13 && npm install","react:14":"rimraf node_modules/.bin/npm && npm run react:clean && npm i react@0.14 react-dom@0.14 react-addons-test-utils@0.14 && npm install","react:15":"rimraf node_modules/.bin/npm && npm run react:clean && npm i react@15 react-dom@15 react-addons-test-utils@15 && npm install","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":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.22.0","function.prototype.name":"^1.0.0","is-subset":"^0.1.1","lodash":"^4.17.2","object-is":"^1.0.1","object.assign":"^4.0.4","object.entries":"^1.0.3","object.values":"^1.0.3","uuid":"^2.0.3"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.18.2","babel-eslint":"^7.1.0","babel-loader":"^6.2.7","babel-preset-airbnb":"^2.1.1","babel-register":"^6.18.0","chai":"^3.5.0","coveralls":"^2.11.15","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.10.2","eslint-config-airbnb":"^13.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.7.1","gitbook-cli":"^1.0.1","in-publish":"^2.0.0","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.2.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.8.0","mocha":"^3.1.2","rimraf":"^2.5.4","safe-publish-latest":"^1.1.1","sinon":"^1.17.6","webpack":"^1.13.3"},"peerDependencies":{"react":"0.13.x || 0.14.x || ^15.0.0-0 || 15.x"},"gitHead":"e4be00c4f16e3a072d909eb40ab352b3828d6e15","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@2.7.1","_shasum":"76370e1d99e91f73091bb8c4314b7c128cc2d621","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"76370e1d99e91f73091bb8c4314b7c128cc2d621","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-2.7.1.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/enzyme-2.7.1.tgz_1485125448981_0.4859739213716239"},"directories":{}},"2.8.0":{"name":"enzyme","version":"2.8.0","description":"JavaScript Testing utilities for React","main":"build","scripts":{"prepublish":"not-in-publish || (npm run clean && npm run build && safe-publish-latest)","preversion":"npm run clean && npm run check","postversion":"git push && git push --tags && npm run clean && npm run docs:publish","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","pretest":"npm run lint","test":"npm run clean && npm run build && npm run test:only","test:only":"mocha --recursive test","test:single":"mocha --watch","test:watch":"mocha --recursive --watch test","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":"rimraf node_modules/.bin/npm && npm run react:clean && npm i react@0.13 && npm install","react:14":"rimraf node_modules/.bin/npm && npm run react:clean && npm i react@0.14 react-dom@0.14 react-addons-test-utils@0.14 && npm install","react:15":"rimraf node_modules/.bin/npm && npm run react:clean && npm i react@15 react-dom@15 react-addons-test-utils@15 && npm install","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":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.22.0","function.prototype.name":"^1.0.0","is-subset":"^0.1.1","lodash":"^4.17.2","object-is":"^1.0.1","object.assign":"^4.0.4","object.entries":"^1.0.3","object.values":"^1.0.3","uuid":"^2.0.3"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.18.2","babel-eslint":"^7.1.0","babel-loader":"^6.2.7","babel-preset-airbnb":"^2.1.1","babel-register":"^6.18.0","chai":"^3.5.0","coveralls":"^2.11.15","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.10.2","eslint-config-airbnb":"^13.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.7.1","gitbook-cli":"^1.0.1","in-publish":"^2.0.0","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.2.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.8.0","mocha":"^3.1.2","rimraf":"^2.5.4","safe-publish-latest":"^1.1.1","sinon":"^1.17.6","webpack":"^1.13.3"},"peerDependencies":{"react":"0.13.x || 0.14.x || ^15.0.0-0 || 15.x"},"gitHead":"a4c63a19f8648942b3fca72bf34d863cfa0c6dd9","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@2.8.0","_shasum":"86cc1fc96e5cbd7695766dd6e89deb13a0aead51","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"86cc1fc96e5cbd7695766dd6e89deb13a0aead51","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-2.8.0.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"gdborton","email":"gdborton@gmail.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/enzyme-2.8.0.tgz_1490401348168_0.6510779811069369"},"directories":{}},"2.8.1":{"name":"enzyme","version":"2.8.1","description":"JavaScript Testing utilities for React","main":"build","scripts":{"prepublish":"not-in-publish || (npm run clean && npm run build && safe-publish-latest)","preversion":"npm run clean && npm run check","postversion":"git push && git push --tags && npm run clean && npm run docs:publish","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","pretest":"npm run lint","test":"npm run clean && npm run build && npm run test:only","test:only":"mocha --recursive test","test:single":"mocha --watch","test:watch":"mocha --recursive --watch test","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.4 && 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 node_modules/react-test-renderer","react:13":"rimraf node_modules/.bin/npm && npm run react:clean && npm i react@0.13 && npm install","react:14":"rimraf node_modules/.bin/npm && npm run react:clean && npm i react@0.14 react-dom@0.14 react-addons-test-utils@0.14 && npm install","react:15.4":"rimraf node_modules/.bin/npm && npm run react:clean && npm i react@15.4 react-dom@15.4 react-addons-test-utils@15.4 && npm install","react:15":"rimraf node_modules/.bin/npm && npm run react:clean && npm i react@15 react-dom@15 create-react-class@15 react-test-renderer@^15.5.4 && npm install","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 \"$(which istanbul)\" cover --report html _mocha -- test --recursive"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.22.0","function.prototype.name":"^1.0.0","is-subset":"^0.1.1","lodash":"^4.17.2","object-is":"^1.0.1","object.assign":"^4.0.4","object.entries":"^1.0.3","object.values":"^1.0.3","prop-types":"^15.5.4","uuid":"^2.0.3"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.24.1","babel-eslint":"^7.2.1","babel-loader":"^6.4.1","babel-preset-airbnb":"^2.2.3","babel-register":"^6.24.1","chai":"^3.5.0","coveralls":"^2.13.0","create-react-class":"^15.5.2","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.19.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.10.3","gitbook-cli":"^1.0.1","in-publish":"^2.0.0","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.2.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.8.0","lodash":"^4.17.4","mocha":"^3.1.2","rimraf":"^2.6.1","safe-publish-latest":"^1.1.1","sinon":"^1.17.7","webpack":"^1.13.3"},"peerDependencies":{"react":"0.13.x || 0.14.x || ^15.0.0-0 || 15.x"},"gitHead":"8ab9528668e2b49c769e6fc4879ea710575b7f2f","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@2.8.1","_shasum":"53891a75c8fe4d56582c113b3da45713b8215738","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},"dist":{"shasum":"53891a75c8fe4d56582c113b3da45713b8215738","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-2.8.1.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"gdborton","email":"gdborton@gmail.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/enzyme-2.8.1.tgz_1492015737162_0.04243714571930468"},"directories":{}},"2.8.2":{"name":"enzyme","version":"2.8.2","description":"JavaScript Testing utilities for React","main":"build","scripts":{"prepublish":"not-in-publish || (npm run clean && npm run build && safe-publish-latest)","preversion":"npm run clean && npm run check","postversion":"git push && git push --tags && npm run clean && npm run docs:publish","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","pretest":"npm run lint","test":"npm run clean && npm run build && npm run test:only","test:only":"mocha --recursive test","test:single":"mocha --watch","test:watch":"mocha --recursive --watch test","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.4 && 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 node_modules/react-test-renderer","react:13":"rimraf node_modules/.bin/npm && npm run react:clean && npm i react@0.13 && npm install","react:14":"rimraf node_modules/.bin/npm && npm run react:clean && npm i react@0.14 react-dom@0.14 react-addons-test-utils@0.14 && npm install","react:15.4":"rimraf node_modules/.bin/npm && npm run react:clean && npm i react@15.4 react-dom@15.4 react-addons-test-utils@15.4 && npm install","react:15":"rimraf node_modules/.bin/npm && npm run react:clean && npm i react@15 react-dom@15 create-react-class@15 react-test-renderer@^15.5.4 && npm install","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 \"$(which istanbul)\" cover --report html _mocha -- test --recursive"},"repository":{"type":"git","url":"git+https://github.com/airbnb/enzyme.git"},"keywords":["javascript","shallow rendering","shallowRender","test","reactjs","react","flux","testing","test utils","assertion helpers","tdd","mocha"],"author":{"name":"Leland Richardson","email":"leland.richardson@airbnb.com"},"license":"MIT","dependencies":{"cheerio":"^0.22.0","function.prototype.name":"^1.0.0","is-subset":"^0.1.1","lodash":"^4.17.2","object-is":"^1.0.1","object.assign":"^4.0.4","object.entries":"^1.0.3","object.values":"^1.0.3","prop-types":"^15.5.4","uuid":"^2.0.3"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.24.1","babel-eslint":"^7.2.1","babel-loader":"^6.4.1","babel-preset-airbnb":"^2.2.3","babel-register":"^6.24.1","chai":"^3.5.0","coveralls":"^2.13.0","create-react-class":"^15.5.2","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.19.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.10.3","gitbook-cli":"^1.0.1","in-publish":"^2.0.0","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.2.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.8.0","lodash":"^4.17.4","mocha":"^3.1.2","rimraf":"^2.6.1","safe-publish-latest":"^1.1.1","sinon":"^1.17.7","webpack":"^1.13.3"},"peerDependencies":{"react":"0.13.x || 0.14.x || ^15.0.0-0 || 15.x"},"gitHead":"901b783f8d6d766308fe42500d7be5f507e57d1d","bugs":{"url":"https://github.com/airbnb/enzyme/issues"},"homepage":"https://github.com/airbnb/enzyme#readme","_id":"enzyme@2.8.2","_shasum":"6c8bcb05012abc4aa4bc3213fb23780b9b5b1714","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"6c8bcb05012abc4aa4bc3213fb23780b9b5b1714","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/enzyme/-/enzyme-2.8.2.tgz"},"maintainers":[{"name":"airbnb","email":"jordan.harband+npm@airbnb.com"},{"name":"gdborton","email":"gdborton@gmail.com"},{"name":"intelligibabble","email":"leland.m.richardson@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/enzyme-2.8.2.tgz_1492133952880_0.6612999520730227"},"directories":{}}},"name":"enzyme","time":{"modified":"2017-04-18T00:59:14.280Z","created":"2015-12-06T20:54:10.294Z","1.0.0":"2015-12-06T20:54:10.294Z","1.1.0":"2015-12-07T23:55:56.289Z","1.2.0":"2015-12-10T19:09:29.978Z","1.3.0":"2016-01-14T02:26:53.779Z","1.3.1":"2016-01-15T17:25:32.692Z","2.0.0-rc1":"2016-01-19T02:06:25.689Z","1.4.0":"2016-01-21T17:10:47.864Z","1.4.1":"2016-01-24T18:45:14.173Z","1.5.0":"2016-02-02T22:11:29.076Z","1.6.0":"2016-02-10T23:53:07.198Z","2.0.0":"2016-02-11T00:53:29.923Z","2.1.0":"2016-03-09T20:37:43.659Z","2.2.0":"2016-03-21T17:26:32.864Z","2.3.0":"2016-05-10T01:27:17.263Z","2.4.0":"2016-07-08T05:28:12.048Z","2.4.1":"2016-07-08T17:54:10.923Z","2.5.0":"2016-10-17T16:09:01.444Z","2.5.1":"2016-10-17T19:19:42.154Z","2.4.2":"2016-11-10T02:59:41.901Z","2.5.2":"2016-11-10T03:00:08.231Z","2.6.0":"2016-11-10T03:01:06.359Z","2.7.0":"2016-12-22T07:58:44.262Z","2.7.1":"2017-01-22T22:50:49.232Z","2.8.0":"2017-03-25T00:22:30.199Z","2.8.1":"2017-04-12T16:48:59.231Z","2.8.2":"2017-04-14T01:39:15.337Z"},"readmeFilename":"README.md","homepage":"https://github.com/airbnb/enzyme#readme"}