{
	"name": "enzyme",
	"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": "https://registry.npmjs.org/enzyme/-/enzyme-1.0.0.tgz"
			},
			"maintainers": [
				{
					"name": "intelligibabble",
					"email": "leland.m.richardson@gmail.com"
				}
			],
			"directories": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"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": "https://registry.npmjs.org/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": {},
			"contributors": []
		},
		"2.9.0": {
			"name": "enzyme",
			"version": "2.9.0",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"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",
				"prelint": "npm run docs:lint",
				"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",
				"clean-local-npm": "rimraf node_modules/.bin/npm node_modules/.bin/npm.cmd",
				"react:clean": "npm run clean-local-npm && rimraf node_modules/react node_modules/react-dom node_modules/react-addons-test-utils node_modules/react-test-renderer && npm prune",
				"react:13": "npm run react:clean && npm install && npm i --no-save react@0.13",
				"react:14": "npm run react:clean && npm install && npm i --no-save react@0.14 react-dom@0.14 react-addons-test-utils@0.14",
				"react:15.4": "npm run react:clean && npm install && npm i --no-save react@15.4 react-dom@15.4 react-addons-test-utils@15.4",
				"react:15": "npm run react:clean && npm install && npm i --no-save react@15 react-dom@15 create-react-class@15 react-test-renderer@^15.5.4",
				"docs:clean": "rimraf _book",
				"docs:lint": "eslint --ext md --config .eslintrc-markdown .",
				"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.4",
				"object-is": "^1.0.1",
				"object.assign": "^4.0.4",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"prop-types": "^15.5.10",
				"uuid": "^3.0.0"
			},
			"devDependencies": {
				"babel-cli": "^6.24.1",
				"babel-core": "^6.25.0",
				"babel-eslint": "^7.2.3",
				"babel-loader": "^6.4.1",
				"babel-plugin-transform-replace-object-assign": "^0.2.1",
				"babel-preset-airbnb": "^2.3.3",
				"babel-register": "^6.24.1",
				"chai": "^4.0.2",
				"coveralls": "^2.13.1",
				"create-react-class": "^15.6.0",
				"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": "^15.0.1",
				"eslint-plugin-import": "^2.3.0",
				"eslint-plugin-jsx-a11y": "^5.0.3",
				"eslint-plugin-markdown": "^1.0.0-beta.6",
				"eslint-plugin-react": "^7.0.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.1",
				"karma-mocha": "^1.3.0",
				"karma-sourcemap-loader": "^0.3.7",
				"karma-webpack": "^1.8.1",
				"mocha": "^3.4.2",
				"rimraf": "^2.6.1",
				"safe-publish-latest": "^1.1.1",
				"sinon": "^2.3.5",
				"webpack": "^1.13.3"
			},
			"peerDependencies": {
				"react": "0.13.x || 0.14.x || ^15.0.0-0 || 15.x"
			},
			"gitHead": "4ab06c2b62da203441ee54405917c284a87d92bb",
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@2.9.0",
			"_shasum": "f0466188cf92b41da88d7db56c47dea320be4fe3",
			"_from": ".",
			"_npmVersion": "3.10.10",
			"_nodeVersion": "6.11.0",
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"dist": {
				"shasum": "f0466188cf92b41da88d7db56c47dea320be4fe3",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-2.9.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": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme-2.9.0.tgz_1498120288346_0.7614263235591352"
			},
			"directories": {},
			"contributors": []
		},
		"2.9.1": {
			"name": "enzyme",
			"version": "2.9.1",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"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",
				"prelint": "npm run docs:lint",
				"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",
				"clean-local-npm": "rimraf node_modules/.bin/npm node_modules/.bin/npm.cmd",
				"react:clean": "npm run clean-local-npm && rimraf node_modules/react node_modules/react-dom node_modules/react-addons-test-utils node_modules/react-test-renderer && npm prune",
				"react:13": "npm run react:clean && npm install && npm i --no-save react@0.13",
				"react:14": "npm run react:clean && npm install && npm i --no-save react@0.14 react-dom@0.14 react-addons-test-utils@0.14",
				"react:15.4": "npm run react:clean && npm install && npm i --no-save react@15.4 react-dom@15.4 react-addons-test-utils@15.4",
				"react:15": "npm run react:clean && npm install && npm i --no-save react@15 react-dom@15 create-react-class@15 react-test-renderer@^15.5.4",
				"docs:clean": "rimraf _book",
				"docs:lint": "eslint --ext md --config .eslintrc-markdown .",
				"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.4",
				"object-is": "^1.0.1",
				"object.assign": "^4.0.4",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"prop-types": "^15.5.10",
				"uuid": "^3.0.1"
			},
			"devDependencies": {
				"babel-cli": "^6.24.1",
				"babel-core": "^6.25.0",
				"babel-eslint": "^7.2.3",
				"babel-loader": "^6.4.1",
				"babel-plugin-transform-replace-object-assign": "^0.2.1",
				"babel-preset-airbnb": "^2.3.3",
				"babel-register": "^6.24.1",
				"chai": "^4.0.2",
				"coveralls": "^2.13.1",
				"create-react-class": "^15.6.0",
				"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": "^15.0.1",
				"eslint-plugin-import": "^2.6.0",
				"eslint-plugin-jsx-a11y": "^5.0.3",
				"eslint-plugin-markdown": "^1.0.0-beta.6",
				"eslint-plugin-react": "^7.1.0",
				"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.1",
				"karma-mocha": "^1.3.0",
				"karma-sourcemap-loader": "^0.3.7",
				"karma-webpack": "^1.8.1",
				"mocha": "^3.4.2",
				"rimraf": "^2.6.1",
				"safe-publish-latest": "^1.1.1",
				"sinon": "^2.3.5",
				"webpack": "^1.13.3",
				"react": "0.13.x || 0.14.x || ^15.0.0-0 || 15.x"
			},
			"peerDependencies": {
				"react": "0.13.x || 0.14.x || ^15.0.0-0 || 15.x"
			},
			"gitHead": "d37a8c1f70d89ded1448ff45bebe7f9216c943a9",
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@2.9.1",
			"_shasum": "07d5ce691241240fb817bf2c4b18d6e530240df6",
			"_from": ".",
			"_npmVersion": "3.10.10",
			"_nodeVersion": "6.11.0",
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"dist": {
				"shasum": "07d5ce691241240fb817bf2c4b18d6e530240df6",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-2.9.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": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme-2.9.1.tgz_1498286883566_0.22907638968899846"
			},
			"directories": {},
			"contributors": []
		},
		"3.0.0-alpha.1": {
			"name": "enzyme",
			"version": "3.0.0-alpha.1",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"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",
				"prelint": "npm run docs:lint",
				"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 && npm run react:16 && npm run test:only",
				"clean-local-npm": "rimraf node_modules/.bin/npm node_modules/.bin/npm.cmd",
				"react:clean": "npm run clean-local-npm && rimraf node_modules/react node_modules/react-dom node_modules/react-addons-test-utils node_modules/react-test-renderer && npm prune",
				"react:13": "npm run react:clean && npm install && npm i --no-save react@0.13",
				"react:14": "npm run react:clean && npm install && npm i --no-save react@0.14 react-dom@0.14 react-addons-test-utils@0.14",
				"react:15.4": "npm run react:clean && npm install && npm i --no-save react@15.4 react-dom@15.4 react-addons-test-utils@15.4",
				"react:15": "npm run react:clean && npm install && npm i --no-save react@15 react-dom@15 create-react-class@15 react-test-renderer@^15.5.4",
				"react:16": "npm run react:clean && npm install && npm i --no-save react@16.0.0-alpha.13 react-dom@16.0.0-alpha.13 create-react-class@15.6.0 react-test-renderer@16.0.0-alpha.13",
				"docs:clean": "rimraf _book",
				"docs:lint": "eslint --ext md --config .eslintrc-markdown .",
				"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.4",
				"object-is": "^1.0.1",
				"object.assign": "^4.0.4",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"prop-types": "^15.5.10",
				"raf": "^3.3.2",
				"semver": "^5.3.0",
				"uuid": "^3.0.1"
			},
			"devDependencies": {
				"babel-cli": "^6.24.1",
				"babel-core": "^6.25.0",
				"babel-eslint": "^7.2.3",
				"babel-loader": "^6.4.1",
				"babel-plugin-transform-replace-object-assign": "^0.2.1",
				"babel-preset-airbnb": "^2.3.3",
				"babel-register": "^6.24.1",
				"chai": "^4.0.2",
				"coveralls": "^2.13.1",
				"create-react-class": "^15.6.0",
				"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": "^15.0.1",
				"eslint-plugin-import": "^2.6.0",
				"eslint-plugin-jsx-a11y": "^5.0.3",
				"eslint-plugin-markdown": "^1.0.0-beta.6",
				"eslint-plugin-react": "^7.1.0",
				"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.1",
				"karma-mocha": "^1.3.0",
				"karma-sourcemap-loader": "^0.3.7",
				"karma-webpack": "^1.8.1",
				"lodash": "^4.17.4",
				"mocha": "^3.4.2",
				"rimraf": "^2.6.1",
				"safe-publish-latest": "^1.1.1",
				"sinon": "^2.3.5",
				"webpack": "^1.13.3",
				"react": "0.13.x || 0.14.x || ^15.0.0-0 || 15.x"
			},
			"peerDependencies": {
				"react": "0.13.x || 0.14.x || ^15.0.0-0 || 15.x || 16.x || ^16.0.0-alpha"
			},
			"gitHead": "820f713ceb24617846ca5a2bfb4658ee46154da8",
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.0.0-alpha.1",
			"_shasum": "1e6fab98fe303242a9e6689a0f7c776feed828da",
			"_from": ".",
			"_npmVersion": "3.10.8",
			"_nodeVersion": "6.9.1",
			"_npmUser": {
				"name": "intelligibabble",
				"email": "leland.m.richardson@gmail.com"
			},
			"dist": {
				"shasum": "1e6fab98fe303242a9e6689a0f7c776feed828da",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0-alpha.1.tgz"
			},
			"maintainers": [
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				},
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				}
			],
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme-3.0.0-alpha.1.tgz_1500236870461_0.9584577279165387"
			},
			"directories": {},
			"contributors": []
		},
		"3.0.0-beta.1": {
			"name": "enzyme",
			"version": "3.0.0-beta.1",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx src test",
				"build": "babel src --out-dir build",
				"watch": "babel src --out-dir build -w"
			},
			"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": "^1.0.0-rc.2",
				"function.prototype.name": "^1.0.3",
				"is-subset": "^0.1.1",
				"lodash": "^4.17.4",
				"object-is": "^1.0.1",
				"object.assign": "^4.0.4",
				"object.entries": "^1.0.4",
				"raf": "^3.3.2",
				"rst-selector-parser": "^2.2.0"
			},
			"devDependencies": {
				"babel-cli": "^6.24.1",
				"eslint": "^4.4.1",
				"in-publish": "^2.0.0",
				"rimraf": "^2.6.1"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.0.0-beta.1",
			"_shasum": "3d28e897e75ad935c122df93f87705ab011d71d2",
			"_from": ".",
			"_npmVersion": "3.10.10",
			"_nodeVersion": "6.11.2",
			"_npmUser": {
				"name": "intelligibabble",
				"email": "leland.m.richardson@gmail.com"
			},
			"dist": {
				"shasum": "3d28e897e75ad935c122df93f87705ab011d71d2",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0-beta.1.tgz"
			},
			"maintainers": [
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				},
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				}
			],
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme-3.0.0-beta.1.tgz_1505581488924_0.6140394625253975"
			},
			"directories": {},
			"contributors": []
		},
		"3.0.0-beta.2": {
			"name": "enzyme",
			"version": "3.0.0-beta.2",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx src test",
				"build": "babel src --out-dir build",
				"watch": "babel src --out-dir build -w"
			},
			"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": "^1.0.0-rc.2",
				"function.prototype.name": "^1.0.3",
				"is-subset": "^0.1.1",
				"lodash": "^4.17.4",
				"object-is": "^1.0.1",
				"object.assign": "^4.0.4",
				"object.entries": "^1.0.4",
				"raf": "^3.3.2",
				"rst-selector-parser": "^2.2.0"
			},
			"devDependencies": {
				"babel-cli": "^6.24.1",
				"eslint": "^4.4.1",
				"in-publish": "^2.0.0",
				"rimraf": "^2.6.1"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.0.0-beta.2",
			"_shasum": "35029441bba50982c0aa03a1c88afd5676a950a4",
			"_from": ".",
			"_npmVersion": "3.10.10",
			"_nodeVersion": "6.11.2",
			"_npmUser": {
				"name": "intelligibabble",
				"email": "leland.m.richardson@gmail.com"
			},
			"dist": {
				"shasum": "35029441bba50982c0aa03a1c88afd5676a950a4",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0-beta.2.tgz"
			},
			"maintainers": [
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				},
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				}
			],
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme-3.0.0-beta.2.tgz_1505582163288_0.7577111024875194"
			},
			"directories": {},
			"contributors": []
		},
		"3.0.0-beta.3": {
			"name": "enzyme",
			"version": "3.0.0-beta.3",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx src test",
				"build": "babel src --out-dir build",
				"watch": "babel src --out-dir build -w"
			},
			"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": "^1.0.0-rc.2",
				"function.prototype.name": "^1.0.3",
				"is-subset": "^0.1.1",
				"lodash": "^4.17.4",
				"object-is": "^1.0.1",
				"object.assign": "^4.0.4",
				"object.entries": "^1.0.4",
				"raf": "^3.3.2",
				"rst-selector-parser": "^2.2.0"
			},
			"devDependencies": {
				"babel-cli": "^6.24.1",
				"eslint": "^4.4.1",
				"in-publish": "^2.0.0",
				"rimraf": "^2.6.1"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.0.0-beta.3",
			"_shasum": "9de5be16dcd52de0940c9c2e6bc764cd501c1f13",
			"_from": ".",
			"_npmVersion": "3.10.10",
			"_nodeVersion": "6.11.2",
			"_npmUser": {
				"name": "intelligibabble",
				"email": "leland.m.richardson@gmail.com"
			},
			"dist": {
				"shasum": "9de5be16dcd52de0940c9c2e6bc764cd501c1f13",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0-beta.3.tgz"
			},
			"maintainers": [
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				},
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				}
			],
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme-3.0.0-beta.3.tgz_1505590790353_0.7988394715357572"
			},
			"directories": {},
			"contributors": []
		},
		"3.0.0-beta.4": {
			"name": "enzyme",
			"version": "3.0.0-beta.4",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx src test",
				"build": "babel src --out-dir build",
				"watch": "babel src --out-dir build -w"
			},
			"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": "^1.0.0-rc.2",
				"function.prototype.name": "^1.0.3",
				"is-subset": "^0.1.1",
				"lodash": "^4.17.4",
				"object-is": "^1.0.1",
				"object.assign": "^4.0.4",
				"object.entries": "^1.0.4",
				"raf": "^3.3.2",
				"rst-selector-parser": "^2.2.1"
			},
			"devDependencies": {
				"babel-cli": "^6.24.1",
				"eslint": "^4.4.1",
				"in-publish": "^2.0.0",
				"rimraf": "^2.6.1"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.0.0-beta.4",
			"_shasum": "2f83601002f77637c9bc657eef3ead12679a4366",
			"_from": ".",
			"_npmVersion": "3.10.10",
			"_nodeVersion": "6.11.2",
			"_npmUser": {
				"name": "intelligibabble",
				"email": "leland.m.richardson@gmail.com"
			},
			"dist": {
				"shasum": "2f83601002f77637c9bc657eef3ead12679a4366",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0-beta.4.tgz"
			},
			"maintainers": [
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				},
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				}
			],
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme-3.0.0-beta.4.tgz_1505669209653_0.4944103572051972"
			},
			"directories": {},
			"contributors": []
		},
		"3.0.0-beta.5": {
			"name": "enzyme",
			"version": "3.0.0-beta.5",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx src test",
				"build": "babel src --out-dir build",
				"watch": "babel src --out-dir build -w"
			},
			"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": "^1.0.0-rc.2",
				"function.prototype.name": "^1.0.3",
				"is-subset": "^0.1.1",
				"lodash": "^4.17.4",
				"object-is": "^1.0.1",
				"object.assign": "^4.0.4",
				"object.entries": "^1.0.4",
				"raf": "^3.3.2",
				"rst-selector-parser": "^2.2.1"
			},
			"devDependencies": {
				"babel-cli": "^6.24.1",
				"eslint": "^4.4.1",
				"in-publish": "^2.0.0",
				"rimraf": "^2.6.1"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.0.0-beta.5",
			"_shasum": "53aa65a85e251ea89fa2d0ba7b120010d90229ff",
			"_from": ".",
			"_npmVersion": "3.10.10",
			"_nodeVersion": "6.11.2",
			"_npmUser": {
				"name": "intelligibabble",
				"email": "leland.m.richardson@gmail.com"
			},
			"dist": {
				"shasum": "53aa65a85e251ea89fa2d0ba7b120010d90229ff",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0-beta.5.tgz"
			},
			"maintainers": [
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				},
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				}
			],
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme-3.0.0-beta.5.tgz_1505695165869_0.737785788718611"
			},
			"directories": {},
			"contributors": []
		},
		"3.0.0-beta.6": {
			"name": "enzyme",
			"version": "3.0.0-beta.6",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx src test",
				"build": "babel src --out-dir build",
				"watch": "babel src --out-dir build -w"
			},
			"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": "^1.0.0-rc.2",
				"function.prototype.name": "^1.0.3",
				"is-subset": "^0.1.1",
				"lodash": "^4.17.4",
				"object-is": "^1.0.1",
				"object.assign": "^4.0.4",
				"object.entries": "^1.0.4",
				"raf": "^3.3.2",
				"rst-selector-parser": "^2.2.1"
			},
			"devDependencies": {
				"babel-cli": "^6.24.1",
				"eslint": "^4.4.1",
				"in-publish": "^2.0.0",
				"rimraf": "^2.6.1"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.0.0-beta.6",
			"_shasum": "6f4f60d8e2104fc6637fa01d9b4d6e9f42eca8e1",
			"_from": ".",
			"_npmVersion": "3.10.10",
			"_nodeVersion": "6.11.2",
			"_npmUser": {
				"name": "intelligibabble",
				"email": "leland.m.richardson@gmail.com"
			},
			"dist": {
				"shasum": "6f4f60d8e2104fc6637fa01d9b4d6e9f42eca8e1",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0-beta.6.tgz"
			},
			"maintainers": [
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				},
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				}
			],
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme-3.0.0-beta.6.tgz_1505846018428_0.46595251094549894"
			},
			"directories": {},
			"contributors": []
		},
		"3.0.0-beta.7": {
			"name": "enzyme",
			"version": "3.0.0-beta.7",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx src test",
				"build": "babel src --out-dir build",
				"watch": "babel src --out-dir build -w"
			},
			"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": "^1.0.0-rc.2",
				"function.prototype.name": "^1.0.3",
				"is-subset": "^0.1.1",
				"lodash": "^4.17.4",
				"object-is": "^1.0.1",
				"object.assign": "^4.0.4",
				"object.entries": "^1.0.4",
				"raf": "^3.3.2",
				"rst-selector-parser": "^2.2.1"
			},
			"devDependencies": {
				"babel-cli": "^6.24.1",
				"eslint": "^4.4.1",
				"in-publish": "^2.0.0",
				"rimraf": "^2.6.1"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.0.0-beta.7",
			"_shasum": "4931d3c790191d335013e25d49d08ae3ec9b31fd",
			"_from": ".",
			"_npmVersion": "3.10.10",
			"_nodeVersion": "6.11.2",
			"_npmUser": {
				"name": "intelligibabble",
				"email": "leland.m.richardson@gmail.com"
			},
			"dist": {
				"shasum": "4931d3c790191d335013e25d49d08ae3ec9b31fd",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0-beta.7.tgz"
			},
			"maintainers": [
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				},
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				}
			],
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme-3.0.0-beta.7.tgz_1506366784972_0.4144011188764125"
			},
			"directories": {},
			"contributors": []
		},
		"3.0.0": {
			"name": "enzyme",
			"version": "3.0.0",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx src test",
				"build": "babel src --out-dir build",
				"watch": "babel src --out-dir build -w"
			},
			"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": "^1.0.0-rc.2",
				"function.prototype.name": "^1.0.3",
				"is-subset": "^0.1.1",
				"lodash": "^4.17.4",
				"object-is": "^1.0.1",
				"object.assign": "^4.0.4",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"raf": "^3.3.2",
				"rst-selector-parser": "^2.2.1"
			},
			"devDependencies": {
				"babel-cli": "^6.24.1",
				"eslint": "^4.4.1",
				"in-publish": "^2.0.0",
				"rimraf": "^2.6.1"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.0.0",
			"_shasum": "94ce364254dc654c4e619b25eecc644bf6481de7",
			"_from": ".",
			"_npmVersion": "3.10.10",
			"_nodeVersion": "6.11.2",
			"_npmUser": {
				"name": "intelligibabble",
				"email": "leland.m.richardson@gmail.com"
			},
			"dist": {
				"shasum": "94ce364254dc654c4e619b25eecc644bf6481de7",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0.tgz"
			},
			"maintainers": [
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				},
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				}
			],
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme-3.0.0.tgz_1506410429792_0.43366109440103173"
			},
			"directories": {},
			"contributors": []
		},
		"3.1.0": {
			"name": "enzyme",
			"version": "3.1.0",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx src test",
				"build": "babel src --out-dir build",
				"watch": "babel src --out-dir build -w"
			},
			"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": "^1.0.0-rc.2",
				"function.prototype.name": "^1.0.3",
				"is-subset": "^0.1.1",
				"lodash": "^4.17.4",
				"object-is": "^1.0.1",
				"object.assign": "^4.0.4",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"raf": "^3.3.2",
				"rst-selector-parser": "^2.2.2"
			},
			"devDependencies": {
				"babel-cli": "^6.24.1",
				"eslint": "^4.4.1",
				"in-publish": "^2.0.0",
				"rimraf": "^2.6.1"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.1.0",
			"_shasum": "d8ca84085790fbcec6ed40badd14478faee4c25a",
			"_from": ".",
			"_npmVersion": "3.10.10",
			"_nodeVersion": "6.11.2",
			"_npmUser": {
				"name": "intelligibabble",
				"email": "leland.m.richardson@gmail.com"
			},
			"dist": {
				"shasum": "d8ca84085790fbcec6ed40badd14478faee4c25a",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.1.0.tgz"
			},
			"maintainers": [
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				},
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				}
			],
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme-3.1.0.tgz_1507009301399_0.36302367434836924"
			},
			"directories": {},
			"contributors": []
		},
		"3.1.1": {
			"name": "enzyme",
			"version": "3.1.1",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx .",
				"pretest": "npm run lint",
				"prebuild": "npm run clean",
				"build": "babel src --out-dir build",
				"watch": "npm run build -- -w",
				"prepublish": "npm run build && safe-publish-latest"
			},
			"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": "^1.0.0-rc.2",
				"function.prototype.name": "^1.0.3",
				"is-subset": "^0.1.1",
				"lodash": "^4.17.4",
				"object-is": "^1.0.1",
				"object.assign": "^4.0.4",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"raf": "^3.3.2",
				"rst-selector-parser": "^2.2.3"
			},
			"devDependencies": {
				"babel-cli": "^6.26.0",
				"eslint": "^4.10.0",
				"eslint-config-airbnb": "^16.1.0",
				"eslint-plugin-import": "^2.8.0",
				"eslint-plugin-jsx-a11y": "^6.0.2",
				"eslint-plugin-react": "^7.4.0",
				"in-publish": "^2.0.0",
				"rimraf": "^2.6.2",
				"safe-publish-latest": "^1.1.1"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.1.1",
			"_npmVersion": "5.5.1",
			"_nodeVersion": "9.0.0",
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"dist": {
				"integrity": "sha512-+Lj90HE3c6Jgtpha3kYfB/mTdD1GNWqSh7q8AcA8d+/CRJojRT+3yABHqKpfRx71qeEACjuvXU3Eu5UP//p/mA==",
				"shasum": "c6948dfccd055d75fbd8627ad1c96a024d0e247b",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.1.1.tgz"
			},
			"maintainers": [
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				},
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				}
			],
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme-3.1.1.tgz_1509866825949_0.519568890100345"
			},
			"directories": {},
			"contributors": []
		},
		"3.2.0": {
			"name": "enzyme",
			"version": "3.2.0",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx .",
				"pretest": "npm run lint",
				"prebuild": "npm run clean",
				"build": "babel src --out-dir build",
				"watch": "npm run build -- -w",
				"prepublish": "npm run build && safe-publish-latest"
			},
			"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": "^1.0.0-rc.2",
				"function.prototype.name": "^1.0.3",
				"has": "^1.0.1",
				"is-subset": "^0.1.1",
				"lodash": "^4.17.4",
				"object-is": "^1.0.1",
				"object.assign": "^4.0.4",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"raf": "^3.4.0",
				"rst-selector-parser": "^2.2.3"
			},
			"devDependencies": {
				"babel-cli": "^6.26.0",
				"eslint": "^4.11.0",
				"eslint-config-airbnb": "^16.1.0",
				"eslint-plugin-import": "^2.8.0",
				"eslint-plugin-jsx-a11y": "^6.0.2",
				"eslint-plugin-react": "^7.4.0",
				"in-publish": "^2.0.0",
				"rimraf": "^2.6.2",
				"safe-publish-latest": "^1.1.1"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.2.0",
			"_npmVersion": "5.5.1",
			"_nodeVersion": "9.2.0",
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"dist": {
				"integrity": "sha512-l0HcjycivXjB4IXkwuRc1K5z8hzWIVZB2b/Y/H2bao9eFTpBz4ACOwAQf44SgG5Nu3d1jF41LasxDgFWZeeysA==",
				"shasum": "998bdcda0fc71b8764a0017f7cc692c943f54a7a",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.2.0.tgz"
			},
			"maintainers": [
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				},
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				}
			],
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme-3.2.0.tgz_1510734045782_0.6290159511845559"
			},
			"directories": {},
			"contributors": []
		},
		"3.3.0": {
			"name": "enzyme",
			"version": "3.3.0",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx .",
				"pretest": "npm run lint",
				"prebuild": "npm run clean",
				"build": "babel src --out-dir build",
				"watch": "npm run build -- -w",
				"prepublish": "npm run build && safe-publish-latest"
			},
			"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": "^1.0.0-rc.2",
				"function.prototype.name": "^1.0.3",
				"has": "^1.0.1",
				"is-boolean-object": "^1.0.0",
				"is-callable": "^1.1.3",
				"is-number-object": "^1.0.3",
				"is-string": "^1.0.4",
				"is-subset": "^0.1.1",
				"lodash": "^4.17.4",
				"object-inspect": "^1.5.0",
				"object-is": "^1.0.1",
				"object.assign": "^4.1.0",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"raf": "^3.4.0",
				"rst-selector-parser": "^2.2.3"
			},
			"devDependencies": {
				"babel-cli": "^6.26.0",
				"eslint": "^4.14.0",
				"eslint-config-airbnb": "^16.1.0",
				"eslint-plugin-import": "^2.8.0",
				"eslint-plugin-jsx-a11y": "^6.0.3",
				"eslint-plugin-react": "^7.5.1",
				"in-publish": "^2.0.0",
				"jsdom": "^6.5.1",
				"rimraf": "^2.6.2",
				"safe-publish-latest": "^1.1.1"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.3.0",
			"_npmVersion": "5.5.1",
			"_nodeVersion": "9.3.0",
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"dist": {
				"integrity": "sha512-l8csyPyLmtxskTz6pX9W8eDOyH1ckEtDttXk/vlFWCjv00SkjTjtoUrogqp4yEvMyneU9dUJoOLnqFoiHb8IHA==",
				"shasum": "0971abd167f2d4bf3f5bd508229e1c4b6dc50479",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.3.0.tgz"
			},
			"maintainers": [
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				},
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				}
			],
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme-3.3.0.tgz_1514500984320_0.41755505418404937"
			},
			"directories": {},
			"contributors": []
		},
		"3.4.0": {
			"name": "enzyme",
			"version": "3.4.0",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx .",
				"pretest": "npm run lint",
				"prebuild": "npm run clean",
				"build": "babel src --out-dir build",
				"watch": "npm run build -- -w",
				"prepublish": "npm run build && safe-publish-latest && (not-in-publish || cp ../../{LICENSE,README}.md ./)"
			},
			"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": {
				"array.prototype.flat": "^1.2.1",
				"cheerio": "^1.0.0-rc.2",
				"function.prototype.name": "^1.1.0",
				"has": "^1.0.3",
				"is-boolean-object": "^1.0.0",
				"is-callable": "^1.1.4",
				"is-number-object": "^1.0.3",
				"is-string": "^1.0.4",
				"is-subset": "^0.1.1",
				"lodash": "^4.17.4",
				"object-inspect": "^1.6.0",
				"object-is": "^1.0.1",
				"object.assign": "^4.1.0",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"raf": "^3.4.0",
				"rst-selector-parser": "^2.2.3"
			},
			"devDependencies": {
				"babel-cli": "^6.26.0",
				"babel-plugin-transform-replace-object-assign": "^1.0.0",
				"babel-preset-airbnb": "^2.5.3",
				"eslint": "^4.19.1",
				"eslint-config-airbnb": "^17.0.0",
				"eslint-plugin-import": "^2.13.0",
				"eslint-plugin-jsx-a11y": "^6.1.1",
				"eslint-plugin-react": "^7.10.0",
				"in-publish": "^2.0.0",
				"jsdom": "^6.5.1",
				"rimraf": "^2.6.2",
				"safe-publish-latest": "^1.1.2"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.4.0",
			"_npmVersion": "6.2.0",
			"_nodeVersion": "10.8.0",
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"dist": {
				"integrity": "sha512-WWmNC5JmHtA5SctwJ7nyDidyyfo8WoHI0T116iKHkXaElQKdsaCzz5I/wIT66g3yXRCgL/74LsQ3XAotkjFXPg==",
				"shasum": "085c66fe647d8c9c4becd1fee3042c040cda88a6",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.4.0.tgz",
				"fileCount": 38,
				"unpackedSize": 277789,
				"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaoKQCRA9TVsSAnZWagAAsV0P/39vCbGFDNfcYOCISepE\nLQdFFw0ZITBBAMq0G2LUx5ZYSTosvpQ8Rx8G/KYWxcorj60fff2KAL2Fgf/U\n5fn3CWSqwg5hlF+b8iUL/PAFzQa0bU48kcQe0rSmx5kKVfFSTsvwelow69oF\nCQY4ZxN/UOjq0fKxuBA4PEx2qZieLDAQ0LH9cbZKWyABreJyrd8C+TZovoO6\n5JV/jHoHae6tFwFwUCQnbZm0DCS4bgUIVSEikwQBR8RktAx7pm5YyK+Bfl9e\nsVsI69abFbkraYLarPZX1AuuZZJDKhyYo+8Q0K9voMC3dZ4JDFWu3/al5Nht\nM8c/cQXrTEj1yXOr3H825eLezsYTuPy7JAnJcCwTPkAaspXL/5oHNxPG3b0m\no3by6A2WJzuTfsW4PN1FfRthtSHpKpKsxnruSWTay9Hat33/LxihJfgEnMt9\n/eTNEBHJs1xcs4Jkbms9EgGWEyX36TC+ykBsOVVzVcphAmhVQZi9Avu+upit\njkFPtczMktlANpg5IILLKI9MgemAMDbUHqyqlzfJAOCVVa6FVbGZOsH/OMYu\nnW6yn+BETVQT8+RgEhU8xTDU9KM1ScqZZTg7osG4Y/4Et4Crk/h7FVMS/9t3\n5TkSXh+guiCrH36zJxmrYBOr77VJ8VuyXN63EHZv9uHZooCW0GcLZ2p2qay5\n4xwK\r\n=MerO\r\n-----END PGP SIGNATURE-----\r\n"
			},
			"maintainers": [
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				}
			],
			"directories": {},
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme_3.4.0_1533706896575_0.7462364565791524"
			},
			"_hasShrinkwrap": false,
			"contributors": []
		},
		"3.4.1": {
			"name": "enzyme",
			"version": "3.4.1",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx .",
				"pretest": "npm run lint",
				"prebuild": "npm run clean",
				"build": "babel src --out-dir build",
				"watch": "npm run build -- -w",
				"prepublish": "npm run build && safe-publish-latest && (not-in-publish || cp ../../{LICENSE,README}.md ./)"
			},
			"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": {
				"array.prototype.flat": "^1.2.1",
				"cheerio": "^1.0.0-rc.2",
				"function.prototype.name": "^1.1.0",
				"has": "^1.0.3",
				"is-boolean-object": "^1.0.0",
				"is-callable": "^1.1.4",
				"is-number-object": "^1.0.3",
				"is-string": "^1.0.4",
				"is-subset": "^0.1.1",
				"lodash": "^4.17.4",
				"object-inspect": "^1.6.0",
				"object-is": "^1.0.1",
				"object.assign": "^4.1.0",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"raf": "^3.4.0",
				"rst-selector-parser": "^2.2.3"
			},
			"devDependencies": {
				"babel-cli": "^6.26.0",
				"babel-plugin-transform-replace-object-assign": "^1.0.0",
				"babel-preset-airbnb": "^2.5.3",
				"eslint": "^4.19.1",
				"eslint-config-airbnb": "^17.0.0",
				"eslint-plugin-import": "^2.13.0",
				"eslint-plugin-jsx-a11y": "^6.1.1",
				"eslint-plugin-react": "^7.10.0",
				"in-publish": "^2.0.0",
				"jsdom": "^6.5.1",
				"rimraf": "^2.6.2",
				"safe-publish-latest": "^1.1.2"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.4.1",
			"_npmVersion": "6.2.0",
			"_nodeVersion": "10.8.0",
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"dist": {
				"integrity": "sha512-XBZbyUy36WipNSBVZKIR1sg9iF6zXfkfDEzwTc10T9zhB61UPnMo+c3WE17T/jyhfmPJOz6X073NXXsR7G/1rA==",
				"shasum": "d305af5bdb30b8aca56d199110421588c670ea0e",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.4.1.tgz",
				"fileCount": 38,
				"unpackedSize": 277917,
				"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJba4PeCRA9TVsSAnZWagAAeXkP/3/QbM1Mlrs5m7A9PqLU\nMehAYB5ULwy7RLd4eYusV134dzlAB0b7Hb5M9xwo/LaDioDv+Jirm+oBYrwc\nOthsJUKyjgzCFtWqfYJdddNdSVA0EHat4GafzE7VBi1rJtZnMDFAyQV19Ypb\ntmHGlF2Kp+WK09HWR1rLhaj328LK0MCR90lEwj9iNBI+cBT8PYqGtTLAnNME\nV7PdPCPgnOIF8QbJhEr3IaxfTtIGklVsozuMYV3J0usTJSaoecfqnAv3KIYQ\nxOar9rJ8gly+44fKCgHWmvVn6VwTsn4XMFRRsHRvEIeVrF+MS6+KkmwxQdy6\ndtaxAG7TZYqKzqNIK6W/PDNLAzXHFQypoj9LZVcQWO8HMgcfQ9keSE9kuzpO\nR1lYp8RmOcD/imPuTEP4EcW0Xh0BN7l3ks8vepnQQ3EgirMY0dS0burIhCxW\nIQbf+Vo6zM4YGLuuO36jUvUKyPyv4654gjQO6UJOaWJHkFSc6D1ORcZz0BlE\nRslczEuf+6t7s/PrQaOkAce75Syo3Yfvj6+DGylUCNNucRVdajJKk8Lx9VBM\nlct8KckRx02Rl+01/sqYNxu6UhxlIIz2TUE9ik9sYmNc8BAyq5RnIhjL7fye\nRjc5ujxkDFLs6ggYDeX+zxnUqjB1LcPGNpxDAI5xuYOYuQ2Bq/a58vDreywY\n4zLr\r\n=vz88\r\n-----END PGP SIGNATURE-----\r\n"
			},
			"maintainers": [
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				}
			],
			"directories": {},
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme_3.4.1_1533772765475_0.2405340194420067"
			},
			"_hasShrinkwrap": false,
			"contributors": []
		},
		"3.4.2": {
			"name": "enzyme",
			"version": "3.4.2",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx .",
				"pretest": "npm run lint",
				"prebuild": "npm run clean",
				"build": "babel src --out-dir build",
				"watch": "npm run build -- -w",
				"prepublish": "npm run build && safe-publish-latest && (not-in-publish || cp ../../{LICENSE,README}.md ./)"
			},
			"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": {
				"array.prototype.flat": "^1.2.1",
				"cheerio": "^1.0.0-rc.2",
				"function.prototype.name": "^1.1.0",
				"has": "^1.0.3",
				"is-boolean-object": "^1.0.0",
				"is-callable": "^1.1.4",
				"is-number-object": "^1.0.3",
				"is-string": "^1.0.4",
				"is-subset": "^0.1.1",
				"lodash": "^4.17.4",
				"object-inspect": "^1.6.0",
				"object-is": "^1.0.1",
				"object.assign": "^4.1.0",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"raf": "^3.4.0",
				"rst-selector-parser": "^2.2.3"
			},
			"devDependencies": {
				"babel-cli": "^6.26.0",
				"babel-plugin-transform-replace-object-assign": "^1.0.0",
				"babel-preset-airbnb": "^2.5.3",
				"eslint": "^5.3.0",
				"eslint-config-airbnb": "^17.1.0",
				"eslint-plugin-import": "^2.14.0",
				"eslint-plugin-jsx-a11y": "^6.1.1",
				"eslint-plugin-react": "^7.11.1",
				"in-publish": "^2.0.0",
				"jsdom": "^6.5.1",
				"rimraf": "^2.6.2",
				"safe-publish-latest": "^1.1.2"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.4.2",
			"_npmVersion": "6.2.0",
			"_nodeVersion": "10.8.0",
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"dist": {
				"integrity": "sha512-2DQLUk9iLJOKCm3R91IVz62zNaIa3mMU1kLKWfLVp9w9/fxurw8eSBVVXhU8xA4Ymlyxito1BPz7Q7Rs73q5zw==",
				"shasum": "17bcbec411b6b874c508d31edb51aaf431e88ae7",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.4.2.tgz",
				"fileCount": 38,
				"unpackedSize": 279151,
				"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbdQjtCRA9TVsSAnZWagAAUT4P/jIXoetz1XzFff4aSYTz\nZaZciHSijqrn4qYWBUSGM42Z40+KjyUAVp523NsGJwxMcymNsXnXHjBDXmNz\nW+/UKflOJdca2peY5dXS7g8bru2sS4pf+jwplaJ5K+lP1jQguGM6s+m0Vf+I\nMiVBCEKbZE1En8dgvfbJE7avuQA7u80P4vZBOjwFbTS+UEcky09QkCWQvA9P\nLCjoqKhfr+HulZ2aGC8t3WVdIQCiZWYY0Tpyw7cP+i0CpMHVHD52mbERdhqd\nyTsya/Du2C23h7vsh8bIFls0UvgUz1q4F007BQWV8LaecQWNzi7esxU1+Zhh\nsCCK3oaRPcQ9ivnbm4oXOxMwLpRZuXp/oj+KK228k6tG2U/qo7mvBWwhqMZ3\nZ2QrFzgWWQEyoKCwfP/tQS9JnnHH1Kf27hZl1FYvUGdd/h3/n/w3HbgXkeGf\nlGnqaFkzQsBhJnkcKiqttGSyj9foNlnTiydHwWeR/PQb043renbDQmn040PT\nfwpLY7ZE94fHcJzie6nr6qDYX12Qxntbur8r5Lf3tpKsGjw0zvda1PUUQ/8p\nKPNY7PYYfGHGdBIvAEEF6BpmOl1fPI5FUg41NRsbU3+KbRh9qodfGOzAmUSu\nuFHK9BcxdqGlDup0YMr4e9+O2KW9uDjZDsayLufyvuUSDK0N4mBGk5qTmyDq\n60co\r\n=x1jP\r\n-----END PGP SIGNATURE-----\r\n"
			},
			"maintainers": [
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				}
			],
			"directories": {},
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme_3.4.2_1534396652781_0.30071768402299837"
			},
			"_hasShrinkwrap": false,
			"contributors": []
		},
		"3.4.3": {
			"name": "enzyme",
			"version": "3.4.3",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx .",
				"pretest": "npm run lint",
				"prebuild": "npm run clean",
				"build": "babel src --out-dir build",
				"watch": "npm run build -- -w",
				"prepublish": "npm run build && safe-publish-latest && (not-in-publish || cp ../../{LICENSE,README}.md ./)"
			},
			"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": {
				"array.prototype.flat": "^1.2.1",
				"cheerio": "^1.0.0-rc.2",
				"function.prototype.name": "^1.1.0",
				"has": "^1.0.3",
				"is-boolean-object": "^1.0.0",
				"is-callable": "^1.1.4",
				"is-number-object": "^1.0.3",
				"is-string": "^1.0.4",
				"is-subset": "^0.1.1",
				"lodash": "^4.17.4",
				"object-inspect": "^1.6.0",
				"object-is": "^1.0.1",
				"object.assign": "^4.1.0",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"raf": "^3.4.0",
				"rst-selector-parser": "^2.2.3"
			},
			"devDependencies": {
				"babel-cli": "^6.26.0",
				"babel-plugin-transform-replace-object-assign": "^1.0.0",
				"babel-preset-airbnb": "^2.5.3",
				"eslint": "^5.3.0",
				"eslint-config-airbnb": "^17.1.0",
				"eslint-plugin-import": "^2.14.0",
				"eslint-plugin-jsx-a11y": "^6.1.1",
				"eslint-plugin-react": "^7.11.1",
				"in-publish": "^2.0.0",
				"jsdom": "^6.5.1",
				"rimraf": "^2.6.2",
				"safe-publish-latest": "^1.1.2"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.4.3",
			"_npmVersion": "6.2.0",
			"_nodeVersion": "10.8.0",
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"dist": {
				"integrity": "sha512-80H3sOctayz65Rtc7byTBL+bV/Kw6xJnqhIMqjNz636CDwsHpL0nqwbd6rqn1NjmaBvP2GPp/h6xXAM22zLC4w==",
				"shasum": "86c4a1219a967cddb8d0359f28e119a93302014b",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.4.3.tgz",
				"fileCount": 38,
				"unpackedSize": 281261,
				"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbdlw3CRA9TVsSAnZWagAAU3MQAJRPcX0PT0TQs6gMhspa\nxYG1cqUdXmB4gYSRKlLn1+Mds/QA/nm1JKd50RYd6cVU1txytGEjNyTR3iHF\nHKMDwDWcYx+LNZAxYdwpkW8PO2Ck5j0dumA9qCgD92yFz/6iIgXmDGvFTgrR\n0kJ84e/N+JBWBv/BQLF9823bRt5MDcPHTL+k2ISLwAv7bsJBthAkUR6U1iYP\n6V8OEFz2h4VMimutOkzTjkf2czD4rqTDQ4dlhNU/dfz48nrc4ZNs3UNXI/Rg\ncPLhK1Z4eEMFXAZoy7LpenCzzDSPuJr4n+tB6YgB4lRAYLMKvsm1zryghHfW\n/Vt16p/igqbq3ffIfWvtNZyCOXOSu6vvCAQWv/Xvvt6FNCFc4N820b/7SPmu\nAmuaz/nJrXNy4Gg9ex+wDnZnBbV1OfH2j+nEPx0oRpmtshF2QYzfjZFW3FCM\n5gmUegP5ISaKpVCkwFwXO4L9hUky+ECVMik06iEAXOh8C1FUkDjvqDeHQ+HC\n3d/5IvdgnrzHuf6fyUtXRUJd1Q4e1tBeEOgSyJ7BJ8Mivw6uyESQdCdsyFGA\n/+so3Znd8X6JumIHYdbj5mDU4JKWSZUFwSoY2IiMqOc3OlwZbNXFotWUMbcH\nv3763h8iYVR4kZfHHOua35ajPIruonSJhsKzVrhNwkBXelK/FaNS7i6x43A1\nYO+p\r\n=bRPE\r\n-----END PGP SIGNATURE-----\r\n"
			},
			"maintainers": [
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				}
			],
			"directories": {},
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme_3.4.3_1534483510287_0.971601527370606"
			},
			"_hasShrinkwrap": false,
			"contributors": []
		},
		"3.4.4": {
			"name": "enzyme",
			"version": "3.4.4",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx .",
				"pretest": "npm run lint",
				"prebuild": "npm run clean",
				"build": "babel src --out-dir build",
				"watch": "npm run build -- -w",
				"prepublish": "npm run build && safe-publish-latest && (not-in-publish || cp ../../{LICENSE,README}.md ./)"
			},
			"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": {
				"array.prototype.flat": "^1.2.1",
				"cheerio": "^1.0.0-rc.2",
				"function.prototype.name": "^1.1.0",
				"has": "^1.0.3",
				"is-boolean-object": "^1.0.0",
				"is-callable": "^1.1.4",
				"is-number-object": "^1.0.3",
				"is-string": "^1.0.4",
				"is-subset": "^0.1.1",
				"lodash": "^4.17.4",
				"object-inspect": "^1.6.0",
				"object-is": "^1.0.1",
				"object.assign": "^4.1.0",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"raf": "^3.4.0",
				"rst-selector-parser": "^2.2.3"
			},
			"devDependencies": {
				"babel-cli": "^6.26.0",
				"babel-plugin-transform-replace-object-assign": "^1.0.0",
				"babel-preset-airbnb": "^2.5.3",
				"eslint": "^5.3.0",
				"eslint-config-airbnb": "^17.1.0",
				"eslint-plugin-import": "^2.14.0",
				"eslint-plugin-jsx-a11y": "^6.1.1",
				"eslint-plugin-react": "^7.11.1",
				"in-publish": "^2.0.0",
				"jsdom": "^6.5.1",
				"rimraf": "^2.6.2",
				"safe-publish-latest": "^1.1.2"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.4.4",
			"_npmVersion": "6.2.0",
			"_nodeVersion": "10.8.0",
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"dist": {
				"integrity": "sha512-/xkHs9vLDmmZbyvhu0zgBHqK+aAZHyTTXvclLjATqo4SlnpReZ7JqEyrjADAhy2Kha0gKmKq4759E/+VjIExMg==",
				"shasum": "92c7c6b9e59d4ef0c3d36a75dccc0e41a5c14d21",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.4.4.tgz",
				"fileCount": 38,
				"unpackedSize": 281437,
				"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbdz70CRA9TVsSAnZWagAASzwP/2MV8uGrs2t/ihjMYm8R\n1qxHHWl8e7VhuDGOOcy58N4V/FhMVu7B5EMRCdKkHDdIWoCUOpMaQs/DYn0T\nHf/7S2b3LTuuV3qTNvBbTRbgPlq/+WOHOokcTu3jeCWVCYL9cb9a3KBm8Puv\nBckTCB6qkiqW8DGFYNlEbf1jbfXf6QH/axB+uFONpB6LQalT9fA7mDhZQsrZ\nkh2/xU1rAs5sOPejZiz+KY4XJOafspiew7RxKlMedIq6fSM5FZAHptq49WAl\nGNsdcAFunfddXxHF1JfCBkKkuv1UKEQw4/shSqR+QbCE+86KV+v73+gLIkwF\npgcpcQ7G8zM8zAiGXKgXo5qi7JywfJRKDz9GENLJgr9aSUVxejJHvhfgiPAi\namveq+gZ57An4z6K17Y4C7ONeOpNYPv90zMxPLy9LOVxQFCyG1+03M5J2oE3\neNzXhoZpTTrbmjM1bA2XibIW30GT8ktPnrVbMl6YLTuLbhakatPSbi/PQmVI\nYjDl3KiV7sgVKqPBSyGngWicjJwbEZLI7AF4X9lgcTsBMfxkgJA7Z8XMLDP2\nddGsWKJxz08n35X+e1bDZ0jTy4A3TckFzQdTRSAXGE2vEVjN0xcFIAZicjpb\n3M+VYMsocn0zzWyjSlCFcDQHQJKxL0h6fduqSZbM6lWipYsyWzCMm+zoEcTe\nT+cS\r\n=WbgN\r\n-----END PGP SIGNATURE-----\r\n"
			},
			"maintainers": [
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				}
			],
			"directories": {},
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme_3.4.4_1534541555614_0.9638581178427874"
			},
			"_hasShrinkwrap": false,
			"contributors": []
		},
		"3.5.0": {
			"name": "enzyme",
			"version": "3.5.0",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx .",
				"pretest": "npm run lint",
				"prebuild": "npm run clean",
				"build": "babel src --out-dir build",
				"watch": "npm run build -- -w",
				"prepublish": "npm run build && safe-publish-latest && (not-in-publish || cp ../../{LICENSE,README}.md ./)"
			},
			"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": {
				"array.prototype.flat": "^1.2.1",
				"cheerio": "^1.0.0-rc.2",
				"function.prototype.name": "^1.1.0",
				"has": "^1.0.3",
				"is-boolean-object": "^1.0.0",
				"is-callable": "^1.1.4",
				"is-number-object": "^1.0.3",
				"is-string": "^1.0.4",
				"is-subset": "^0.1.1",
				"lodash.escape": "^4.0.1",
				"lodash.isequal": "^4.5.0",
				"object-inspect": "^1.6.0",
				"object-is": "^1.0.1",
				"object.assign": "^4.1.0",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"raf": "^3.4.0",
				"rst-selector-parser": "^2.2.3"
			},
			"devDependencies": {
				"babel-cli": "^6.26.0",
				"babel-plugin-transform-replace-object-assign": "^1.0.0",
				"babel-preset-airbnb": "^2.5.3",
				"eslint": "^5.4.0",
				"eslint-config-airbnb": "^17.1.0",
				"eslint-plugin-import": "^2.14.0",
				"eslint-plugin-jsx-a11y": "^6.1.1",
				"eslint-plugin-react": "^7.11.1",
				"in-publish": "^2.0.0",
				"jsdom": "^6.5.1",
				"rimraf": "^2.6.2",
				"safe-publish-latest": "^1.1.2"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.5.0",
			"_npmVersion": "6.2.0",
			"_nodeVersion": "10.9.0",
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"dist": {
				"integrity": "sha512-I51gsZvXiUjrJC3oJ9wo1tvKyWQrrLD+7esOwTw5sZeQ6a+GVcQYVroXBF13hB/kJQ4vurtxEm35+5T1Q8R2Pw==",
				"shasum": "fd452a698fd1352c737b641dd3a64e079f42d9d5",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.5.0.tgz",
				"fileCount": 38,
				"unpackedSize": 284482,
				"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbgRDBCRA9TVsSAnZWagAAGnkP/RsdoecCcc0chEmbdHhW\nqIA6DWRh9E8yKb2PqPI4tCMokC6Sslyn8kFL74vWM65H0eoBzuR1dnEx+Dfr\nIL1QjD5fF/zx4Pu/O02yjeijnUF/PjChg0QVWGqGy0jcxaVvjnRXxxgLU3fe\ntdIwVi9BesdZGjqm8fLz3erb9j9s5j+vR+snXmcHY/f2Y2NEcYuGZAIXoPKh\n74XtAIU2z/NJgbe5Kk8sfc2XnlCdQdTNpRac/0Fk8WTLhbaRktlcZ+IkTLfw\nT353KwCjMymWzFqV47ZH6EOl7DNb2Qi9oqwOs4bGMqrcdVsduWJXraMu7Ny7\nBae7wLHa591dLxuykwT3Nmv790URRi2XEk4Fx9y4P/jk8Rn8jumFmjAR6MZd\nDrzcnz67zuFuh2qGGARGNI43XvwD1o4B4M0mhYJklrsea73jQ0taJcKPn4QZ\nuKGczXX+g9iETRBfsHfT4ocMrUUbV4HZSN2XPNmQD6CD6nmclXMNCYxrKrIQ\nlfxlyLiA1GAOIbxWUc6lU0hjvyhNatnBcIY5mkej9G+mjyfBT8vxX2Fj+WAj\noCSZOiGN73gqPdHrBKrm5RzSVEYcoU3uw+cVEUPOK9SdMH8ZifSFVl/3tRe8\nBxH9cZJWmBXfUxWLZioCtVVrpEX+sO/5h19gir9+SIy03CgM2iPiFGyDq9Y7\nEpfk\r\n=nKRt\r\n-----END PGP SIGNATURE-----\r\n"
			},
			"maintainers": [
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				}
			],
			"directories": {},
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme_3.5.0_1535185088364_0.350204553827667"
			},
			"_hasShrinkwrap": false,
			"contributors": []
		},
		"3.5.1": {
			"name": "enzyme",
			"version": "3.5.1",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx .",
				"pretest": "npm run lint",
				"prebuild": "npm run clean",
				"build": "babel src --out-dir build",
				"watch": "npm run build -- -w",
				"prepublish": "npm run build && safe-publish-latest && (not-in-publish || cp ../../{LICENSE,README}.md ./)"
			},
			"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": {
				"array.prototype.flat": "^1.2.1",
				"cheerio": "^1.0.0-rc.2",
				"function.prototype.name": "^1.1.0",
				"has": "^1.0.3",
				"is-boolean-object": "^1.0.0",
				"is-callable": "^1.1.4",
				"is-number-object": "^1.0.3",
				"is-string": "^1.0.4",
				"is-subset": "^0.1.1",
				"lodash.escape": "^4.0.1",
				"lodash.isequal": "^4.5.0",
				"object-inspect": "^1.6.0",
				"object-is": "^1.0.1",
				"object.assign": "^4.1.0",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"raf": "^3.4.0",
				"rst-selector-parser": "^2.2.3",
				"string.prototype.trim": "^1.1.2"
			},
			"devDependencies": {
				"babel-cli": "^6.26.0",
				"babel-plugin-transform-replace-object-assign": "^1.0.0",
				"babel-preset-airbnb": "^2.5.3",
				"eslint": "^5.4.0",
				"eslint-config-airbnb": "^17.1.0",
				"eslint-plugin-import": "^2.14.0",
				"eslint-plugin-jsx-a11y": "^6.1.1",
				"eslint-plugin-react": "^7.11.1",
				"in-publish": "^2.0.0",
				"jsdom": "^6.5.1",
				"rimraf": "^2.6.2",
				"safe-publish-latest": "^1.1.2"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.5.1",
			"_npmVersion": "6.2.0",
			"_nodeVersion": "10.9.0",
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"dist": {
				"integrity": "sha512-nRC9k3BbkcsZvheCfsbDH4SwG7pjhqv6SOwb1/pfR85WhLUcfG9zEJLId/8RAiDNNiDc+unlwMnN6kywlYucAg==",
				"shasum": "aad0cbd005fee4cfd800b6451b64112b5374da67",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.5.1.tgz",
				"fileCount": 38,
				"unpackedSize": 286618,
				"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjaEfCRA9TVsSAnZWagAArekP/2ze3aXXz8+c0MLczkFj\naiQPZ7epy+5P5cekbf9+nwVdn+WACYk9aL9/LwNqDP76bDl1/KwnqvfFfcda\nShVkBr70XqYY7yp028icSGJGdo4vV2y6za72PE9V1+HylgS/PHiN4mTjeEl9\n2fAQkzdamUdQqnvR55CCC3EqNc1uuXb+8uOHgjAGpnsMxHv0Uaeqp0O/vjt1\ngJneo8NScQBCkJP7FtbRWh2JGV0Cxo3n5U4wCvX4X3VNd+OVuk6GZ1h2xsjl\nwOVoYIpX8DDw3f9EIXF0ucGDWltcJOY1Ah7OfKLfBZRkSQ9X/rl/+IXXWCGI\ndZ2qdz6UKCdTb06NBo4fBdRDd4R0VPy39SvON10is8ekS19eV42avDR3yJ+T\nJLU1FmytV6J0p4eeUtCuTjoejmdGGR3NdnLwBVn+OUdZADi8Y5UmMn/wBbhY\noc4mBqhu2oxLHuCdyHF72sNSerTZqisQ1jSu+674CCJdorar+zRbHieiwLXF\nM/Iy/ws/FH98RkO4CftWPiig4kkRjbEYuu9AZXz0Qxu35uXV4ubo04g+wEII\nG7Z7zXZ0dWsdOrrfQ6MFFu663tvVMWTha3XAd1zD7Txk35J8TgUQ6vglCstG\ncy6yd7vew+SCaZfPk9k4ncaE/lxc+cnl6X0Vzhx3bBFMHzbmMPl/Skqv/A2i\nlKJT\r\n=FHvD\r\n-----END PGP SIGNATURE-----\r\n"
			},
			"maintainers": [
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				}
			],
			"directories": {},
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme_3.5.1_1536008478282_0.7997992687994699"
			},
			"_hasShrinkwrap": false,
			"contributors": []
		},
		"3.6.0": {
			"name": "enzyme",
			"version": "3.6.0",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx .",
				"pretest": "npm run lint",
				"prebuild": "npm run clean",
				"build": "babel src --out-dir build",
				"watch": "npm run build -- -w",
				"prepublish": "npm run build && safe-publish-latest && (not-in-publish || cp ../../{LICENSE,README}.md ./)"
			},
			"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": {
				"array.prototype.flat": "^1.2.1",
				"cheerio": "^1.0.0-rc.2",
				"function.prototype.name": "^1.1.0",
				"has": "^1.0.3",
				"is-boolean-object": "^1.0.0",
				"is-callable": "^1.1.4",
				"is-number-object": "^1.0.3",
				"is-string": "^1.0.4",
				"is-subset": "^0.1.1",
				"lodash.escape": "^4.0.1",
				"lodash.isequal": "^4.5.0",
				"object-inspect": "^1.6.0",
				"object-is": "^1.0.1",
				"object.assign": "^4.1.0",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"raf": "^3.4.0",
				"rst-selector-parser": "^2.2.3",
				"string.prototype.trim": "^1.1.2"
			},
			"devDependencies": {
				"babel-cli": "^6.26.0",
				"babel-plugin-transform-replace-object-assign": "^1.0.0",
				"babel-preset-airbnb": "^2.5.3",
				"eslint": "^5.4.0",
				"eslint-config-airbnb": "^17.1.0",
				"eslint-plugin-import": "^2.14.0",
				"eslint-plugin-jsx-a11y": "^6.1.1",
				"eslint-plugin-react": "^7.11.1",
				"in-publish": "^2.0.0",
				"jsdom": "^6.5.1",
				"rimraf": "^2.6.2",
				"safe-publish-latest": "^1.1.2"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.6.0",
			"_npmVersion": "6.2.0",
			"_nodeVersion": "10.9.0",
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"dist": {
				"integrity": "sha512-onsINzVLGqKIapTVfWkkw6bYvm1o4CyJ9s8POExtQhAkVa4qFDW6DGCQGRy/5bfZYk+gmUbMNyayXiWDzTkHFQ==",
				"shasum": "d213f280a258f61e901bc663d4cc2d6fd9a9dec8",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.6.0.tgz",
				"fileCount": 38,
				"unpackedSize": 290968,
				"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjyL2CRA9TVsSAnZWagAAdFcP/0NC6ohxpXu/L98Q4SOe\nGh8ouS9auQT77Zh/GkW719Lvmow12MLI6w9HlzCMuMaq/vPltp2pZI2ddIFE\n5dsr8WK6yBs/JZF0S1HohwCQ+ir1AS1JoN3qZ2ZE5H1n1Ah5FALlzz1ConKd\nNe45Yq8LkRPKaGi34r6J8xsJdgkJZ3R+r/4AVmnVFyXOwmXgZCLnp/TQXHtc\nwWOCMUPueNENaGGAQNQVCQ/6Jkx7qsq+0O0CwP+uM3QRuHNErCnKKt09kBdj\nz0ct2seMgCiPHpPHyh8Gane6vKkQf16W/b+EWVrgJgmHAvhzDg4miYwiL/Hh\nxBlP4b9VBCHHfyuW5c+2PF6WiSixYswL6+UZcQWPWzieQGIrKUDwLV+3QTKn\n4EbX0vH+CkeJ44lwcxrWUMHp8Xh+eV9Mytid0d0ctlM6DsYRiqoFZ8Y1On/y\ngvp+9ddDQUpxg+cWqb8kRskI/Ev0cDk8W3Gzh8nhWPLInm938BH3c1FQfTxQ\ne4rZcBDq9PfxbcDs21UzcFaa52VzPgQhpy55IIy6vB4LPi4md0doLjdhOEzl\nkVKbzaIWMo9IOyMrvjP6DOcdwB59phb5co5biG86H6KHW9Tgyfx/Sx+ws6Zi\naRJyqrm4a/17lno5QjKynCMV/GxqXAk1RBFVshBw9bDHXM9T4pXfCnAr16LI\nuFBI\r\n=x4Eu\r\n-----END PGP SIGNATURE-----\r\n"
			},
			"maintainers": [
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				}
			],
			"directories": {},
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme_3.6.0_1536107254106_0.48198361967785974"
			},
			"_hasShrinkwrap": false,
			"contributors": []
		},
		"3.7.0": {
			"name": "enzyme",
			"version": "3.7.0",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx .",
				"pretest": "npm run lint",
				"prebuild": "npm run clean",
				"build": "babel src --out-dir build",
				"watch": "npm run build -- -w",
				"prepublish": "npm run build && safe-publish-latest && (not-in-publish || cp ../../{LICENSE,README}.md ./)"
			},
			"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": {
				"array.prototype.flat": "^1.2.1",
				"cheerio": "^1.0.0-rc.2",
				"function.prototype.name": "^1.1.0",
				"has": "^1.0.3",
				"is-boolean-object": "^1.0.0",
				"is-callable": "^1.1.4",
				"is-number-object": "^1.0.3",
				"is-string": "^1.0.4",
				"is-subset": "^0.1.1",
				"lodash.escape": "^4.0.1",
				"lodash.isequal": "^4.5.0",
				"object-inspect": "^1.6.0",
				"object-is": "^1.0.1",
				"object.assign": "^4.1.0",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"raf": "^3.4.0",
				"rst-selector-parser": "^2.2.3",
				"string.prototype.trim": "^1.1.2"
			},
			"devDependencies": {
				"babel-cli": "^6.26.0",
				"babel-plugin-transform-replace-object-assign": "^1.0.0",
				"babel-preset-airbnb": "^2.6.0",
				"eslint": "^5.6.1",
				"eslint-config-airbnb": "^17.1.0",
				"eslint-plugin-import": "^2.14.0",
				"eslint-plugin-jsx-a11y": "^6.1.1",
				"eslint-plugin-react": "^7.11.1",
				"in-publish": "^2.0.0",
				"jsdom": "^6.5.1",
				"rimraf": "^2.6.2",
				"safe-publish-latest": "^1.1.2"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.7.0",
			"_npmVersion": "6.4.1",
			"_nodeVersion": "10.11.0",
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"dist": {
				"integrity": "sha512-QLWx+krGK6iDNyR1KlH5YPZqxZCQaVF6ike1eDJAOg0HvSkSCVImPsdWaNw6v+VrnK92Kg8jIOYhuOSS9sBpyg==",
				"shasum": "9b499e8ca155df44fef64d9f1558961ba1385a46",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.7.0.tgz",
				"fileCount": 38,
				"unpackedSize": 293851,
				"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbtwOMCRA9TVsSAnZWagAAWD4QAJx9SRbMkpzRKpdn42PC\npluUzqiw9UcrtYYqHNdq710WZFkJRE5161eo+f0ta8Y8oqxRNKEoQanrv5Sg\nhGXBYOTp7h1njQnYAZqx4DmS+OF2s0CiHJNFnELKMlklkAZnViGYAb0OQ4iA\ndvQmgS7mUSIsM1byQ9qkrxhMxctKvnmHvwTC8oRbdNqGUSAoWXbfSA38FK+g\nYJKf2CwdlnO29IkMRej+HY0avhO75nJnVkqVmxC/1C4j8zzPPWKcQso9qsgq\nGy/1cuqpUB9d/wXVaBjMN9eCVhahajo4/6uHQ/Kz2atLssX13S8izpKiEUKV\nl4tkLM5+XldFCofblMMySywI/U6cmWVwLu/wze5UWZHIFK8v1Jj34Jfr8nyL\n3mEYHPnNEa8XQ8UUsf9ADCTGlK1LA90fvVK+XzXHeaSmgjhT/MoUpXcb0Fz1\n/odJwYnkWYNswsBHYqWm0Mv4pnspqjKCvklG6CcCWB8is6eB5gCsEYWlkW+c\n9zeDPO5bKrF/FYwJdHJzR9FmHZKAzQPHel2SsV0sUrNxItMbagtD66ReIdFn\nPz+eaZyj+5sjhysCk1DxxxhyveS+Z4skWzSR0bu02mKg0FheF4lgNYd6sEnO\ngG8ONfDxSbshy5TddB3ujP84rdmrJf4RYOtz0/PUfn6rnWYUO+gpb7lYSTdZ\ncpfq\r\n=p9id\r\n-----END PGP SIGNATURE-----\r\n"
			},
			"maintainers": [
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				}
			],
			"directories": {},
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme_3.7.0_1538720651723_0.9244368363552264"
			},
			"_hasShrinkwrap": false,
			"contributors": []
		},
		"3.8.0": {
			"name": "enzyme",
			"version": "3.8.0",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx .",
				"pretest": "npm run lint",
				"prebuild": "npm run clean",
				"build": "babel src --out-dir build",
				"watch": "npm run build -- -w",
				"prepublish": "npm run build && safe-publish-latest && (not-in-publish || cp ../../{LICENSE,README}.md ./)"
			},
			"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": {
				"array.prototype.flat": "^1.2.1",
				"cheerio": "^1.0.0-rc.2",
				"function.prototype.name": "^1.1.0",
				"has": "^1.0.3",
				"is-boolean-object": "^1.0.0",
				"is-callable": "^1.1.4",
				"is-number-object": "^1.0.3",
				"is-string": "^1.0.4",
				"is-subset": "^0.1.1",
				"lodash.escape": "^4.0.1",
				"lodash.isequal": "^4.5.0",
				"object-inspect": "^1.6.0",
				"object-is": "^1.0.1",
				"object.assign": "^4.1.0",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"raf": "^3.4.0",
				"rst-selector-parser": "^2.2.3",
				"string.prototype.trim": "^1.1.2"
			},
			"devDependencies": {
				"babel-cli": "^6.26.0",
				"babel-plugin-transform-replace-object-assign": "^1.0.0",
				"babel-preset-airbnb": "^2.6.0",
				"eslint": "^5.10.0",
				"eslint-config-airbnb": "^17.1.0",
				"eslint-plugin-import": "^2.14.0",
				"eslint-plugin-jsx-a11y": "^6.1.2",
				"eslint-plugin-react": "^7.11.1",
				"in-publish": "^2.0.0",
				"jsdom": "^6.5.1",
				"rimraf": "^2.6.2",
				"safe-publish-latest": "^1.1.2"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.8.0",
			"_npmVersion": "6.4.1",
			"_nodeVersion": "11.2.0",
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"dist": {
				"integrity": "sha512-bfsWo5nHyZm1O1vnIsbwdfhU989jk+squU9NKvB+Puwo5j6/Wg9pN5CO0YJelm98Dao3NPjkDZk+vvgwpMwYxw==",
				"shasum": "646d2d5d0798cb98fdec39afcee8a53237b47ad5",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.8.0.tgz",
				"fileCount": 38,
				"unpackedSize": 301420,
				"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcDjRzCRA9TVsSAnZWagAAoqgP/RGAHPuk8A18Rrg+NcT2\nuPn/RN4FGj+S42SdmIFYSXpwIfaM1CF0p2QqbVejOvmeov4HSMhl5SyjrF95\n1KKzG0Snhh2JuEq9tLZUjkjTnfQoFFM6zoA1+YVfuE7Hc8ZgT6Uqk0d0e3n7\nMIgan2rO1wpzi6hn08gwfxrRL1Ox7U5Vd4nTcvtY/ZEvP5z1TzFtTYqnbT7J\nAMDcg0FSQsbAn6jJUly7XIoyV3xLpxULyooQTo2MMYT5XwWiFXjyk0wEF0E9\nN/u6zXxc7O4HtWvTQDGBzgM2iu8w4lOQUNsk4XFjGR3PTp9sQch3cdKXhGuo\n0dSb/quShtU5rbG3Y6uIb4WGLDM3tfEeDBYK0cZSNG4+R2px4UZtvWWSUbLe\nTDaRlCyiUT4AsrKBRwSIer3eU2tPFylGuCymOg/S6aDIjn2mURoSs+i7w2uu\nbVd7Pf9TQiGuMVgzCSwpWVhT+1jXGRFzOFjXqmn8jIjPpXspTd64KrNv9pCL\n+fZo+SM/bcnltVyIdatTaLntwjrgoPz3bAU9CKHpjohe10Pf8S1cqVa5yvqL\njw7kLdE27DZgLFt0Mxa5MBttTrMSrd7FoDDO4zWsE1ZYlwBb9vx/b7Bs+k9s\nGCPPnvt7TPPwqZbi13vGE2hJdU3pw8/ag+9IpwhgqQKLc4dirIZIOBH1w2hq\nxh3q\r\n=7QQ+\r\n-----END PGP SIGNATURE-----\r\n"
			},
			"maintainers": [
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				}
			],
			"directories": {},
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme_3.8.0_1544434802999_0.09935227090864118"
			},
			"_hasShrinkwrap": false,
			"contributors": []
		},
		"3.9.0": {
			"name": "enzyme",
			"version": "3.9.0",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx .",
				"pretest": "npm run lint",
				"prebuild": "npm run clean",
				"build": "babel src --out-dir build",
				"watch": "npm run build -- -w",
				"prepublish": "npm run build && safe-publish-latest && (not-in-publish || cp ../../{LICENSE,README}.md ./)"
			},
			"repository": {
				"type": "git",
				"url": "git+https://github.com/airbnb/enzyme.git",
				"directory": "packages/enzyme"
			},
			"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": {
				"array.prototype.flat": "^1.2.1",
				"cheerio": "^1.0.0-rc.2",
				"function.prototype.name": "^1.1.0",
				"has": "^1.0.3",
				"html-element-map": "^1.0.0",
				"is-boolean-object": "^1.0.0",
				"is-callable": "^1.1.4",
				"is-number-object": "^1.0.3",
				"is-regex": "^1.0.4",
				"is-string": "^1.0.4",
				"is-subset": "^0.1.1",
				"lodash.escape": "^4.0.1",
				"lodash.isequal": "^4.5.0",
				"object-inspect": "^1.6.0",
				"object-is": "^1.0.1",
				"object.assign": "^4.1.0",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"raf": "^3.4.0",
				"rst-selector-parser": "^2.2.3",
				"string.prototype.trim": "^1.1.2"
			},
			"devDependencies": {
				"babel-cli": "^6.26.0",
				"babel-plugin-transform-replace-object-assign": "^1.0.0",
				"babel-preset-airbnb": "^2.6.0",
				"eslint": "^5.13.0",
				"eslint-config-airbnb": "^17.1.0",
				"eslint-plugin-import": "^2.16.0",
				"eslint-plugin-jsx-a11y": "^6.2.1",
				"eslint-plugin-react": "^7.12.4",
				"in-publish": "^2.0.0",
				"jsdom": "^6.5.1",
				"rimraf": "^2.6.2",
				"safe-publish-latest": "^1.1.2"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.9.0",
			"_npmVersion": "6.5.0",
			"_nodeVersion": "11.8.0",
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"dist": {
				"integrity": "sha512-JqxI2BRFHbmiP7/UFqvsjxTirWoM1HfeaJrmVSZ9a1EADKkZgdPcAuISPMpoUiHlac9J4dYt81MC5BBIrbJGMg==",
				"shasum": "2b491f06ca966eb56b6510068c7894a7e0be3909",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.9.0.tgz",
				"fileCount": 38,
				"unpackedSize": 314237,
				"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcaQ5BCRA9TVsSAnZWagAAoq4P/i7fwT+6GoCw0H4RntId\n5q8yCyaUSrAsLnPjKCABTIN4mRfkoA3Ab3KOwNIFCdbvLY0+vII9HHi+cWvM\noLnQJseiEo8tbkrYw7PLIIbrsv0Ow1B1I9tlAM5ig4YRLNpabQaTJp4iSEk2\nC84Vi+sW9MeZGYV5h+9863ORgqqNGgfAdOYdmjqFDGX5XI5I7Psl0yO3mb6z\nupKSw86I7faPjbgHmUMnGWjOijjiC0dZS9FZq44BJ4r4aBSOfIH3FbnwySYJ\nZu/+PMb5AhlaOhfK4iAjdxHxA9TTDLSpxwPQTE4mc2d9OvgZn3gJyY+FZblG\nhuS+x/2KDCTHQirwhwGX/UXk43Dw37awQZmYcX1tqg3Ha6HvQeHeKx/H261k\najpfKj0uGhp1IHh1ggFIZSBCE+G91aRtUX+CSg4Ge//7R+seG7wO0vDlncM1\nYmGQbDVPfPj5bok1Gijz44RdGpksthTSVxtuLUqzxDz7z/xX1O6/J/WLyhu8\nr9LmHdUcruBJ6vVeEP4OxJiNvT/r9/6qaQPGl79afd+Za+idh2rQ9Z38GtSH\n0tgYvlsvWdwzrRGaIYwcUWYf3jWgJHDxB35L79r99f3ecd/6FUjskbLo8HBx\nAbH7ayiappIG0RmwIyyQXuU02vNuLUcEtcZ55+CfihM9bN9B3qA2E+oLdeJ1\n7ku5\r\n=yrX/\r\n-----END PGP SIGNATURE-----\r\n"
			},
			"maintainers": [
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				}
			],
			"directories": {},
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme_3.9.0_1550388800437_0.7459762370615417"
			},
			"_hasShrinkwrap": false,
			"contributors": []
		},
		"3.10.0": {
			"name": "enzyme",
			"version": "3.10.0",
			"description": "JavaScript Testing utilities for React",
			"homepage": "http://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx .",
				"pretest": "npm run lint",
				"prebuild": "npm run clean",
				"build": "babel --source-maps=both src --out-dir build",
				"watch": "npm run build -- -w",
				"prepublish": "npm run build && safe-publish-latest && (not-in-publish || cp ../../{LICENSE,README}.md ./)"
			},
			"repository": {
				"type": "git",
				"url": "git+https://github.com/airbnb/enzyme.git",
				"directory": "packages/enzyme"
			},
			"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": {
				"array.prototype.flat": "^1.2.1",
				"cheerio": "^1.0.0-rc.2",
				"function.prototype.name": "^1.1.0",
				"has": "^1.0.3",
				"html-element-map": "^1.0.0",
				"is-boolean-object": "^1.0.0",
				"is-callable": "^1.1.4",
				"is-number-object": "^1.0.3",
				"is-regex": "^1.0.4",
				"is-string": "^1.0.4",
				"is-subset": "^0.1.1",
				"lodash.escape": "^4.0.1",
				"lodash.isequal": "^4.5.0",
				"object-inspect": "^1.6.0",
				"object-is": "^1.0.1",
				"object.assign": "^4.1.0",
				"object.entries": "^1.0.4",
				"object.values": "^1.0.4",
				"raf": "^3.4.0",
				"rst-selector-parser": "^2.2.3",
				"string.prototype.trim": "^1.1.2"
			},
			"devDependencies": {
				"babel-cli": "^6.26.0",
				"babel-plugin-transform-replace-object-assign": "^1.0.0",
				"babel-preset-airbnb": "^2.6.0",
				"eslint": "^5.16.0",
				"eslint-config-airbnb": "^17.1.0",
				"eslint-plugin-import": "^2.17.3",
				"eslint-plugin-jsx-a11y": "^6.2.1",
				"eslint-plugin-react": "^7.13.0",
				"in-publish": "^2.0.0",
				"jsdom": "^6.5.1",
				"rimraf": "^2.6.3",
				"safe-publish-latest": "^1.1.2"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.10.0",
			"_nodeVersion": "12.3.1",
			"_npmVersion": "6.9.0",
			"dist": {
				"integrity": "sha512-p2yy9Y7t/PFbPoTvrWde7JIYB2ZyGC+NgTNbVEGvZ5/EyoYSr9aG/2rSbVvyNvMHEhw9/dmGUJHWtfQIEiX9pg==",
				"shasum": "7218e347c4a7746e133f8e964aada4a3523452f6",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.10.0.tgz",
				"fileCount": 53,
				"unpackedSize": 925727,
				"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc9cFSCRA9TVsSAnZWagAArsoP/1XyxPqBuk7G9wS6d4jJ\nryJLohmuo5MVnF5gPzq+12ox2Sz2QP6p6ohcLyE+HaXaDTGNJQOV/w1c71l+\nUWzHiGwN6OTvx25mcAwDPuCxYSUB6ZFxMfXF5Fo3iJg8MQreqvTgSIGDOOet\nT+biRMjWKv0cXJ/i2uA9vUy6lbvJ6N4hHSpEeYukublasrGB9rM6AF4pwbCu\n6L8OwXtoqkcV34z9G7n1U4R10XbOnco3XNalzd9NdbiZ9HTlURMWh86UQRGT\nUu3bpMwD7iw0nhNZivjkVEd0goP0YqHFtdnujYcmMu3kXv1+eBbvyjVN84YP\nkiwVkzfiboteawYnPmgrrD93S4QKhvL+8hPTg/mToiSFXyg/ZBB+2Dc31CYf\nzdiNtDawemXLkb+XVH8Dw6Gy4wUj69IhlWenh+yTP+gzpJxtXbqV7OJkLTfK\nt7zIZIQ5BNZOaDDuVEyCCwXTWbplJEqnLjv7ScFokFrvRsHXYNEFLGWIE6iT\nW/cYVIF8vS3qmQRoiCblAIjiOU0xbozHrpZAEOLdtViFREiru/E5hbLrQ3qi\nX4L3flChsDwXtOn7czoTQp6JRNqkB1X63vWUF/eQ10duV587Tfg/k1cOJ9w9\nn7GTM3ea2fSy4hcg9KjcitALDV6IPuG2x4A6TSs/jeObvrNRShFr1IdC4ncU\nkktE\r\n=nvei\r\n-----END PGP SIGNATURE-----\r\n"
			},
			"maintainers": [
				{
					"email": "jordan.harband+npm@airbnb.com",
					"name": "airbnb"
				},
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				}
			],
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"directories": {},
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme_3.10.0_1559609681132_0.4280204884944667"
			},
			"_hasShrinkwrap": false,
			"contributors": []
		},
		"3.11.0": {
			"name": "enzyme",
			"version": "3.11.0",
			"description": "JavaScript Testing utilities for React",
			"homepage": "https://airbnb.io/enzyme/",
			"main": "build",
			"scripts": {
				"clean": "rimraf build",
				"lint": "eslint --ext js,jsx .",
				"pretest": "npm run lint",
				"prebuild": "npm run clean",
				"build": "babel --source-maps=both src --out-dir build",
				"watch": "npm run build -- -w",
				"prepublish": "npm run build && safe-publish-latest && (not-in-publish || cp ../../{LICENSE,README}.md ./)"
			},
			"repository": {
				"type": "git",
				"url": "git+https://github.com/airbnb/enzyme.git",
				"directory": "packages/enzyme"
			},
			"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"
			},
			"funding": {
				"url": "https://github.com/sponsors/ljharb"
			},
			"license": "MIT",
			"dependencies": {
				"array.prototype.flat": "^1.2.3",
				"cheerio": "^1.0.0-rc.3",
				"enzyme-shallow-equal": "^1.0.1",
				"function.prototype.name": "^1.1.2",
				"has": "^1.0.3",
				"html-element-map": "^1.2.0",
				"is-boolean-object": "^1.0.1",
				"is-callable": "^1.1.5",
				"is-number-object": "^1.0.4",
				"is-regex": "^1.0.5",
				"is-string": "^1.0.5",
				"is-subset": "^0.1.1",
				"lodash.escape": "^4.0.1",
				"lodash.isequal": "^4.5.0",
				"object-inspect": "^1.7.0",
				"object-is": "^1.0.2",
				"object.assign": "^4.1.0",
				"object.entries": "^1.1.1",
				"object.values": "^1.1.1",
				"raf": "^3.4.1",
				"rst-selector-parser": "^2.2.3",
				"string.prototype.trim": "^1.2.1"
			},
			"devDependencies": {
				"babel-cli": "^6.26.0",
				"babel-plugin-transform-replace-object-assign": "^1.0.0",
				"babel-preset-airbnb": "^2.6.0",
				"eslint": "^6.7.2",
				"eslint-config-airbnb": "^18.0.1",
				"eslint-plugin-import": "^2.19.1",
				"eslint-plugin-jsx-a11y": "^6.2.3",
				"eslint-plugin-react": "^7.17.0",
				"in-publish": "^2.0.0",
				"jsdom": "^6.5.1",
				"rimraf": "^2.7.1",
				"safe-publish-latest": "^1.1.4"
			},
			"bugs": {
				"url": "https://github.com/airbnb/enzyme/issues"
			},
			"_id": "enzyme@3.11.0",
			"_nodeVersion": "13.5.0",
			"_npmVersion": "6.13.4",
			"dist": {
				"integrity": "sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==",
				"shasum": "71d680c580fe9349f6f5ac6c775bc3e6b7a79c28",
				"tarball": "https://registry.npmjs.org/enzyme/-/enzyme-3.11.0.tgz",
				"fileCount": 52,
				"unpackedSize": 923099,
				"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd/BEJCRA9TVsSAnZWagAAVWMP/1DeISvEEpP3FSwRvr+6\n0dkg5sD+FQkRxO/D0dsGFdhm74C6JNid28+/6cL2rI/xFQbMi/vYkApODUJ+\nwmsiungLR1fg8H1frjVVNtAqgoT5Bsalf0hd8flS2I91dd7n4csAvh5c3VrJ\nRKhSRByGDvBsUcV2s09HwXmKuhz23H7y3YYkLkZpZo9OuNAnFXG9J3eRqY9Q\nuW6u+rKsTk4UFuf1/MgXXGFXCq0oOu6WSaCLhuRy4tdNdgGUwVHC+JlNa+Yc\n2o80jImufQsAyclaU51aGVkCO8c0+n6za/iOjH49w9kz5DLR/z0wPrDzQdSk\ntEmZnv6/+fXfuxF4tk+YmnBOfe558T5CfkXtfdUOluWiNct2zTXJ+Ca7E/2D\n95r8QizcymFR1T21zJKZnwKKGOTTDrlgFnfDSc99nD/I6t13JL3zSMRutrpe\nkty8XPHE2M16VZTRxt41tB5d6lCqZdf/+IOPawxU2b2svHox6gd4ReRxzxE+\nQje0tl5Qmwnc/IT/2uXJ2YHlAT0Ly6raTlTN1fJ2BvPZHwfNQzEvBPuxCtrA\nr1N3eiFqQBh7BNdgcVfA0nLpnUEGt2ue6R/qn9RI64Qim7pOunqWXOf0te/5\nF7Q+Fef9CEqhr6tg/5D0t6JmghlRWtiUfa2icLH8OVtgGm6KpgBgoFeVin28\nDfn+\r\n=Mlpk\r\n-----END PGP SIGNATURE-----\r\n"
			},
			"maintainers": [
				{
					"email": "opensource@airbnb.com",
					"name": "airbnbeng"
				},
				{
					"email": "etienne.tripier@airbnb.com",
					"name": "etienne_tripier"
				},
				{
					"email": "gdborton@gmail.com",
					"name": "gdborton"
				},
				{
					"email": "leland.m.richardson@gmail.com",
					"name": "intelligibabble"
				},
				{
					"email": "joe.lencioni@gmail.com",
					"name": "lencioni"
				},
				{
					"email": "ljharb@gmail.com",
					"name": "ljharb"
				},
				{
					"email": "mileswjohnson@gmail.com",
					"name": "milesj"
				},
				{
					"email": "ben@pixelmachine.org",
					"name": "schleyfox"
				}
			],
			"_npmUser": {
				"name": "ljharb",
				"email": "ljharb@gmail.com"
			},
			"directories": {},
			"_npmOperationalInternal": {
				"host": "s3://npm-registry-packages",
				"tmp": "tmp/enzyme_3.11.0_1576800520572_0.966196548290932"
			},
			"_hasShrinkwrap": false,
			"contributors": []
		}
	},
	"time": {
		"modified": "2020-03-02T20:56:55.605Z",
		"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",
		"2.9.0": "2017-06-22T08:31:29.637Z",
		"2.9.1": "2017-06-24T06:48:05.491Z",
		"3.0.0-alpha.1": "2017-07-16T20:27:51.407Z",
		"3.0.0-beta.1": "2017-09-16T17:04:49.091Z",
		"3.0.0-beta.2": "2017-09-16T17:16:03.434Z",
		"3.0.0-beta.3": "2017-09-16T19:39:51.513Z",
		"3.0.0-beta.4": "2017-09-17T17:26:49.793Z",
		"3.0.0-beta.5": "2017-09-18T00:39:27.071Z",
		"3.0.0-beta.6": "2017-09-19T18:33:39.556Z",
		"3.0.0-beta.7": "2017-09-25T19:13:05.082Z",
		"3.0.0": "2017-09-26T07:20:30.409Z",
		"3.1.0": "2017-10-03T05:41:42.587Z",
		"3.1.1": "2017-11-05T07:27:06.051Z",
		"3.2.0": "2017-11-15T08:20:46.922Z",
		"3.3.0": "2017-12-28T22:43:04.415Z",
		"3.4.0": "2018-08-08T05:41:36.679Z",
		"3.4.1": "2018-08-08T23:59:25.585Z",
		"3.4.2": "2018-08-16T05:17:32.832Z",
		"3.4.3": "2018-08-17T05:25:10.441Z",
		"3.4.4": "2018-08-17T21:32:35.748Z",
		"3.5.0": "2018-08-25T08:18:08.440Z",
		"3.5.1": "2018-09-03T21:01:18.460Z",
		"3.6.0": "2018-09-05T00:27:34.297Z",
		"3.7.0": "2018-10-05T06:24:11.924Z",
		"3.8.0": "2018-12-10T09:40:03.195Z",
		"3.9.0": "2019-02-17T07:33:20.589Z",
		"3.10.0": "2019-06-04T00:54:41.342Z",
		"3.11.0": "2019-12-20T00:08:40.725Z"
	},
	"users": {},
	"dist-tags": {
		"latest": "3.11.0",
		"backport-v2.4": "2.4.2",
		"backport-v2.5": "2.5.2",
		"alpha": "3.0.0",
		"next": "3.0.0"
	},
	"_uplinks": {
		"npmjs": {
			"etag": "W/\"90626ad8c9bcf313348ea24ae51300af\"",
			"fetched": 1593324273542
		}
	},
	"_distfiles": {
		"enzyme-1.0.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-1.0.0.tgz",
			"sha": "82ec4621a9b916b5381e3272ab7c9849da216d76",
			"registry": "npmjs"
		},
		"enzyme-1.1.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-1.1.0.tgz",
			"sha": "51d9dd26bba7a6f0755963b4d9e30d98a7c3e3d0",
			"registry": "npmjs"
		},
		"enzyme-1.2.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-1.2.0.tgz",
			"sha": "91e74a71dd27dfa30aeaaf3fe0dc04fbf8101447",
			"registry": "npmjs"
		},
		"enzyme-1.3.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-1.3.0.tgz",
			"sha": "b413447d7099f068d945c00664c559c48bcbf8d8",
			"registry": "npmjs"
		},
		"enzyme-1.3.1.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-1.3.1.tgz",
			"sha": "dea18e209d7f77ca7b073ced697eb756e57d258f",
			"registry": "npmjs"
		},
		"enzyme-2.0.0-rc1.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.0.0-rc1.tgz",
			"sha": "61f163e62552f050b54a131ef1719fb14093e89a",
			"registry": "npmjs"
		},
		"enzyme-1.4.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-1.4.0.tgz",
			"sha": "2ba0cb16cee31b469ef713ecec83a3e151e8e2ac",
			"registry": "npmjs"
		},
		"enzyme-1.4.1.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-1.4.1.tgz",
			"sha": "164262c8d4456e5a0b29389c2e50d27deb765bfd",
			"registry": "npmjs"
		},
		"enzyme-1.5.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-1.5.0.tgz",
			"sha": "67157e7c86f44eb779a10660adec625dac803e0c",
			"registry": "npmjs"
		},
		"enzyme-1.6.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-1.6.0.tgz",
			"sha": "19c8015111a38c725b6a7d7ca562cd7601d1a38d",
			"registry": "npmjs"
		},
		"enzyme-2.0.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.0.0.tgz",
			"sha": "d47d7e58a6667be5950e5e70412d2c60069e4a5f",
			"registry": "npmjs"
		},
		"enzyme-2.1.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.1.0.tgz",
			"sha": "c9ef5def7ec5590da8cf6dd8cf801c6ed31b4ebf",
			"registry": "npmjs"
		},
		"enzyme-2.2.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.2.0.tgz",
			"sha": "972f1b89d771356ad4e06a15b4736173ec64aed5",
			"registry": "npmjs"
		},
		"enzyme-2.3.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.3.0.tgz",
			"sha": "2cbc0c37d3cc067b7d1b8b0b51cf6e7961e520de",
			"registry": "npmjs"
		},
		"enzyme-2.4.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.4.0.tgz",
			"sha": "993b4ba5ca3c8c90da182423cdf3e531bb735753",
			"registry": "npmjs"
		},
		"enzyme-2.4.1.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.4.1.tgz",
			"sha": "90fa9861d982d0ceb92a9fd57e38426a2f74d3b1",
			"registry": "npmjs"
		},
		"enzyme-2.5.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.5.0.tgz",
			"sha": "ab0b3f19cc5239f3aa3c253b21cece9b0400d64a",
			"registry": "npmjs"
		},
		"enzyme-2.5.1.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.5.1.tgz",
			"sha": "d7c8e2352c04c27fcf2523fb17bc7e0569352743",
			"registry": "npmjs"
		},
		"enzyme-2.4.2.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.4.2.tgz",
			"sha": "09baeced8a6ad48d507f9075ac9ce1274f9cff62",
			"registry": "npmjs"
		},
		"enzyme-2.5.2.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.5.2.tgz",
			"sha": "138f6f9a9ab529157a174fcad40a20f67b9daa3d",
			"registry": "npmjs"
		},
		"enzyme-2.6.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.6.0.tgz",
			"sha": "148d742b25e2565f7e80870a0c92aea9be1b90ea",
			"registry": "npmjs"
		},
		"enzyme-2.7.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.7.0.tgz",
			"sha": "772477800547ca2514cc0af258e647c166aee899",
			"registry": "npmjs"
		},
		"enzyme-2.7.1.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.7.1.tgz",
			"sha": "76370e1d99e91f73091bb8c4314b7c128cc2d621",
			"registry": "npmjs"
		},
		"enzyme-2.8.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.8.0.tgz",
			"sha": "86cc1fc96e5cbd7695766dd6e89deb13a0aead51",
			"registry": "npmjs"
		},
		"enzyme-2.8.1.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.8.1.tgz",
			"sha": "53891a75c8fe4d56582c113b3da45713b8215738",
			"registry": "npmjs"
		},
		"enzyme-2.8.2.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.8.2.tgz",
			"sha": "6c8bcb05012abc4aa4bc3213fb23780b9b5b1714",
			"registry": "npmjs"
		},
		"enzyme-2.9.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.9.0.tgz",
			"sha": "f0466188cf92b41da88d7db56c47dea320be4fe3",
			"registry": "npmjs"
		},
		"enzyme-2.9.1.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-2.9.1.tgz",
			"sha": "07d5ce691241240fb817bf2c4b18d6e530240df6",
			"registry": "npmjs"
		},
		"enzyme-3.0.0-alpha.1.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0-alpha.1.tgz",
			"sha": "1e6fab98fe303242a9e6689a0f7c776feed828da",
			"registry": "npmjs"
		},
		"enzyme-3.0.0-beta.1.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0-beta.1.tgz",
			"sha": "3d28e897e75ad935c122df93f87705ab011d71d2",
			"registry": "npmjs"
		},
		"enzyme-3.0.0-beta.2.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0-beta.2.tgz",
			"sha": "35029441bba50982c0aa03a1c88afd5676a950a4",
			"registry": "npmjs"
		},
		"enzyme-3.0.0-beta.3.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0-beta.3.tgz",
			"sha": "9de5be16dcd52de0940c9c2e6bc764cd501c1f13",
			"registry": "npmjs"
		},
		"enzyme-3.0.0-beta.4.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0-beta.4.tgz",
			"sha": "2f83601002f77637c9bc657eef3ead12679a4366",
			"registry": "npmjs"
		},
		"enzyme-3.0.0-beta.5.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0-beta.5.tgz",
			"sha": "53aa65a85e251ea89fa2d0ba7b120010d90229ff",
			"registry": "npmjs"
		},
		"enzyme-3.0.0-beta.6.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0-beta.6.tgz",
			"sha": "6f4f60d8e2104fc6637fa01d9b4d6e9f42eca8e1",
			"registry": "npmjs"
		},
		"enzyme-3.0.0-beta.7.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0-beta.7.tgz",
			"sha": "4931d3c790191d335013e25d49d08ae3ec9b31fd",
			"registry": "npmjs"
		},
		"enzyme-3.0.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.0.0.tgz",
			"sha": "94ce364254dc654c4e619b25eecc644bf6481de7",
			"registry": "npmjs"
		},
		"enzyme-3.1.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.1.0.tgz",
			"sha": "d8ca84085790fbcec6ed40badd14478faee4c25a",
			"registry": "npmjs"
		},
		"enzyme-3.1.1.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.1.1.tgz",
			"sha": "c6948dfccd055d75fbd8627ad1c96a024d0e247b",
			"registry": "npmjs"
		},
		"enzyme-3.2.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.2.0.tgz",
			"sha": "998bdcda0fc71b8764a0017f7cc692c943f54a7a",
			"registry": "npmjs"
		},
		"enzyme-3.3.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.3.0.tgz",
			"sha": "0971abd167f2d4bf3f5bd508229e1c4b6dc50479",
			"registry": "npmjs"
		},
		"enzyme-3.4.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.4.0.tgz",
			"sha": "085c66fe647d8c9c4becd1fee3042c040cda88a6",
			"registry": "npmjs"
		},
		"enzyme-3.4.1.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.4.1.tgz",
			"sha": "d305af5bdb30b8aca56d199110421588c670ea0e",
			"registry": "npmjs"
		},
		"enzyme-3.4.2.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.4.2.tgz",
			"sha": "17bcbec411b6b874c508d31edb51aaf431e88ae7",
			"registry": "npmjs"
		},
		"enzyme-3.4.3.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.4.3.tgz",
			"sha": "86c4a1219a967cddb8d0359f28e119a93302014b",
			"registry": "npmjs"
		},
		"enzyme-3.4.4.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.4.4.tgz",
			"sha": "92c7c6b9e59d4ef0c3d36a75dccc0e41a5c14d21",
			"registry": "npmjs"
		},
		"enzyme-3.5.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.5.0.tgz",
			"sha": "fd452a698fd1352c737b641dd3a64e079f42d9d5",
			"registry": "npmjs"
		},
		"enzyme-3.5.1.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.5.1.tgz",
			"sha": "aad0cbd005fee4cfd800b6451b64112b5374da67",
			"registry": "npmjs"
		},
		"enzyme-3.6.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.6.0.tgz",
			"sha": "d213f280a258f61e901bc663d4cc2d6fd9a9dec8",
			"registry": "npmjs"
		},
		"enzyme-3.7.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.7.0.tgz",
			"sha": "9b499e8ca155df44fef64d9f1558961ba1385a46",
			"registry": "npmjs"
		},
		"enzyme-3.8.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.8.0.tgz",
			"sha": "646d2d5d0798cb98fdec39afcee8a53237b47ad5",
			"registry": "npmjs"
		},
		"enzyme-3.9.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.9.0.tgz",
			"sha": "2b491f06ca966eb56b6510068c7894a7e0be3909",
			"registry": "npmjs"
		},
		"enzyme-3.10.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.10.0.tgz",
			"sha": "7218e347c4a7746e133f8e964aada4a3523452f6",
			"registry": "npmjs"
		},
		"enzyme-3.11.0.tgz": {
			"url": "https://registry.npmjs.org/enzyme/-/enzyme-3.11.0.tgz",
			"sha": "71d680c580fe9349f6f5ac6c775bc3e6b7a79c28",
			"registry": "npmjs"
		}
	},
	"_attachments": {
		"enzyme-3.11.0.tgz": {
			"shasum": "71d680c580fe9349f6f5ac6c775bc3e6b7a79c28"
		}
	},
	"_rev": "2-58d457ab97c9c83e",
	"_id": "enzyme",
	"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://github.com/airbnb/enzyme/blob/master/LICENSE.md) [![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\n\nEnzyme is a JavaScript Testing utility for React that makes it easier to test your React Components' output.\nYou can also manipulate, traverse, and in some ways simulate runtime given the output.\n\nEnzyme's API is meant to be intuitive and flexible by mimicking jQuery's API for DOM manipulation\nand traversal.\n\nUpgrading from Enzyme 2.x or React < 16\n===========\n\nAre you here to check whether or not Enzyme is compatible with React 16? Are you currently using\nEnzyme 2.x? Great! Check out our [migration guide](/docs/guides/migration-from-2-to-3.md) for help\nmoving on to Enzyme v3 where React 16 is supported.\n\n### [Installation](/docs/installation/README.md)\n\nTo get started with enzyme, you can simply install it via npm. You will need to install enzyme\nalong with an Adapter corresponding to the version of react (or other UI Component library) you\nare using. For instance, if you are using enzyme with React 16, you can run:\n\n```bash\nnpm i --save-dev enzyme enzyme-adapter-react-16\n```\n\nEach adapter may have additional peer dependencies which you will need to install as well. For instance,\n`enzyme-adapter-react-16` has peer dependencies on `react` and `react-dom`.\n\nAt the moment, Enzyme has adapters that provide compatibility with `React 16.x`, `React 15.x`,\n`React 0.14.x` and `React 0.13.x`.\n\nThe following adapters are officially provided by enzyme, and have the following compatibility with\nReact:\n\n| Enzyme Adapter Package | React semver compatibility |\n| --- | --- |\n| `enzyme-adapter-react-16` | `^16.4.0-0` |\n| `enzyme-adapter-react-16.3` | `~16.3.0-0` |\n| `enzyme-adapter-react-16.2` | `~16.2` |\n| `enzyme-adapter-react-16.1` | `~16.0.0-0 \\|\\| ~16.1` |\n| `enzyme-adapter-react-15` | `^15.5.0` |\n| `enzyme-adapter-react-15.4` | `15.0.0-0 - 15.4.x` |\n| `enzyme-adapter-react-14` | `^0.14.0` |\n| `enzyme-adapter-react-13` | `^0.13.0` |\n\nFinally, you need to configure enzyme to use the adapter you want it to use. To do this, you can use\nthe top level `configure(...)` API.\n\n```js\nimport Enzyme from 'enzyme';\nimport Adapter from 'enzyme-adapter-react-16';\n\nEnzyme.configure({ adapter: new Adapter() });\n```\n\n3rd Party Adapters\n=============\n\nIt is possible for the community to create additional (non-official) adapters that will make enzyme\nwork with other libraries. If you have made one and it's not included in the list below, feel free\nto make a PR to this README and add a link to it! The known 3rd party adapters are:\n\n| Adapter Package | For Library | Status |\n| --- | --- | --- |\n| [`enzyme-adapter-preact-pure`](https://github.com/preactjs/enzyme-adapter-preact-pure) | [`preact`](https://github.com/developit/preact) | (stable) |\n|[`enzyme-adapter-inferno`](https://github.com/bbc/enzyme-adapter-inferno)|[`inferno`](https://github.com/infernojs/inferno)|(work in progress)|\n\nRunning Enzyme Tests\n===========\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/FormidableLabs/enzyme-matchers/tree/master/packages/jasmine-enzyme) with Jasmine.\n* [`jest-enzyme`](https://github.com/FormidableLabs/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\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.lengthOf(3);\n  });\n\n  it('renders an `.icon-star`', () => {\n    const wrapper = shallow(<MyComponent />);\n    expect(wrapper.find('.icon-star')).to.have.lengthOf(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(<Foo onButtonClick={onButtonClick} />);\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')).to.have.lengthOf(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### React Hooks support\n\nEnzyme supports [react hooks](https://reactjs.org/docs/hooks-intro.html) with some limitations in [`.shallow()`](https://airbnb.io/enzyme/docs/api/shallow.html) due to upstream issues in React's shallow renderer:\n\n* `useEffect()` and `useLayoutEffect()` don't get called in the React shallow renderer. [Related issue](https://github.com/facebook/react/issues/15275)\n\n* `useCallback()` doesn't memoize callback in React shallow renderer. [Related issue](https://github.com/facebook/react/issues/15774)\n\n#### [`ReactTestUtils.act()`](https://reactjs.org/docs/test-utils.html#act) wrap\n\nIf you're using React 16.8+ and `.mount()`, Enzyme will wrap apis including [`.simulate()`](https://airbnb.io/enzyme/docs/api/ReactWrapper/simulate.html), [`.setProps()`](https://airbnb.io/enzyme/docs/api/ReactWrapper/setProps.html), [`.setContext()`](https://airbnb.io/enzyme/docs/api/ReactWrapper/setContext.html), [`.invoke()`](https://airbnb.io/enzyme/docs/api/ReactWrapper/invoke.html) with [`ReactTestUtils.act()`](https://reactjs.org/docs/test-utils.html#act) so you don't need to manually wrap it.\n\nA common pattern to trigger handlers with `.act()` and assert is:\n\n```javascript\nconst wrapper = mount(<SomeComponent />);\nact(() => wrapper.prop('handler')());\nwrapper.update();\nexpect(/* ... */);\n```\n\nWe cannot wrap the result of `.prop()` (or `.props()`) with `.act()` in Enzyme internally since it will break the equality of the returned value.\nHowever, you could use `.invoke()` to simplify the code:\n\n```javascript\nconst wrapper = mount(<SomeComponent />);\nwrapper.invoke('handler')();\nexpect(/* ... */);\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)"
}