{"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"keywords":["history","location"],"dist-tags":{"latest":"4.6.3"},"author":{"name":"Michael Jackson"},"description":"Manage session history with JavaScript","readme":"# history [![Travis][build-badge]][build] [![npm package][npm-badge]][npm]\n\n[build-badge]: https://img.shields.io/travis/ReactTraining/history/master.svg?style=flat-square\n[build]: https://travis-ci.org/ReactTraining/history\n\n[npm-badge]: https://img.shields.io/npm/v/history.svg?style=flat-square\n[npm]: https://www.npmjs.org/package/history\n\n[`history`](https://www.npmjs.com/package/history) is a JavaScript library that lets you easily manage session history anywhere JavaScript runs. `history` abstracts away the differences in various environments and provides a minimal API that lets you manage the history stack, navigate, confirm navigation, and persist state between sessions.\n\n## Installation\n\nUsing [npm](https://www.npmjs.com/):\n\n    $ npm install --save history\n\nThen with a module bundler like [webpack](https://webpack.github.io/), use as you would anything else:\n\n```js\n// using ES6 modules\nimport createHistory from 'history/createBrowserHistory'\n\n// using CommonJS modules\nvar createHistory = require('history').createBrowserHistory\n```\n\nThe UMD build is also available on [unpkg](https://unpkg.com):\n\n```html\n<script src=\"https://unpkg.com/history/umd/history.min.js\"></script>\n```\n\nYou can find the library on `window.History`.\n\n## Usage\n\n`history` provides 3 different methods for creating a `history` object, depending on your environment.\n\n- `createBrowserHistory` is for use in modern web browsers that support the [HTML5 history API](http://diveintohtml5.info/history.html) (see [cross-browser compatibility](http://caniuse.com/#feat=history))\n- `createMemoryHistory` is used as a reference implementation and may also be used in non-DOM environments, like [React Native](https://facebook.github.io/react-native/) or tests\n- `createHashHistory` is for use in legacy web browsers\n\nDepending on the method you want to use to keep track of history, you'll `import` (or `require`) one of these methods directly from the package root (i.e. `history/createBrowserHistory`). The remainder of this document uses the term `createHistory` to refer to any of these implementations.\n\nBasic usage looks like this:\n\n```js\nimport createHistory from 'history/createBrowserHistory'\n\nconst history = createHistory()\n\n// Get the current location.\nconst location = history.location\n\n// Listen for changes to the current location.\nconst unlisten = history.listen((location, action) => {\n  // location is an object like window.location\n  console.log(action, location.pathname, location.state)\n})\n\n// Use push, replace, and go to navigate around.\nhistory.push('/home', { some: 'state' })\n\n// To stop listening, call the function returned from listen().\nunlisten()\n```\n\nThe options that each `create` method takes, along with its default values, are:\n\n```js\ncreateBrowserHistory({\n  basename: '',             // The base URL of the app (see below)\n  forceRefresh: false,      // Set true to force full page refreshes\n  keyLength: 6,             // The length of location.key\n  // A function to use to confirm navigation with the user (see below)\n  getUserConfirmation: (message, callback) => callback(window.confirm(message))\n})\n\ncreateMemoryHistory({\n  initialEntries: [ '/' ],  // The initial URLs in the history stack\n  initialIndex: 0,          // The starting index in the history stack\n  keyLength: 6,             // The length of location.key\n  // A function to use to confirm navigation with the user. Required\n  // if you return string prompts from transition hooks (see below)\n  getUserConfirmation: null\n})\n\ncreateHashHistory({\n  basename: '',             // The base URL of the app (see below)\n  hashType: 'slash',        // The hash type to use (see below)\n  // A function to use to confirm navigation with the user (see below)\n  getUserConfirmation: (message, callback) => callback(window.confirm(message))\n})\n```\n\n### Properties\n\nEach `history` object has the following properties:\n\n- `history.length` - The number of entries in the history stack\n- `history.location` - The current location (see below)\n- `history.action` - The current navigation action (see below)\n\nAdditionally, `createMemoryHistory` provides `history.index` and `history.entries` properties that let you inspect the history stack.\n\n### Listening\n\nYou can listen for changes to the current location using `history.listen`:\n\n```js\nhistory.listen((location, action) => {\n  console.log(`The current URL is ${location.pathname}${location.search}${location.hash}`)\n  console.log(`The last navigation action was ${action}`)\n})\n```\n\nThe `location` object implements a subset of [the `window.location` interface](https://developer.mozilla.org/en-US/docs/Web/API/Location), including:\n\n- `location.pathname` - The path of the URL\n- `location.search` - The URL query string\n- `location.hash` - The URL hash fragment\n\nLocations may also have the following properties:\n\n- `location.state` - Some extra state for this location that does not reside in the URL (supported in `createBrowserHistory` and `createMemoryHistory`)\n- `location.key` - A unique string representing this location (supported in `createBrowserHistory` and `createMemoryHistory`)\n\nThe `action` is one of `PUSH`, `REPLACE`, or `POP` depending on how the user got to the current URL.\n\n### Navigation\n\n`history` objects may be used programmatically change the current location using the following methods:\n\n- `history.push(path, [state])`\n- `history.replace(path, [state])`\n- `history.go(n)`\n- `history.goBack()`\n- `history.goForward()`\n- `history.canGo(n)` (only in `createMemoryHistory`)\n\nWhen using `push` or `replace` you can either specify both the URL path and state as separate arguments or include everything in a single location-like object as the first argument.\n\n1. A URL path *or*\n2. A location-like object with `{ pathname, search, hash, state }`\n\n```js\n// Push a new entry onto the history stack.\nhistory.push('/home')\n\n// Push a new entry onto the history stack with a query string\n// and some state. Location state does not appear in the URL.\nhistory.push('/home?the=query', { some: 'state' })\n\n// If you prefer, use a single location-like object to specify both\n// the URL and state. This is equivalent to the example above.\nhistory.push({\n  pathname: '/home',\n  search: '?the=query',\n  state: { some: 'state' }\n})\n\n// Go back to the previous history entry. The following\n// two lines are synonymous.\nhistory.go(-1)\nhistory.goBack()\n```\n\n**Note:** Location state is only supported in `createBrowserHistory` and `createMemoryHistory`.\n\n### Blocking Transitions\n\n`history` lets you register a prompt message that will be shown to the user before location listeners are notified. This allows you to make sure the user wants to leave the current page before they navigate away.\n\n```js\n// Register a simple prompt message that will be shown the\n// user before they navigate away from the current page.\nconst unblock = history.block('Are you sure you want to leave this page?')\n\n// Or use a function that returns the message when it's needed.\nhistory.block((location, action) => {\n  // The location and action arguments indicate the location\n  // we're transitioning to and how we're getting there.\n\n  // A common use case is to prevent the user from leaving the\n  // page if there's a form they haven't submitted yet.\n  if (input.value !== '')\n    return 'Are you sure you want to leave this page?'\n})\n\n// To stop blocking transitions, call the function returned from block().\nunblock()\n```\n\n**Note:** You'll need to provide a `getUserConfirmation` function to use this feature with `createMemoryHistory` (see below).\n\n### Customizing the Confirm Dialog\n\nBy default, [`window.confirm`](https://developer.mozilla.org/en-US/docs/Web/API/Window/confirm) is used to show prompt messages to the user. If you need to override this behavior (or if you're using `createMemoryHistory`, which doesn't assume a DOM environment), provide a `getUserConfirmation` function when you create your history object.\n\n```js\nconst history = createHistory({\n  getUserConfirmation(message, callback) {\n    // Show some custom dialog to the user and call\n    // callback(true) to continue the transiton, or\n    // callback(false) to abort it.\n  }\n})\n```\n\n### Using a Base URL\n\nIf all the URLs in your app are relative to some other \"base\" URL, use the `basename` option. This option transparently adds the given string to the front of all URLs you use.\n\n```js\nconst history = createHistory({\n  basename: '/the/base'\n})\n\nhistory.listen(location => {\n  console.log(location.pathname) // /home\n})\n\nhistory.push('/home') // URL is now /the/base/home\n```\n\n**Note:** `basename` is not suppported in `createMemoryHistory`.\n\n### Forcing Full Page Refreshes in createBrowserHistory\n\nBy default `createBrowserHistory` uses HTML5 `pushState` and `replaceState` to prevent reloading the entire page from the server while navigating around. If instead you would like to reload as the URL changes, use the `forceRefresh` option.\n\n```js\nconst history = createBrowserHistory({\n  forceRefresh: true\n})\n```\n\n### Modifying the Hash Type in createHashHistory\n\nBy default `createHashHistory` uses a leading slash in hash-based URLs. You can use the `hashType` option to use a different hash formatting.\n\n\n```js\nconst history = createHashHistory({\n  hashType: 'slash' // the default\n})\n\nhistory.push('/home') // window.location.hash is #/home\n\nconst history = createHashHistory({\n  hashType: 'noslash' // Omit the leading slash\n})\n\nhistory.push('/home') // window.location.hash is #home\n\nconst history = createHashHistory({\n  hashType: 'hashbang' // Google's legacy AJAX URL format\n})\n\nhistory.push('/home') // window.location.hash is #!/home\n```\n\n## Thanks\n\nA big thank-you to [Dan Shaw](https://www.npmjs.com/~dshaw) for letting us use the `history` npm package name! Thanks Dan!\n\nAlso, thanks to [BrowserStack](https://www.browserstack.com/) for providing the infrastructure that allows us to run our build in real browsers.\n","repository":{"type":"git","url":"git+https://github.com/reacttraining/history.git"},"users":{"tunnckocore":true,"flockonus":true,"fishrock123":true,"markthethomas":true,"vbv":true,"ivangaravito":true,"timqian":true,"nelix":true,"wkaifang":true,"superwf":true,"calmwinds":true,"lcdss":true,"kay.sackey":true,"stefanof":true,"nexume":true,"vutran":true,"xiaochao":true,"mysticatea":true,"ratneshn":true,"mrmartineau":true,"ugarz":true,"flynntsc":true,"freebird":true,"koulmomo":true,"qqcome110":true,"ziflex":true,"escript":true,"yuwen":true,"zhongyuan":true,"scotchulous":true,"zixinliango":true,"justdomepaul":true,"mswanson1524":true,"shanewholloway":true,"jmsmrgn":true,"tsyue":true,"wedneyyuri":true,"vifird":true,"erickeno":true,"edwardxyt":true,"wujr5":true,"shakakira":true,"tedyhy":true,"wearevilla":true,"bs-thomas":true,"leonzhao":true,"chinawolf_wyp":true,"ivan.marquez":true,"laurentknauss":true,"jcottam":true,"josokinas":true,"atulmy":true,"kswedberg":true,"daniel-zahariev":true,"dhanya-kr":true,"larrychen":true,"rahulraghavankklm":true,"nguyenxuantruong.dev":true,"ldq-first":true,"oleg_tsyba":true},"bugs":{"url":"https://github.com/reacttraining/history/issues"},"license":"MIT","versions":{"0.1.0":{"name":"history","version":"0.1.0","description":"Project history cli tool","keywords":["history","markdown","cli"],"author":{"name":"Daniel D. Shaw","email":"dshaw@dshaw.com","url":"http://dshaw.com"},"repository":{"type":"git","url":"git://github.com/dshaw/history.git"},"bugs":{"url":"http://github.com/dshaw/history/issues"},"main":"./lib/history.js","bin":{"hist":"./history.js"},"scripts":{"test":"make test"},"dependencies":{},"devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_npmUser":{"name":"dshaw","email":"dshaw@dshaw.com"},"_id":"history@0.1.0","_engineSupported":true,"_npmVersion":"1.1.18","_nodeVersion":"v0.7.8","_defaultsLoaded":true,"dist":{"shasum":"2c79f30b0349f19e75265d0a133173405a4d5d67","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-0.1.0.tgz"},"maintainers":[{"name":"dshaw","email":"dshaw@dshaw.com"}],"directories":{}},"1.0.0":{"name":"history","version":"1.0.0","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"scripts/build.sh","prepublish":"npm run build","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0-rc-1","expect":"^1.8.0","karma":"^0.12.28","karma-browserstack-launcher":"^0.1.2","karma-chrome-launcher":"^0.1.7","karma-cli":"^0.0.4","karma-firefox-launcher":"^0.1.3","karma-mocha":"^0.1.10","karma-mocha-reporter":"^1.0.3","karma-sourcemap-loader":"^0.3.2","karma-webpack":"^1.3.1","mocha":"^2.0.1","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"fe2c96fc0a2cc4236f40468547cd59b30fc5389e","homepage":"https://github.com/rackt/history","_id":"history@1.0.0","_shasum":"684c38d562ddc6caa482f9ebc37d3a11d49b5087","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"dshaw","email":"dshaw@dshaw.com"},{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"684c38d562ddc6caa482f9ebc37d3a11d49b5087","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.0.0.tgz"},"directories":{}},"1.1.0":{"name":"history","version":"1.1.0","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"scripts/build.sh","prepublish":"npm run build","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"f09171b73067ae042a0042efdec8b4ad1668fe66","homepage":"https://github.com/rackt/history","_id":"history@1.1.0","_shasum":"7936cf0b7e700d2b725570d1e521c16b509072d4","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"7936cf0b7e700d2b725570d1e521c16b509072d4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.1.0.tgz"},"directories":{}},"1.2.0":{"name":"history","version":"1.2.0","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"scripts/build.sh","prepublish":"npm run build","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"d809ba220c9da5f6b1dd7961498505116359beed","homepage":"https://github.com/rackt/history","_id":"history@1.2.0","_shasum":"03f916beea9d1525ac5666d4ab095a76810239a7","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"03f916beea9d1525ac5666d4ab095a76810239a7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.2.0.tgz"},"directories":{}},"1.2.1":{"name":"history","version":"1.2.1","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"scripts/build.sh","prepublish":"npm run build","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"a7a629187d39f196423c14da44067bc4735a0071","homepage":"https://github.com/rackt/history","_id":"history@1.2.1","_shasum":"32f5b32fee0738a4eb7f2521f04067de381a69ed","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"32f5b32fee0738a4eb7f2521f04067de381a69ed","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.2.1.tgz"},"directories":{}},"1.2.2":{"name":"history","version":"1.2.2","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"scripts/build.sh","prepublish":"npm run build","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"db4e6aa15e5b53a2482e9fc30b20c26a99d66489","homepage":"https://github.com/rackt/history","_id":"history@1.2.2","_shasum":"442e43dfd0e0b7aa2814e5b93530779102c678ca","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"442e43dfd0e0b7aa2814e5b93530779102c678ca","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.2.2.tgz"},"directories":{}},"1.3.0":{"name":"history","version":"1.3.0","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"scripts/build.sh","prepublish":"npm run build","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"4c70113ced631a61b628a04b650c60f9117255e9","homepage":"https://github.com/rackt/history","_id":"history@1.3.0","_shasum":"cd183cd138e1e3ac401fae479085fd4988889a34","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"cd183cd138e1e3ac401fae479085fd4988889a34","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.3.0.tgz"},"directories":{}},"1.3.1":{"name":"history","version":"1.3.1","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"scripts/build.sh","prepublish":"npm run build","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"7b46e153b174e8d57292184e3ba4c56d554d7268","homepage":"https://github.com/rackt/history","_id":"history@1.3.1","_shasum":"ebc402917fcc36e5d155038ab67ebf6436b495d2","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"ebc402917fcc36e5d155038ab67ebf6436b495d2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.3.1.tgz"},"directories":{}},"1.3.2":{"name":"history","version":"1.3.2","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js lib/umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js lib/umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"e9de38d2d626560f36dbc2db5b7d4526d972df1c","homepage":"https://github.com/rackt/history","_id":"history@1.3.2","_shasum":"ed663ec07f5d7c80f21b9c4c8c2ab58993a6d420","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"ed663ec07f5d7c80f21b9c4c8c2ab58993a6d420","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.3.2.tgz"},"directories":{}},"1.3.3":{"name":"history","version":"1.3.3","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js lib/umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js lib/umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"7424e1d13fe660785d17700c0233c761f1a28bc5","homepage":"https://github.com/rackt/history","_id":"history@1.3.3","_shasum":"fa98b2ea84270f50b5932b828e94fcf66db7f9d7","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"fa98b2ea84270f50b5932b828e94fcf66db7f9d7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.3.3.tgz"},"directories":{}},"1.4.0":{"name":"history","version":"1.4.0","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js lib/umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js lib/umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"bbefbf16d85a1c872aead48849b55df3b066f3ce","homepage":"https://github.com/rackt/history","_id":"history@1.4.0","_shasum":"ea96594311234764527c65e10bec81d31bb65625","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"ea96594311234764527c65e10bec81d31bb65625","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.4.0.tgz"},"directories":{}},"1.4.1":{"name":"history","version":"1.4.1","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js lib/umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js lib/umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"da3f06bc86b2ee032e0dd57c5d6310a9c0e86021","homepage":"https://github.com/rackt/history","_id":"history@1.4.1","_shasum":"ac17d0fbc6afb83524c7d0a3f2701d9191aa4654","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"ac17d0fbc6afb83524c7d0a3f2701d9191aa4654","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.4.1.tgz"},"directories":{}},"1.5.0":{"name":"history","version":"1.5.0","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js lib/umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js lib/umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"adf5f219145bb2f9273ff1fb93245f514d4a2c19","homepage":"https://github.com/rackt/history","_id":"history@1.5.0","_shasum":"01d188fa152d7862d99d28fc987c25c610ceeb6e","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"01d188fa152d7862d99d28fc987c25c610ceeb6e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.5.0.tgz"},"directories":{}},"1.6.0":{"name":"history","version":"1.6.0","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js lib/umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js lib/umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"5e26509939742def9346d09d4d2fecaada8ee506","homepage":"https://github.com/rackt/history","_id":"history@1.6.0","_shasum":"4b2b69261911f705fddc04e2b4b128ba1d72cd5d","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"4b2b69261911f705fddc04e2b4b128ba1d72cd5d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.6.0.tgz"},"directories":{}},"1.7.0":{"name":"history","version":"1.7.0","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js lib/umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js lib/umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"71d08d591efa94b02b16d9a4227a569499acace5","homepage":"https://github.com/rackt/history","_id":"history@1.7.0","_shasum":"9d0e0fa4ed5fe7435253405af5ec778a71f8edd8","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"9d0e0fa4ed5fe7435253405af5ec778a71f8edd8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.7.0.tgz"},"directories":{}},"1.8.0":{"name":"history","version":"1.8.0","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js lib/umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js lib/umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"54483bea7727821eefa16ad296d59213c1bc7c35","homepage":"https://github.com/rackt/history","_id":"history@1.8.0","_shasum":"b09116aa7cb6ca416d619711b5d0bd4dee29c791","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"b09116aa7cb6ca416d619711b5d0bd4dee29c791","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.8.0.tgz"},"directories":{}},"1.8.1":{"name":"history","version":"1.8.1","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js lib/umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js lib/umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","tough-cookie":"^2.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"de1850f70b6674cc6445fae692660ae4208a293e","homepage":"https://github.com/rackt/history","_id":"history@1.8.1","_shasum":"bb8155ce711db359cf0467e300eae9dc17306dfc","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"bb8155ce711db359cf0467e300eae9dc17306dfc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.8.1.tgz"},"directories":{}},"1.8.2":{"name":"history","version":"1.8.2","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js lib/umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js lib/umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","tough-cookie":"^2.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"0f70c43e51a65a191ef66d368ddcb625b8b4bd97","homepage":"https://github.com/rackt/history","_id":"history@1.8.2","_shasum":"3170edf043a8caf888ba488b3f99dcdda7a6bd13","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"3170edf043a8caf888ba488b3f99dcdda7a6bd13","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.8.2.tgz"},"directories":{}},"1.8.3":{"name":"history","version":"1.8.3","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js lib/umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js lib/umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"ea03f695d188313ed1bca313ec5bcbe134d5acf0","homepage":"https://github.com/rackt/history","_id":"history@1.8.3","_shasum":"b97fdea3f63609ae4b9d54ee006967b205da6162","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"b97fdea3f63609ae4b9d54ee006967b205da6162","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.8.3.tgz"},"directories":{}},"1.8.4":{"name":"history","version":"1.8.4","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js lib/umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js lib/umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"6c5a3ccd32c9b6ac88ab971a39ac846896f55c2e","homepage":"https://github.com/rackt/history","_id":"history@1.8.4","_shasum":"467093656514266b159bd422f6c46ca2608236a7","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"467093656514266b159bd422f6c46ca2608236a7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.8.4.tgz"},"directories":{}},"1.8.5":{"name":"history","version":"1.8.5","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js lib/umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js lib/umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"c177b22010545f2dc6269a0bd0ffc39262279d84","homepage":"https://github.com/rackt/history","_id":"history@1.8.5","_shasum":"c66e26eccb91ade3b6c30d6ca16947d37674c30e","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"c66e26eccb91ade3b6c30d6ca16947d37674c30e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.8.5.tgz"},"directories":{}},"1.9.0":{"name":"history","version":"1.9.0","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"^1.0.0","expect":"^1.8.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"e9b16da106f1567f81c4f17a709ac287d1396735","homepage":"https://github.com/rackt/history","_id":"history@1.9.0","_shasum":"0527bc87de22e9f11ccf33e8bb8b1a9a89b2d6d7","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"ryanflorence","email":"rpflorence@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"},{"name":"ryanflorence","email":"rpflorence@gmail.com"}],"dist":{"shasum":"0527bc87de22e9f11ccf33e8bb8b1a9a89b2d6d7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.9.0.tgz"},"directories":{}},"1.9.1":{"name":"history","version":"1.9.1","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"eslint modules && karma start","lint":"eslint modules","postinstall":"node -e \"require('fs').stat('lib', function (e, s) { process.exit(e || !s.isDirectory() ? 1 : 0) })\" || npm run build","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"1.4.1","eslint-plugin-react":"3.3.2","expect":"1.10.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"008cefe8c6f32bb99fec8d963c91904e490b5172","homepage":"https://github.com/rackt/history#readme","_id":"history@1.9.1","_shasum":"f5463faf00d7081b240bb53ac2b93462ffeb7e75","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"f5463faf00d7081b240bb53ac2b93462ffeb7e75","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.9.1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"},{"name":"ryanflorence","email":"rpflorence@gmail.com"}],"directories":{}},"1.10.0":{"name":"history","version":"1.10.0","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","lint":"eslint modules","postinstall":"node -e \"require('fs').stat('lib', function (e, s) { process.exit(e || !s.isDirectory() ? 1 : 0) })\" || npm run build","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"1.4.1","eslint-plugin-react":"3.3.2","expect":"1.10.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"4baf6d740965b4bbb119c13823c5de90b3d594d0","homepage":"https://github.com/rackt/history#readme","_id":"history@1.10.0","_shasum":"19ef6e73eda3a639b5c09e1e0c74c5b99b6ec8c3","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"19ef6e73eda3a639b5c09e1e0c74c5b99b6ec8c3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.10.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"},{"name":"ryanflorence","email":"rpflorence@gmail.com"}],"directories":{}},"1.10.1":{"name":"history","version":"1.10.1","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","lint":"eslint modules","postinstall":"node -e \"require('fs').stat('lib', function (e, s) { process.exit(e || !s.isDirectory() ? 1 : 0) })\" || npm run build","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"1.4.1","eslint-plugin-react":"3.3.2","expect":"1.10.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"7ea040ecd24d11181f1ac2d8aa5eb6c8f4e1d442","homepage":"https://github.com/rackt/history#readme","_id":"history@1.10.1","_shasum":"89099e529e92556fb37e19c6278f3f9345fc8f50","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"89099e529e92556fb37e19c6278f3f9345fc8f50","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.10.1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"},{"name":"ryanflorence","email":"rpflorence@gmail.com"}],"directories":{}},"1.10.2":{"name":"history","version":"1.10.2","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","lint":"eslint modules","postinstall":"node -e \"require('fs').stat('lib', function (e, s) { process.exit(e || !s.isDirectory() ? 1 : 0) })\" || npm run build","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"1.4.1","eslint-plugin-react":"3.3.2","expect":"1.10.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"33c0e366b6bbd652aac9bc9bf21576ca9607ac2b","homepage":"https://github.com/rackt/history#readme","_id":"history@1.10.2","_shasum":"ead61422b2d37349c3eed6844e26a3d7d271b80f","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"ead61422b2d37349c3eed6844e26a3d7d271b80f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.10.2.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"},{"name":"ryanflorence","email":"rpflorence@gmail.com"}],"directories":{}},"1.11.0":{"name":"history","version":"1.11.0","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules --stage 0 --loose all -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","lint":"eslint modules","postinstall":"node -e \"require('fs').stat('lib', function (e, s) { process.exit(e || !s.isDirectory() ? 1 : 0) })\" || npm run build","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"1.4.1","eslint-plugin-react":"3.3.2","expect":"1.10.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"6d0fc697ec65ad8c72042aa67c5d17025bdedcd9","homepage":"https://github.com/rackt/history#readme","_id":"history@1.11.0","_shasum":"f770d581b94cdeb9f6d54bfb21c052e53207634f","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"f770d581b94cdeb9f6d54bfb21c052e53207634f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.11.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"},{"name":"ryanflorence","email":"rpflorence@gmail.com"}],"directories":{}},"1.11.1":{"name":"history","version":"1.11.1","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules --stage 0 --loose all -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","lint":"eslint modules","postinstall":"node -e \"require('fs').stat('lib', function (e, s) { process.exit(e || !s.isDirectory() ? 1 : 0) })\" || npm run build","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"1.4.1","eslint-plugin-react":"3.3.2","expect":"1.10.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"51b199cbf43caefef0c13080a9299fbe3ec93816","homepage":"https://github.com/rackt/history#readme","_id":"history@1.11.1","_shasum":"abfbe68435ef295d600ecc65772c90b694e87d73","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"abfbe68435ef295d600ecc65772c90b694e87d73","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.11.1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"},{"name":"ryanflorence","email":"rpflorence@gmail.com"}],"directories":{}},"1.12.0":{"name":"history","version":"1.12.0","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules --stage 0 --loose all -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","lint":"eslint modules","postinstall":"node -e \"require('fs').stat('lib', function (e, s) { process.exit(e || !s.isDirectory() ? 1 : 0) })\" || npm run build","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"1.4.1","eslint-plugin-react":"3.3.2","expect":"1.10.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"de6febdf33fca3a62954ea39ff5bb6d6967e8c3b","homepage":"https://github.com/rackt/history#readme","_id":"history@1.12.0","_shasum":"5fd3aca02de84bdeac016aeacff06344af725442","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"5fd3aca02de84bdeac016aeacff06344af725442","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.12.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"},{"name":"ryanflorence","email":"rpflorence@gmail.com"}],"directories":{}},"1.12.1":{"name":"history","version":"1.12.1","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules --stage 0 --loose all -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","lint":"eslint modules","postinstall":"node -e \"require('fs').stat('lib', function (e, s) { process.exit(e || !s.isDirectory() ? 1 : 0) })\" || npm run build","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"1.4.1","eslint-plugin-react":"3.3.2","expect":"^1.12.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"0f65e2a1099afb6eec87ebce67971b570fdf4ee5","homepage":"https://github.com/rackt/history#readme","_id":"history@1.12.1","_shasum":"727a69008841e6bb1fe92b22ce7c69974a0c2f38","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"727a69008841e6bb1fe92b22ce7c69974a0c2f38","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.12.1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"},{"name":"ryanflorence","email":"rpflorence@gmail.com"}],"directories":{}},"1.12.2":{"name":"history","version":"1.12.2","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules --stage 0 --loose all -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","lint":"eslint modules","postinstall":"node -e \"require('fs').stat('lib', function (e, s) { process.exit(e || !s.isDirectory() ? 1 : 0) })\" || npm run build","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"1.4.1","eslint-plugin-react":"3.3.2","expect":"^1.12.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"fbb559c7e6b9559eb18f0a92b956ff2a5648be83","homepage":"https://github.com/rackt/history#readme","_id":"history@1.12.2","_shasum":"b1ca102bdb2f2741ea586a50ada24ed9d5529817","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"b1ca102bdb2f2741ea586a50ada24ed9d5529817","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.12.2.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"},{"name":"ryanflorence","email":"rpflorence@gmail.com"}],"directories":{}},"1.12.3":{"name":"history","version":"1.12.3","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules --stage 0 --loose all -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","lint":"eslint modules","postinstall":"node -e \"require('fs').stat('lib', function (e, s) { process.exit(e || !s.isDirectory() ? 1 : 0) })\" || npm run build","prepublish":"npm run build"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"1.4.1","eslint-plugin-react":"3.3.2","expect":"^1.12.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"57e8cfa342d21b12a547b3c252b01d24f1af1206","homepage":"https://github.com/rackt/history#readme","_id":"history@1.12.3","_shasum":"e997202055e7320d04b496e918736c624c94ac42","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"e997202055e7320d04b496e918736c624c94ac42","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.12.3.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"},{"name":"ryanflorence","email":"rpflorence@gmail.com"}],"directories":{}},"1.12.4":{"name":"history","version":"1.12.4","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules --stage 0 --loose all -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","postinstall":"node npm-scripts/postinstall.js"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"1.4.1","eslint-plugin-react":"3.3.2","expect":"^1.12.0","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"0d9ee0888288e689eb9a85db178bae2b23dcce6a","homepage":"https://github.com/rackt/history#readme","_id":"history@1.12.4","_shasum":"0af62c0f4f62e9ef2ac9b495ca226f57abd1ff07","_from":".","_npmVersion":"3.3.6","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"0af62c0f4f62e9ef2ac9b495ca226f57abd1ff07","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.12.4.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"},{"name":"ryanflorence","email":"rpflorence@gmail.com"}],"directories":{}},"1.12.5":{"name":"history","version":"1.12.5","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules --stage 0 --loose all -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","postinstall":"node npm-scripts/postinstall.js"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"1.4.1","eslint-plugin-react":"3.3.2","expect":"^1.12.0","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"6e1838a0460f57b161eec993b332797c7e41d417","homepage":"https://github.com/rackt/history#readme","_id":"history@1.12.5","_shasum":"48ceb881a8903fb9e576dd4d04303dd80f2edc63","_from":".","_npmVersion":"3.3.1","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"48ceb881a8903fb9e576dd4d04303dd80f2edc63","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.12.5.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"},{"name":"ryanflorence","email":"rpflorence@gmail.com"}],"directories":{}},"1.12.6":{"name":"history","version":"1.12.6","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules --stage 0 --loose all -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"1.4.1","eslint-plugin-react":"3.3.2","expect":"^1.12.0","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"9c9ebd035ed42fdbb284896c5474f4c2a183a044","homepage":"https://github.com/rackt/history#readme","_id":"history@1.12.6","_shasum":"2432bb9e25b5ed4ed820a79fc0c2041e6bc9bda4","_from":".","_npmVersion":"3.3.1","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"2432bb9e25b5ed4ed820a79fc0c2041e6bc9bda4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.12.6.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"},{"name":"ryanflorence","email":"rpflorence@gmail.com"}],"directories":{}},"1.13.0":{"name":"history","version":"1.13.0","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules --stage 0 --loose all -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","eslint":"1.4.1","eslint-config-rackt":"1.0.0","eslint-plugin-react":"3.3.2","expect":"^1.12.0","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"c1e1ea8435411bd4697a7b39b4dd86ab306ad075","homepage":"https://github.com/rackt/history#readme","_id":"history@1.13.0","_shasum":"ff75e23680d9f7962c5eb1e159a36d22ae87f4aa","_from":".","_npmVersion":"3.3.1","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"ff75e23680d9f7962c5eb1e159a36d22ae87f4aa","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.13.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"},{"name":"ryanflorence","email":"rpflorence@gmail.com"}],"directories":{}},"1.13.1":{"name":"history","version":"1.13.1","description":"A minimal, functional history implementation for JavaScript","main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"babel ./modules --stage 0 --loose all --plugins dev-expression -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","qs":"^4.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","babel-plugin-dev-expression":"^0.1.0","eslint":"1.4.1","eslint-config-rackt":"1.0.0","eslint-plugin-react":"3.3.2","expect":"^1.12.0","gzip-size":"^3.0.0","isparta-loader":"^1.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-coverage":"^0.5.3","karma-coveralls":"^1.1.2","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"bed59dcd4c0b80bfb7a0017f0563bdb54a8e3225","homepage":"https://github.com/rackt/history#readme","_id":"history@1.13.1","_shasum":"1d0664e667f031d5757ef73e81ef847beb3aedcd","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"1d0664e667f031d5757ef73e81ef847beb3aedcd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.13.1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"},{"name":"ryanflorence","email":"rpflorence@gmail.com"}],"directories":{}},"1.14.0":{"name":"history","version":"1.14.0","description":"A minimal, functional history implementation for JavaScript","files":["*.md","docs","es6","lib","npm-scripts","umd"],"main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"npm run build-cjs && npm run build-es6","build-cjs":"rimraf lib && babel ./modules --stage 0 --loose all --plugins dev-expression -d lib --ignore '__tests__'","build-es6":"rimraf es6 && babel ./modules --stage 0 --loose all --plugins dev-expression -d es6 --blacklist=es6.modules --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","query-string":"^3.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","babel-plugin-dev-expression":"^0.1.0","eslint":"1.4.1","eslint-config-rackt":"1.0.0","eslint-plugin-react":"3.3.2","expect":"^1.12.0","gzip-size":"^3.0.0","isparta-loader":"^1.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-coverage":"^0.5.3","karma-coveralls":"^1.1.2","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"702db62fbb29e9faa3550ed38cebbbdf5b297757","homepage":"https://github.com/rackt/history#readme","_id":"history@1.14.0","_shasum":"7f34f372a90c3c7b65fcb4dc1004af9a84c68300","_from":".","_npmVersion":"3.4.1","_nodeVersion":"5.0.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"7f34f372a90c3c7b65fcb4dc1004af9a84c68300","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.14.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"directories":{}},"1.15.0":{"name":"history","version":"1.15.0","description":"A minimal, functional history implementation for JavaScript","files":["*.md","docs","es6","lib","npm-scripts","umd"],"main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"npm run build-cjs && npm run build-es6","build-cjs":"rimraf lib && babel ./modules --stage 0 --loose all --plugins dev-expression -d lib --ignore '__tests__'","build-es6":"rimraf es6 && babel ./modules --stage 0 --loose all --plugins dev-expression -d es6 --blacklist=es6.modules --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","query-string":"^3.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","babel-plugin-dev-expression":"^0.1.0","eslint":"1.4.1","eslint-config-rackt":"1.0.0","eslint-plugin-react":"3.3.2","expect":"^1.12.0","gzip-size":"^3.0.0","isparta-loader":"^1.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-coverage":"^0.5.3","karma-coveralls":"^1.1.2","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"f7ec1ed278d7837f3d49da226e02973b23186c32","homepage":"https://github.com/rackt/history#readme","_id":"history@1.15.0","_shasum":"67fe73e23b9b98d70eaf61187b0e1a61d72700f7","_from":".","_npmVersion":"3.4.1","_nodeVersion":"5.0.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"67fe73e23b9b98d70eaf61187b0e1a61d72700f7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.15.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"directories":{}},"1.16.0":{"name":"history","version":"1.16.0","description":"A minimal, functional history implementation for JavaScript","files":["*.md","docs","es6","lib","npm-scripts","umd"],"main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"npm run build-cjs && npm run build-es6","build-cjs":"rimraf lib && babel ./modules --stage 0 --loose all --plugins dev-expression -d lib --ignore '__tests__'","build-es6":"rimraf es6 && babel ./modules --stage 0 --loose all --plugins dev-expression -d es6 --blacklist=es6.modules --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","query-string":"^3.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","babel-plugin-dev-expression":"^0.1.0","eslint":"1.4.1","eslint-config-rackt":"1.0.0","eslint-plugin-react":"3.3.2","expect":"^1.12.0","gzip-size":"^3.0.0","isparta-loader":"^1.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-coverage":"^0.5.3","karma-coveralls":"^1.1.2","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"275259f3133df326e824b9ccf8e7e772a6c539eb","homepage":"https://github.com/rackt/history#readme","_id":"history@1.16.0","_shasum":"2b4344ed57cad7b611ef224a63a58d48842b8a4e","_from":".","_npmVersion":"3.4.1","_nodeVersion":"5.0.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"2b4344ed57cad7b611ef224a63a58d48842b8a4e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.16.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"directories":{}},"1.17.0":{"name":"history","version":"1.17.0","description":"A minimal, functional history implementation for JavaScript","files":["*.md","docs","es6","lib","npm-scripts","umd"],"main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"npm run build-cjs && npm run build-es6","build-cjs":"rimraf lib && babel ./modules --stage 0 --loose all --plugins dev-expression -d lib --ignore '__tests__'","build-es6":"rimraf es6 && babel ./modules --stage 0 --loose all --plugins dev-expression -d es6 --blacklist=es6.modules --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","query-string":"^3.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","babel-plugin-dev-expression":"^0.1.0","eslint":"1.4.1","eslint-config-rackt":"1.0.0","eslint-plugin-react":"3.3.2","expect":"^1.12.0","gzip-size":"^3.0.0","isparta-loader":"^1.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-coverage":"^0.5.3","karma-coveralls":"^1.1.2","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"daf0bd52b8f3bc862c58faf4c7d5a40c86afed9e","homepage":"https://github.com/rackt/history#readme","_id":"history@1.17.0","_shasum":"c5483caa5a1d1fea00a1a7d8d19b874016711d29","_from":".","_npmVersion":"3.4.1","_nodeVersion":"5.0.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"c5483caa5a1d1fea00a1a7d8d19b874016711d29","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-1.17.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"directories":{}},"2.0.0-rc1":{"name":"history","version":"2.0.0-rc1","description":"A minimal, functional history implementation for JavaScript","files":["*.md","docs","es6","lib","npm-scripts","umd"],"main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"npm run build-cjs && npm run build-es6","build-cjs":"rimraf lib && babel ./modules --stage 0 --loose all --plugins dev-expression -d lib --ignore '__tests__'","build-es6":"rimraf es6 && babel ./modules --stage 0 --loose all --plugins dev-expression -d es6 --blacklist=es6.modules --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","query-string":"^3.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","babel-plugin-dev-expression":"^0.1.0","eslint":"1.4.1","eslint-config-rackt":"1.0.0","eslint-plugin-react":"3.3.2","expect":"^1.12.0","gzip-size":"^3.0.0","isparta-loader":"^1.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-coverage":"^0.5.3","karma-coveralls":"^1.1.2","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"c5cb8eff5b8bf6619d72629c634130e934f07ac9","homepage":"https://github.com/rackt/history#readme","_id":"history@2.0.0-rc1","_shasum":"d18a624e20fe7ade7e6f803fcf345907e7ea2a50","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"d18a624e20fe7ade7e6f803fcf345907e7ea2a50","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-2.0.0-rc1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"directories":{}},"2.0.0-rc2":{"name":"history","version":"2.0.0-rc2","description":"A minimal, functional history implementation for JavaScript","files":["*.md","docs","es6","lib","npm-scripts","umd"],"main":"lib/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"npm run build-cjs && npm run build-es6","build-cjs":"rimraf lib && babel ./modules --stage 0 --loose all --plugins dev-expression -d lib --ignore '__tests__'","build-es6":"rimraf es6 && babel ./modules --stage 0 --loose all --plugins dev-expression -d es6 --blacklist=es6.modules --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","query-string":"^3.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","babel-plugin-dev-expression":"^0.1.0","eslint":"1.4.1","eslint-config-rackt":"1.0.0","eslint-plugin-react":"3.3.2","expect":"^1.12.0","gzip-size":"^3.0.0","isparta-loader":"^1.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-coverage":"^0.5.3","karma-coveralls":"^1.1.2","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"fa638bc7e95d933430374de8c398243843312e6b","homepage":"https://github.com/rackt/history#readme","_id":"history@2.0.0-rc2","_shasum":"71cc5575bf9afe3e8b06a21f5f8e013c6094325a","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"71cc5575bf9afe3e8b06a21f5f8e013c6094325a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-2.0.0-rc2.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"directories":{}},"2.0.0-rc3":{"name":"history","version":"2.0.0-rc3","description":"A minimal, functional history implementation for JavaScript","files":["*.md","docs","es6","lib","modules/*.js","npm-scripts","umd"],"main":"lib/index","jsnext:main":"es6/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"npm run build-cjs && npm run build-es6","build-cjs":"rimraf lib && babel ./modules --stage 0 --loose all --plugins dev-expression -d lib --ignore '__tests__'","build-es6":"rimraf es6 && babel ./modules --stage 0 --loose all --plugins dev-expression -d es6 --blacklist=es6.modules --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","query-string":"^3.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","babel-plugin-dev-expression":"^0.1.0","eslint":"1.4.1","eslint-config-rackt":"1.0.0","eslint-plugin-react":"3.3.2","expect":"^1.12.0","gzip-size":"^3.0.0","isparta-loader":"^1.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-coverage":"^0.5.3","karma-coveralls":"^1.1.2","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"14555f89e24f4f09494cca03ba188a73cdd014f5","homepage":"https://github.com/rackt/history#readme","_id":"history@2.0.0-rc3","_shasum":"22db11284ed96ae99e2c187cf39c834133f81fa7","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"22db11284ed96ae99e2c187cf39c834133f81fa7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-2.0.0-rc3.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/history-2.0.0-rc3.tgz_1454524992603_0.3894800590351224"},"directories":{}},"2.0.0":{"name":"history","version":"2.0.0","description":"A minimal, functional history implementation for JavaScript","files":["*.md","docs","es6","lib","modules/*.js","npm-scripts","umd"],"main":"lib/index","jsnext:main":"es6/index","repository":{"type":"git","url":"git+https://github.com/rackt/history.git"},"bugs":{"url":"https://github.com/rackt/history/issues"},"scripts":{"build":"npm run build-cjs && npm run build-es6","build-cjs":"rimraf lib && babel ./modules --stage 0 --loose all --plugins dev-expression -d lib --ignore '__tests__'","build-es6":"rimraf es6 && babel ./modules --stage 0 --loose all --plugins dev-expression -d es6 --blacklist=es6.modules --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","test":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","query-string":"^3.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^3.1.23","babel-loader":"^5.0.0","babel-plugin-dev-expression":"^0.1.0","eslint":"1.4.1","eslint-config-rackt":"1.0.0","eslint-plugin-react":"3.3.2","expect":"^1.12.0","gzip-size":"^3.0.0","isparta-loader":"^1.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-coverage":"^0.5.3","karma-coveralls":"^1.1.2","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^2.0.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"b4def645e6ffd99cbee7a387717b826493f07972","homepage":"https://github.com/rackt/history#readme","_id":"history@2.0.0","_shasum":"6d5144af2da8a3dea4e5f1abae11a3c2e868e2c7","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"6d5144af2da8a3dea4e5f1abae11a3c2e868e2c7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-2.0.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/history-2.0.0.tgz_1454610918089_0.9449934186413884"},"directories":{}},"2.0.1":{"name":"history","version":"2.0.1","description":"Manage browser history with JavaScript","files":["es6","lib","modules/*.js","umd"],"main":"lib/index","jsnext:main":"es6/index","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"scripts":{"lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-cjs":"rimraf lib && babel ./modules --stage 0 --loose all --plugins dev-expression -d lib --ignore '__tests__'","build-es6":"rimraf es6 && babel ./modules --stage 0 --loose all --plugins dev-expression -d es6 --blacklist=es6.modules --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"npm run build","test":"npm run lint && karma start"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","query-string":"^3.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.8.35","babel-core":"^5.8.35","babel-eslint":"^4.1.8","babel-loader":"^5.4.0","babel-plugin-dev-expression":"^0.1.0","eslint":"^1.10.3","eslint-config-rackt":"^1.1.1","eslint-plugin-react":"^3.16.1","expect":"^1.12.0","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^3.0.1","readline-sync":"^1.4.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"1b4003f91cfb09c47122831633226a657c5ea686","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@2.0.1","_shasum":"4a0b7f2b87b29f4da2d47910f0c86de0fad579f8","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"4a0b7f2b87b29f4da2d47910f0c86de0fad579f8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-2.0.1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/history-2.0.1.tgz_1456978260388_0.6892792345024645"},"directories":{}},"3.0.0-0":{"name":"history","version":"3.0.0-0","description":"Manage browser history with JavaScript","author":{"name":"Michael Jackson"},"license":"MIT","webpack":"lib","browser":"umd/history.min.js","main":"lib","jsnext:main":"es6/index","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"files":["lib","umd","es6"],"scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-cjs":"rimraf lib && babel ./modules -d lib --ignore '__tests__'","build-es6":"rimraf es6 && babel ./modules -d es6 --blacklist=es6.modules --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/history.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"npm run build","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","query-string":"^3.0.0","warning":"^2.0.0"},"devDependencies":{"babel-cli":"^6.6.5","babel-eslint":"^5.0.0","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-preset-es2015":"^6.6.0","babel-preset-stage-1":"^6.5.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.2","eslint-plugin-react":"^4.1.0","estraverse-fb":"^1.3.1","expect":"^1.12.0","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^3.0.1","readline-sync":"^1.4.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"a06d2ae5a4c1f5166a90a0fdd7394724e9b3bdf0","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@3.0.0-0","_shasum":"b9a7b69b5407ebb8872057f6235129e1032df530","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"b9a7b69b5407ebb8872057f6235129e1032df530","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-3.0.0-0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/history-3.0.0-0.tgz_1458412955089_0.13745062006637454"},"directories":{}},"2.0.2":{"name":"history","version":"2.0.2","description":"Manage browser history with JavaScript","files":["es6","lib","modules/*.js","umd"],"main":"lib/index","jsnext:main":"es6/index","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"scripts":{"lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-cjs":"rimraf lib && babel ./modules --stage 0 --loose all --plugins dev-expression -d lib --ignore '__tests__'","build-es6":"rimraf es6 && babel ./modules --stage 0 --loose all --plugins dev-expression -d es6 --blacklist=es6.modules --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"npm run build","test":"npm run lint && karma start"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","query-string":"^3.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.8.35","babel-core":"^5.8.35","babel-eslint":"^4.1.8","babel-loader":"^5.4.0","babel-plugin-dev-expression":"^0.1.0","eslint":"^1.10.3","eslint-config-rackt":"^1.1.1","eslint-plugin-react":"^3.16.1","expect":"^1.12.0","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^3.0.1","readline-sync":"^1.4.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"7244f6da2c328c5d89d242d27da6dce1704416a6","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@2.0.2","_shasum":"da80077de789603d23747f85373d98d188c37499","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.1","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"da80077de789603d23747f85373d98d188c37499","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-2.0.2.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/history-2.0.2.tgz_1460701793746_0.18748744414187968"},"directories":{}},"2.1.0":{"name":"history","version":"2.1.0","description":"Manage browser history with JavaScript","files":["es6","lib","modules/*.js","umd"],"main":"lib/index","jsnext:main":"es6/index","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"scripts":{"lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-cjs":"rimraf lib && babel ./modules --stage 0 --loose all --plugins dev-expression -d lib --ignore '__tests__'","build-es6":"rimraf es6 && babel ./modules --stage 0 --loose all --plugins dev-expression -d es6 --blacklist=es6.modules --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"npm run build","test":"npm run lint && karma start"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","query-string":"^3.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.8.35","babel-core":"^5.8.35","babel-eslint":"^4.1.8","babel-loader":"^5.4.0","babel-plugin-dev-expression":"^0.1.0","eslint":"^1.10.3","eslint-config-rackt":"^1.1.1","eslint-plugin-react":"^3.16.1","expect":"^1.12.0","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^3.0.1","readline-sync":"^1.4.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"73195152c808a996bd0d239e0e54bfbb8d72f10f","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@2.1.0","_shasum":"7f9cd052fc0dbb5c80e92456f20dd60e086bdc01","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.1","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"7f9cd052fc0dbb5c80e92456f20dd60e086bdc01","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-2.1.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/history-2.1.0.tgz_1461084832925_0.723982299445197"},"directories":{}},"3.0.0-1":{"name":"history","version":"3.0.0-1","description":"Manage browser history with JavaScript","author":{"name":"Michael Jackson"},"license":"MIT","main":"lib","jsnext:main":"es6/index","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"files":["lib","umd","es6"],"scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-cjs":"rimraf lib && babel ./modules -d lib --ignore '__tests__'","build-es6":"rimraf es6 && babel ./modules -d es6 --blacklist=es6.modules --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/history.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"npm run build","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.0.0","query-string":"^3.0.0","warning":"^2.0.0"},"devDependencies":{"babel-cli":"^6.6.5","babel-eslint":"^6.0.0","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-preset-es2015":"^6.6.0","babel-preset-stage-1":"^6.5.0","eslint":"^2.5.1","eslint-config-airbnb":"^6.0.2","eslint-plugin-react":"^4.1.0","expect":"^1.12.0","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^3.0.1","readline-sync":"^1.4.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"babel":{"presets":["es2015","stage-1"],"plugins":["dev-expression"]},"gitHead":"3ab5cca544df7a23941f2b93bd8e1236546ddf3b","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@3.0.0-1","_shasum":"ef69d02d2adf3618cb13af94c2ebe8e39b6193d6","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.1","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"ef69d02d2adf3618cb13af94c2ebe8e39b6193d6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-3.0.0-1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/history-3.0.0-1.tgz_1461086877082_0.6511915260925889"},"directories":{}},"3.0.0-2":{"name":"history","version":"3.0.0-2","description":"Manage browser history with JavaScript","author":{"name":"Michael Jackson"},"license":"MIT","main":"lib","jsnext:main":"es6/index","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"files":["lib","umd","es6"],"scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-cjs":"rimraf lib && babel ./modules -d lib --ignore '__tests__'","build-es6":"rimraf es6 && babel ./modules -d es6 --blacklist=es6.modules --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/history.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"npm run build","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.0.0","query-string":"^3.0.0","warning":"^2.0.0"},"devDependencies":{"babel-cli":"^6.6.5","babel-eslint":"^6.0.0","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-preset-es2015":"^6.6.0","babel-preset-stage-1":"^6.5.0","eslint":"^2.5.1","eslint-config-airbnb":"^6.0.2","eslint-plugin-react":"^4.1.0","expect":"^1.12.0","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^3.0.1","readline-sync":"^1.4.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"babel":{"presets":["es2015","stage-1"],"plugins":["dev-expression"]},"gitHead":"0f9d590dbb7a21beed8d6991c3ef79f60f6efb62","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@3.0.0-2","_shasum":"645b86dc350f9aab6e46f9b702a3a9db4b1feaa8","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.1","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"645b86dc350f9aab6e46f9b702a3a9db4b1feaa8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-3.0.0-2.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/history-3.0.0-2.tgz_1461087227446_0.4683561436831951"},"directories":{}},"2.1.1":{"name":"history","version":"2.1.1","description":"Manage browser history with JavaScript","files":["es6","lib","modules/*.js","umd"],"main":"lib/index","jsnext:main":"es6/index","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"scripts":{"lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-cjs":"rimraf lib && babel ./modules --stage 0 --loose all --plugins dev-expression -d lib --ignore '__tests__'","build-es6":"rimraf es6 && babel ./modules --stage 0 --loose all --plugins dev-expression -d es6 --blacklist=es6.modules --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"npm run build","test":"npm run lint && karma start"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","query-string":"^3.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.8.35","babel-core":"^5.8.35","babel-eslint":"^4.1.8","babel-loader":"^5.4.0","babel-plugin-dev-expression":"^0.1.0","eslint":"^1.10.3","eslint-config-rackt":"^1.1.1","eslint-plugin-react":"^3.16.1","expect":"^1.12.0","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^3.0.1","readline-sync":"^1.4.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"909088007d64b88823341d485347c24deca4e1f0","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@2.1.1","_shasum":"7490ff80c9d42e5b27f46898fcfc7311c6f685e3","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.1","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"7490ff80c9d42e5b27f46898fcfc7311c6f685e3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-2.1.1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/history-2.1.1.tgz_1461769275780_0.1540935467928648"},"directories":{}},"2.1.2":{"name":"history","version":"2.1.2","description":"Manage browser history with JavaScript","files":["es6","lib","modules/*.js","umd"],"main":"lib/index","jsnext:main":"es6/index","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"scripts":{"lint":"eslint modules","start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-cjs":"rimraf lib && babel ./modules --stage 0 --loose all --plugins dev-expression -d lib --ignore '__tests__'","build-es6":"rimraf es6 && babel ./modules --stage 0 --loose all --plugins dev-expression -d es6 --blacklist=es6.modules --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/History.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/History.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"npm run build","test":"npm run lint && karma start"},"authors":["Michael Jackson"],"license":"MIT","dependencies":{"deep-equal":"^1.0.0","invariant":"^2.0.0","query-string":"^3.0.0","warning":"^2.0.0"},"devDependencies":{"assert":"1.3.0","babel":"^5.8.35","babel-core":"^5.8.35","babel-eslint":"^4.1.8","babel-loader":"^5.4.0","babel-plugin-dev-expression":"^0.1.0","eslint":"^1.10.3","eslint-config-rackt":"^1.1.1","eslint-plugin-react":"^3.16.1","expect":"^1.12.0","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.3","karma-chrome-launcher":"^0.2.0","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.4","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^3.0.1","readline-sync":"^1.4.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"gitHead":"4e4af9dfab4cf94522cce5fcac85ec9c19c89e0c","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@2.1.2","_shasum":"4aa2de897a0e4867e4539843be6ecdb2986bfdec","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"4aa2de897a0e4867e4539843be6ecdb2986bfdec","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-2.1.2.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/history-2.1.2.tgz_1464278239354_0.6860733681824058"},"directories":{}},"3.0.0":{"name":"history","version":"3.0.0","description":"Manage browser history with JavaScript","author":{"name":"Michael Jackson"},"license":"MIT","main":"lib","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"files":["lib","umd"],"scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"rimraf lib && babel ./modules -d lib --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.0.0","query-string":"^4.1.0","warning":"^2.0.0"},"devDependencies":{"babel-cli":"^6.8.0","babel-eslint":"^6.0.0","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.6.0","babel-preset-stage-1":"^6.5.0","eslint":"^2.5.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-import":"^1.8.1","eslint-plugin-jsx-a11y":"^1.2.2","eslint-plugin-react":"^5.1.1","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^1.0.0","karma-chrome-launcher":"^1.0.1","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.3","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^3.0.1","readline-sync":"^1.4.1","rimraf":"^2.4.2","webpack":"^1.4.13","webpack-dev-server":"^1.10.1"},"tags":["history","location"],"keywords":["history","location"],"babel":{"presets":["es2015","stage-1"],"plugins":["dev-expression","transform-object-assign"]},"gitHead":"6a92da86cdd1e3311a1fb1e8f9598a1f718820db","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@3.0.0","_shasum":"02cff4e6f69dc62dd81161104a63f5b85ead0c85","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"02cff4e6f69dc62dd81161104a63f5b85ead0c85","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-3.0.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/history-3.0.0.tgz_1464629784864_0.251627802150324"},"directories":{}},"3.1.0":{"name":"history","version":"3.1.0","description":"Manage browser history with JavaScript","repository":{"type":"git","url":"git+https://github.com/reacttraining/history.git"},"author":{"name":"Michael Jackson"},"license":"MIT","main":"lib","files":["lib","umd"],"scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"rimraf lib && babel ./modules -d lib --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.2.1","query-string":"^4.2.2","warning":"^3.0.0","loose-envify":"^1.2.0"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.9.1","babel-eslint":"^6.0.4","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^7.0.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^1.8.1","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","rimraf":"^2.5.2","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"tags":["history","location"],"keywords":["history","location"],"gitHead":"e35e51780079c9d86536972b499ffbc8108a27f0","bugs":{"url":"https://github.com/reacttraining/history/issues"},"homepage":"https://github.com/reacttraining/history#readme","_id":"history@3.1.0","_shasum":"9aa9b11c6659831ef9b25cdfc75c915711ba76eb","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"9aa9b11c6659831ef9b25cdfc75c915711ba76eb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-3.1.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/history-3.1.0.tgz_1472775213124_0.4012174867093563"},"directories":{}},"3.2.0":{"name":"history","version":"3.2.0","description":"Manage browser history with JavaScript","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"author":{"name":"Michael Jackson"},"license":"MIT","main":"lib","files":["lib","umd"],"scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"rimraf lib && babel ./modules -d lib --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.2.1","query-string":"^4.2.2","warning":"^3.0.0","loose-envify":"^1.2.0"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.9.1","babel-eslint":"^6.0.4","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^7.0.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^1.8.1","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","rimraf":"^2.5.2","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"tags":["history","location"],"keywords":["history","location"],"gitHead":"395c71c4f7555df2f35cf3b6f307eb18a7893c90","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@3.2.0","_shasum":"48bee0af905b7674b3cb888e6af8f16731e01d3c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"48bee0af905b7674b3cb888e6af8f16731e01d3c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-3.2.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/history-3.2.0.tgz_1472778320646_0.711355043342337"},"directories":{}},"3.2.1":{"name":"history","version":"3.2.1","description":"Manage browser history with JavaScript","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"author":{"name":"Michael Jackson"},"license":"MIT","main":"lib","files":["lib","umd"],"scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"rimraf lib && babel ./modules -d lib --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.2.1","query-string":"^4.2.2","warning":"^3.0.0","loose-envify":"^1.2.0"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.9.1","babel-eslint":"^6.0.4","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^7.0.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^1.8.1","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","rimraf":"^2.5.2","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"tags":["history","location"],"keywords":["history","location"],"gitHead":"9a5102c38a161f00c6ea027a88b87b0328b5dc93","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@3.2.1","_shasum":"71c7497f4e6090363d19a6713bb52a1bfcdd99aa","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"71c7497f4e6090363d19a6713bb52a1bfcdd99aa","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-3.2.1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/history-3.2.1.tgz_1472835166073_0.6374554564245045"},"directories":{}},"4.0.0-0":{"name":"history","version":"4.0.0-0","description":"Manage browser history with JavaScript","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"author":{"name":"Michael Jackson"},"license":"MIT","scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"babel ./modules -d . --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.2.1","warning":"^3.0.0","loose-envify":"^1.2.0"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.9.1","babel-eslint":"^6.0.4","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^7.0.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^1.8.1","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"keywords":["history","location"],"gitHead":"1df1cc41fc2f38452444efd5733b1a401bbaeae1","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@4.0.0-0","_shasum":"9faedad1df7e689cb4d43310f1e0c7b821a3d425","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"9faedad1df7e689cb4d43310f1e0c7b821a3d425","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-4.0.0-0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/history-4.0.0-0.tgz_1472945527901_0.4681612020358443"},"directories":{}},"4.0.0-1":{"name":"history","version":"4.0.0-1","description":"Manage browser history with JavaScript","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"author":{"name":"Michael Jackson"},"license":"MIT","scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"babel ./modules -d . --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.2.1","warning":"^3.0.0","loose-envify":"^1.2.0"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.9.1","babel-eslint":"^6.0.4","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^7.0.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^1.8.1","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"keywords":["history","location"],"gitHead":"14943ed84714db5f4bc08017f0e6cf39d05c70fc","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@4.0.0-1","_shasum":"b8c959b3ea08f617acacf1fc746443dde1dc790c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"b8c959b3ea08f617acacf1fc746443dde1dc790c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-4.0.0-1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/history-4.0.0-1.tgz_1473289285183_0.9538809072691947"},"directories":{}},"4.0.0-2":{"name":"history","version":"4.0.0-2","description":"Manage browser history with JavaScript","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"author":{"name":"Michael Jackson"},"license":"MIT","scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"babel ./modules -d . --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.2.1","warning":"^3.0.0","loose-envify":"^1.2.0"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.9.1","babel-eslint":"^6.0.4","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^7.0.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^1.8.1","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"keywords":["history","location"],"gitHead":"625670d594ac65d16c46acb1c9c5fab4ec730740","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@4.0.0-2","_shasum":"66eb05d84d4b5f2f798f6080b3328bd510c752ec","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"66eb05d84d4b5f2f798f6080b3328bd510c752ec","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-4.0.0-2.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/history-4.0.0-2.tgz_1473489027368_0.02687554224394262"},"directories":{}},"4.0.0":{"name":"history","version":"4.0.0","description":"Manage browser history with JavaScript","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"author":{"name":"Michael Jackson"},"license":"MIT","scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"babel ./modules -d . --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.2.1","warning":"^3.0.0","loose-envify":"^1.2.0"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.9.1","babel-eslint":"^6.0.4","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^7.0.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^1.8.1","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"keywords":["history","location"],"gitHead":"399c72c4b3e012bebf20128020350427df7bf0ac","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@4.0.0","_shasum":"8440ef8de3042d02af8795ed7e10e1db96adaac4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"8440ef8de3042d02af8795ed7e10e1db96adaac4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-4.0.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/history-4.0.0.tgz_1473526648095_0.3560258324723691"},"directories":{}},"4.0.1":{"name":"history","version":"4.0.1","description":"Manage session history with JavaScript","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"author":{"name":"Michael Jackson"},"license":"MIT","scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"babel ./modules -d . --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.2.1","warning":"^3.0.0","loose-envify":"^1.2.0"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.9.1","babel-eslint":"^6.0.4","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^8.0.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^1.8.1","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"keywords":["history","location"],"gitHead":"7074a3a112663c87387c41939353859a1d4e05d9","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@4.0.1","_shasum":"b6d422180a2f29d72b6631fe141821b6fae2dbae","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"b6d422180a2f29d72b6631fe141821b6fae2dbae","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-4.0.1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/history-4.0.1.tgz_1473721117354_0.5683246315456927"},"directories":{}},"4.1.0":{"name":"history","version":"4.1.0","description":"Manage session history with JavaScript","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"author":{"name":"Michael Jackson"},"license":"MIT","scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"babel ./modules -d . --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.2.1","warning":"^3.0.0","loose-envify":"^1.2.0"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.9.1","babel-eslint":"^6.0.4","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^8.0.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^1.8.1","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"keywords":["history","location"],"gitHead":"8450e07b00ef08f10aba2fd6bd94d337e9cc07e6","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@4.1.0","_shasum":"283c5f7a25dd39a7f91bb4444b590f1456c7a297","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"283c5f7a25dd39a7f91bb4444b590f1456c7a297","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-4.1.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/history-4.1.0.tgz_1473950107324_0.3931751111522317"},"directories":{}},"4.2.0":{"name":"history","version":"4.2.0","description":"Manage session history with JavaScript","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"author":{"name":"Michael Jackson"},"license":"MIT","scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"babel ./modules -d . --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.2.1","warning":"^3.0.0","loose-envify":"^1.2.0"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.9.1","babel-eslint":"^6.0.4","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^8.0.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^1.8.1","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"keywords":["history","location"],"gitHead":"b37e9c868022b2bb7c57efdfdc2252e4447c32da","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@4.2.0","_shasum":"c90efa2d51c11bc0ebbbc0d8334dc95bbd254cad","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"c90efa2d51c11bc0ebbbc0d8334dc95bbd254cad","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-4.2.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/history-4.2.0.tgz_1473978516880_0.027491586050018668"},"directories":{}},"4.2.1":{"name":"history","version":"4.2.1","description":"Manage session history with JavaScript","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"author":{"name":"Michael Jackson"},"license":"MIT","scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"babel ./modules -d . --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.2.1","warning":"^3.0.0","loose-envify":"^1.2.0"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.9.1","babel-eslint":"^7.0.0","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^8.0.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^2.0.0","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"keywords":["history","location"],"gitHead":"a62990cbd226cbff1313b31a5d668bfc250a0444","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@4.2.1","_shasum":"30efdcc29b6308029ecd4f9e28c3c87bdc053d05","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"30efdcc29b6308029ecd4f9e28c3c87bdc053d05","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-4.2.1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/history-4.2.1.tgz_1475173820734_0.0617172010242939"},"directories":{}},"4.3.0":{"name":"history","version":"4.3.0","description":"Manage session history with JavaScript","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"author":{"name":"Michael Jackson"},"license":"MIT","scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"babel ./modules -d . --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.2.1","loose-envify":"^1.2.0","resolve-pathname":"^2.0.0","warning":"^3.0.0"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.9.1","babel-eslint":"^7.0.0","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^8.0.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^2.0.0","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"keywords":["history","location"],"gitHead":"e16b244cc21a4217f0f21bdbd017790ea7c55eba","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@4.3.0","_shasum":"42bc1067c22760ac0b792d80264c93591ed3900b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"42bc1067c22760ac0b792d80264c93591ed3900b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-4.3.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/history-4.3.0.tgz_1475188178466_0.5534116853959858"},"directories":{}},"4.4.0":{"name":"history","version":"4.4.0","description":"Manage session history with JavaScript","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"author":{"name":"Michael Jackson"},"license":"MIT","scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"babel ./modules -d . --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.2.1","loose-envify":"^1.2.0","resolve-pathname":"^2.0.0","value-equal":"^0.1.1","warning":"^3.0.0"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.9.1","babel-eslint":"^7.0.0","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^8.0.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^2.0.0","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"keywords":["history","location"],"gitHead":"e4434544b8bc621e0cbdeafa6938a6e77b922dd8","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@4.4.0","_shasum":"b1369588cb9e5d80219d0b1f866b0ac62c14a7f8","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"b1369588cb9e5d80219d0b1f866b0ac62c14a7f8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-4.4.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/history-4.4.0.tgz_1478015920187_0.9777317866683006"},"directories":{}},"4.4.1":{"name":"history","version":"4.4.1","description":"Manage session history with JavaScript","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"author":{"name":"Michael Jackson"},"license":"MIT","scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"babel ./modules -d . --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.2.1","loose-envify":"^1.2.0","resolve-pathname":"^2.0.0","value-equal":"^0.1.1","warning":"^3.0.0"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.9.1","babel-eslint":"^7.0.0","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^8.0.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^2.0.0","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"keywords":["history","location"],"gitHead":"21f3d4266fb85f1d6d683d7ddd5cca85722a09f8","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@4.4.1","_shasum":"88c2634b6b8cc68252258a7ddaa3f5f193641955","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"88c2634b6b8cc68252258a7ddaa3f5f193641955","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-4.4.1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/history-4.4.1.tgz_1480012200280_0.34909587004221976"},"directories":{}},"4.5.0":{"name":"history","version":"4.5.0","description":"Manage session history with JavaScript","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"author":{"name":"Michael Jackson"},"license":"MIT","scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"babel ./modules -d . --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.2.1","loose-envify":"^1.2.0","resolve-pathname":"^2.0.0","value-equal":"^0.2.0","warning":"^3.0.0"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.9.1","babel-eslint":"^7.0.0","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^8.0.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^2.0.0","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"keywords":["history","location"],"gitHead":"6e83bc3aaaaff5793ea2db48cf70f309f44acc53","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@4.5.0","_shasum":"7313388109333bf5796fff7407cee1850e8c5061","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"7313388109333bf5796fff7407cee1850e8c5061","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-4.5.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/history-4.5.0.tgz_1481747206202_0.920810790034011"},"directories":{}},"4.5.1":{"name":"history","version":"4.5.1","description":"Manage session history with JavaScript","repository":{"type":"git","url":"git+https://github.com/mjackson/history.git"},"author":{"name":"Michael Jackson"},"license":"MIT","scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"babel ./modules -d . --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.2.1","loose-envify":"^1.2.0","resolve-pathname":"^2.0.0","value-equal":"^0.2.0","warning":"^3.0.0"},"devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.0.0","babel-loader":"^6.2.10","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^2.0.0","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"keywords":["history","location"],"gitHead":"abebe50801f60d11e4f73c0a9030368c2273d712","bugs":{"url":"https://github.com/mjackson/history/issues"},"homepage":"https://github.com/mjackson/history#readme","_id":"history@4.5.1","_shasum":"44935a51021e3b8e67ebac267a35675732aba569","_from":".","_npmVersion":"4.0.5","_nodeVersion":"6.6.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"44935a51021e3b8e67ebac267a35675732aba569","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-4.5.1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/history-4.5.1.tgz_1484005982977_0.4070250771474093"},"directories":{}},"3.3.0":{"name":"history","version":"3.3.0","description":"Manage browser history with JavaScript","repository":{"type":"git","url":"git+https://github.com/reacttraining/history.git"},"author":{"name":"Michael Jackson"},"license":"MIT","main":"lib","files":["lib","umd"],"scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build-lib":"rimraf lib && babel ./modules -d lib --ignore '__tests__'","build-umd":"webpack modules/index.js umd/history.js","build-min":"webpack -p modules/index.js umd/history.min.js","build":"node ./scripts/build.js","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js","test":"npm run lint && karma start","lint":"eslint modules"},"dependencies":{"invariant":"^2.2.1","query-string":"^4.2.2","warning":"^3.0.0","loose-envify":"^1.2.0"},"devDependencies":{"babel-cli":"^6.10.1","babel-core":"^6.9.1","babel-eslint":"^6.0.4","babel-loader":"^6.2.4","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^7.0.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^1.8.1","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","rimraf":"^2.5.2","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"tags":["history","location"],"keywords":["history","location"],"gitHead":"97edf4ec3a6f9296e942f5e5d9d2412e117bf746","bugs":{"url":"https://github.com/reacttraining/history/issues"},"homepage":"https://github.com/reacttraining/history#readme","_id":"history@3.3.0","_shasum":"fcedcce8f12975371545d735461033579a6dae9c","_from":".","_npmVersion":"4.0.5","_nodeVersion":"6.6.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"fcedcce8f12975371545d735461033579a6dae9c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-3.3.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/history-3.3.0.tgz_1488081299225_0.1690453311894089"},"directories":{}},"4.6.0":{"name":"history","version":"4.6.0","description":"Manage session history with JavaScript","repository":{"type":"git","url":"git+https://github.com/reacttraining/history.git"},"license":"MIT","author":{"name":"Michael Jackson"},"files":["DOMUtils.js","ExecutionEnvironment.js","LocationUtils.js","PathUtils.js","createBrowserHistory.js","createHashHistory.js","createMemoryHistory.js","createTransitionManager.js","es","index.js","umd"],"scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build":"node ./tools/build.js","prepublish":"node ./tools/build.js","clean":"git clean -e '!node_modules' -fdX .","release":"node ./tools/release.js","lint":"eslint modules","test":"karma start --single-run"},"dependencies":{"invariant":"^2.2.1","loose-envify":"^1.2.0","resolve-pathname":"^2.0.0","value-equal":"^0.2.0","warning":"^3.0.0"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.23.1","babel-eslint":"^7.0.0","babel-loader":"^6.2.10","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^2.0.0","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"keywords":["history","location"],"gitHead":"89496118295a500ba27a0e3f9fde9b6b04676ab7","bugs":{"url":"https://github.com/reacttraining/history/issues"},"homepage":"https://github.com/reacttraining/history#readme","_id":"history@4.6.0","_shasum":"2e09f7b173333040044c9fede373ad29bc2e2186","_from":".","_npmVersion":"4.0.5","_nodeVersion":"6.6.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"2e09f7b173333040044c9fede373ad29bc2e2186","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-4.6.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/history-4.6.0.tgz_1488933668551_0.27962711709551513"},"directories":{}},"4.6.1":{"name":"history","version":"4.6.1","description":"Manage session history with JavaScript","repository":{"type":"git","url":"git+https://github.com/reacttraining/history.git"},"license":"MIT","author":{"name":"Michael Jackson"},"files":["DOMUtils.js","ExecutionEnvironment.js","LocationUtils.js","PathUtils.js","createBrowserHistory.js","createHashHistory.js","createMemoryHistory.js","createTransitionManager.js","es","index.js","umd"],"scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build":"node ./tools/build.js","prepublish":"node ./tools/build.js","clean":"git clean -e '!node_modules' -fdX .","release":"node ./tools/release.js","lint":"eslint modules","test":"karma start --single-run"},"dependencies":{"invariant":"^2.2.1","loose-envify":"^1.2.0","resolve-pathname":"^2.0.0","value-equal":"^0.2.0","warning":"^3.0.0"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.23.1","babel-eslint":"^7.0.0","babel-loader":"^6.2.10","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^2.0.0","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"keywords":["history","location"],"gitHead":"a647c5d1e5442998855700195b80a8a60b7f7656","bugs":{"url":"https://github.com/reacttraining/history/issues"},"homepage":"https://github.com/reacttraining/history#readme","_id":"history@4.6.1","_shasum":"911cf8eb65728555a94f2b12780a0c531a14d2fd","_from":".","_npmVersion":"4.0.5","_nodeVersion":"6.6.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"911cf8eb65728555a94f2b12780a0c531a14d2fd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-4.6.1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/history-4.6.1.tgz_1489640830473_0.05165916541591287"},"directories":{}},"4.6.2":{"name":"history","version":"4.6.2","description":"Manage session history with JavaScript","repository":{"type":"git","url":"git+https://github.com/reacttraining/history.git"},"license":"MIT","author":{"name":"Michael Jackson"},"files":["DOMUtils.js","ExecutionEnvironment.js","LocationUtils.js","PathUtils.js","createBrowserHistory.js","createHashHistory.js","createMemoryHistory.js","createTransitionManager.js","es","index.js","umd"],"scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build":"node ./tools/build.js","prepublish":"node ./tools/build.js","clean":"git clean -fdX .","release":"node ./tools/release.js","lint":"eslint modules","test":"karma start --single-run"},"dependencies":{"invariant":"^2.2.1","loose-envify":"^1.2.0","resolve-pathname":"^2.0.0","value-equal":"^0.2.0","warning":"^3.0.0"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.23.1","babel-eslint":"^7.0.0","babel-loader":"^6.2.10","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^2.0.0","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"keywords":["history","location"],"gitHead":"cc14e269d312dfccf616e84c7857bc6d2f7eb7ec","bugs":{"url":"https://github.com/reacttraining/history/issues"},"homepage":"https://github.com/reacttraining/history#readme","_id":"history@4.6.2","_shasum":"716e863e1da0e97a028eed6da644061dd1e1ed1d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"716e863e1da0e97a028eed6da644061dd1e1ed1d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-4.6.2.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/history-4.6.2.tgz_1497410907102_0.7279600268229842"},"directories":{}},"4.6.3":{"name":"history","version":"4.6.3","description":"Manage session history with JavaScript","repository":{"type":"git","url":"git+https://github.com/reacttraining/history.git"},"license":"MIT","author":{"name":"Michael Jackson"},"main":"index.js","module":"es/index.js","files":["DOMUtils.js","ExecutionEnvironment.js","LocationUtils.js","PathUtils.js","createBrowserHistory.js","createHashHistory.js","createMemoryHistory.js","createTransitionManager.js","es","index.js","umd"],"scripts":{"start":"webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js","build":"node ./tools/build.js","prepublish":"node ./tools/build.js","clean":"git clean -fdX .","release":"node ./tools/release.js","lint":"eslint modules","test":"karma start --single-run"},"dependencies":{"invariant":"^2.2.1","loose-envify":"^1.2.0","resolve-pathname":"^2.0.0","value-equal":"^0.2.0","warning":"^3.0.0"},"devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.23.1","babel-eslint":"^7.0.0","babel-loader":"^6.2.10","babel-plugin-dev-expression":"^0.2.1","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.9.0","babel-preset-stage-1":"^6.5.0","eslint":"^3.3.0","eslint-plugin-import":"^2.0.0","expect":"^1.20.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^1.2.0","karma-browserstack-launcher":"^1.0.1","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.4","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.1","mocha":"^3.0.2","pretty-bytes":"^4.0.2","readline-sync":"^1.4.4","webpack":"^1.13.1","webpack-dev-server":"^1.14.1"},"browserify":{"transform":["loose-envify"]},"keywords":["history","location"],"gitHead":"8d98aec1366b86e3832dbfd7dcc480d1f9a5275c","bugs":{"url":"https://github.com/reacttraining/history/issues"},"homepage":"https://github.com/reacttraining/history#readme","_id":"history@4.6.3","_shasum":"6d723a8712c581d6bef37e8c26f4aedc6eb86967","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"6d723a8712c581d6bef37e8c26f4aedc6eb86967","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/history/-/history-4.6.3.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/history-4.6.3.tgz_1497950525520_0.5858927643857896"},"directories":{}}},"name":"history","time":{"modified":"2017-07-18T23:02:13.162Z","created":"2012-04-29T22:28:20.015Z","0.1.0":"2012-04-29T22:28:21.559Z","1.0.0":"2015-07-28T19:30:21.938Z","1.1.0":"2015-08-04T17:10:58.347Z","1.2.0":"2015-08-12T18:20:38.813Z","1.2.1":"2015-08-12T19:31:49.622Z","1.2.2":"2015-08-12T21:23:20.093Z","1.3.0":"2015-08-13T00:22:20.449Z","1.3.1":"2015-08-13T00:32:06.795Z","1.3.2":"2015-08-13T04:57:57.854Z","1.3.3":"2015-08-13T05:18:32.511Z","1.4.0":"2015-08-17T22:18:41.050Z","1.4.1":"2015-08-19T22:35:54.427Z","1.5.0":"2015-08-20T01:19:39.927Z","1.6.0":"2015-08-20T22:10:35.278Z","1.7.0":"2015-08-21T21:44:34.824Z","1.8.0":"2015-08-21T22:07:04.556Z","1.8.1":"2015-08-27T17:27:30.949Z","1.8.2":"2015-08-31T05:22:47.191Z","1.8.3":"2015-08-31T05:27:13.348Z","1.8.4":"2015-08-31T05:55:31.366Z","1.8.5":"2015-09-09T23:34:29.404Z","1.9.0":"2015-09-11T18:13:32.712Z","1.9.1":"2015-09-14T21:49:41.340Z","1.10.0":"2015-09-22T23:55:22.420Z","1.10.1":"2015-09-22T23:59:37.152Z","1.10.2":"2015-09-24T15:24:06.800Z","1.11.0":"2015-09-24T22:17:41.088Z","1.11.1":"2015-09-27T03:23:13.212Z","1.12.0":"2015-10-05T04:08:22.277Z","1.12.1":"2015-10-06T00:00:20.388Z","1.12.2":"2015-10-06T17:00:25.473Z","1.12.3":"2015-10-07T23:17:38.037Z","1.12.4":"2015-10-09T22:18:20.601Z","1.12.5":"2015-10-11T17:19:05.045Z","1.12.6":"2015-10-25T14:23:35.927Z","1.13.0":"2015-10-28T15:50:44.066Z","1.13.1":"2015-11-14T01:15:13.334Z","1.14.0":"2015-12-06T17:00:02.608Z","1.15.0":"2015-12-07T19:48:19.699Z","1.16.0":"2015-12-10T23:01:26.708Z","1.17.0":"2015-12-19T19:42:22.419Z","2.0.0-rc1":"2016-01-03T04:12:32.386Z","2.0.0-rc2":"2016-01-10T04:07:16.206Z","2.0.0-rc3":"2016-02-03T18:43:13.789Z","2.0.0":"2016-02-04T18:35:20.772Z","2.0.1":"2016-03-03T04:11:01.244Z","3.0.0-0":"2016-03-19T18:42:35.540Z","2.0.2":"2016-04-15T06:29:55.751Z","2.1.0":"2016-04-19T16:53:53.367Z","3.0.0-1":"2016-04-19T17:27:59.858Z","3.0.0-2":"2016-04-19T17:33:50.027Z","2.1.1":"2016-04-27T15:01:18.617Z","2.1.2":"2016-05-26T15:57:21.986Z","3.0.0":"2016-05-30T17:36:26.876Z","3.1.0":"2016-09-02T00:13:36.468Z","3.2.0":"2016-09-02T01:05:24.210Z","3.2.1":"2016-09-02T16:52:46.337Z","4.0.0-0":"2016-09-03T23:32:08.157Z","4.0.0-1":"2016-09-07T23:01:26.431Z","4.0.0-2":"2016-09-10T06:30:29.945Z","4.0.0":"2016-09-10T16:57:28.366Z","4.0.1":"2016-09-12T22:58:37.605Z","4.1.0":"2016-09-15T14:35:10.170Z","4.2.0":"2016-09-15T22:28:37.133Z","4.2.1":"2016-09-29T18:30:20.965Z","4.3.0":"2016-09-29T22:29:40.570Z","4.4.0":"2016-11-01T15:58:40.417Z","4.4.1":"2016-11-24T18:30:01.950Z","4.5.0":"2016-12-14T20:26:48.219Z","4.5.1":"2017-01-09T23:53:04.820Z","3.3.0":"2017-02-26T03:54:59.799Z","4.6.0":"2017-03-08T00:41:10.607Z","4.6.1":"2017-03-16T05:07:12.362Z","4.6.2":"2017-06-14T03:28:27.227Z","4.6.3":"2017-06-20T09:22:05.637Z"},"readmeFilename":"README.md","homepage":"https://github.com/reacttraining/history#readme"}