{"maintainers":[{"name":"cpojer","email":"christoph.pojer@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"mjackson","email":"mjijackson@gmail.com"}],"keywords":["expect","assert","test","spec"],"dist-tags":{"latest":"1.20.2"},"author":{"name":"Michael Jackson"},"description":"Write better assertions","readme":"# expect [![Travis][build-badge]][build] [![npm package][npm-badge]][npm]\n\n[build-badge]: https://img.shields.io/travis/mjackson/expect/master.svg?style=flat-square\n[build]: https://travis-ci.org/mjackson/expect\n\n[npm-badge]: https://img.shields.io/npm/v/expect.svg?style=flat-square\n[npm]: https://www.npmjs.org/package/expect\n\n[expect](https://github.com/mjackson/expect) lets you write better assertions.\n\nWhen you use `expect`, you write assertions similarly to how you would say them, e.g. \"I expect this value to be equal to 3\" or \"I expect this array to contain 3\". When you write assertions in this way, you don't need to remember the order of actual and expected arguments to functions like `assert.equal`, which helps you write better tests.\n\nYou can think of `expect` as a more compact alternative to [Chai](http://chaijs.com/) or [Sinon.JS](http://sinonjs.org/), just without the pretty website. ;)\n\n## Installation\n\nUsing [npm](https://www.npmjs.org/):\n\n    $ npm install --save expect\n\nThen, use as you would anything else:\n\n```js\n// using ES6 modules\nimport expect, { createSpy, spyOn, isSpy } from 'expect'\n\n// using CommonJS modules\nvar expect = require('expect')\nvar createSpy = expect.createSpy\nvar spyOn = expect.spyOn\nvar isSpy = expect.isSpy\n```\n\nThe UMD build is also available on [npmcdn](https://npmcdn.com):\n\n```html\n<script src=\"https://npmcdn.com/expect/umd/expect.min.js\"></script>\n```\n\nYou can find the library on `window.expect`.\n\n## Assertions\n\n### toExist\n\n> `expect(object).toExist([message])`\n\nAsserts the given `object` is truthy.\n\n```js\nexpect('something truthy').toExist()\n```\n\nAliases:\n  - `toBeTruthy`\n\n### toNotExist\n\n> `expect(object).toNotExist([message])`\n\nAsserts the given `object` is falsy.\n\n```js\nexpect(null).toNotExist()\n```\n\nAliases:\n  - `toBeFalsy`\n\n### toBe\n\n> `expect(object).toBe(value, [message])`\n\nAsserts that `object` is strictly equal to `value` using `===`.\n\n### toNotBe\n\n> `expect(object).toNotBe(value, [message])`\n\nAsserts that `object` is not strictly equal to `value` using `===`.\n\n### toEqual\n\n> `expect(object).toEqual(value, [message])`\n\nAsserts that the given `object` equals `value` using [is-equal](https://www.npmjs.com/package/is-equal).\n\n### toNotEqual\n\n> `expect(object).toNotEqual(value, [message])`\n\nAsserts that the given `object` is not equal to `value` using [is-equal](https://www.npmjs.com/package/is-equal).\n\n### toThrow\n\n> `expect(block).toThrow([error], [message])`\n\nAsserts that the given `block` `throw`s an error. The `error` argument may be a constructor (to test using `instanceof`), or a string/`RegExp` to test against `error.message`.\n\n```js\nexpect(function () {\n  throw new Error('boom!')\n}).toThrow(/boom/)\n```\n\n### toNotThrow\n\n> `expect(block).toNotThrow([message])`\n\nAsserts that the given `block` does not `throw`.\n\n### toBeA(constructor)\n\n> `expect(object).toBeA(constructor, [message])`<br>\n> `expect(object).toBeAn(constructor, [message])`\n\nAsserts the given `object` is an `instanceof constructor`.\n\n```js\nexpect(new User).toBeA(User)\nexpect(new Asset).toBeAn(Asset)\n```\n\nAliases:\n  - `toBeAn`\n\n### toBeA(string)\n\n> `expect(object).toBeA(string, [message])`<br>\n> `expect(object).toBeAn(string, [message])`\n\nAsserts the `typeof` the given `object` is `string`.\n\n```js\nexpect(2).toBeA('number')\n```\n\nAliases:\n  - `toBeAn`\n\n### toNotBeA(constructor)\n\n> `expect(object).toNotBeA(constructor, [message])`<br>\n> `expect(object).toNotBeAn(constructor, [message])`\n\nAsserts the given `object` is *not* an `instanceof constructor`.\n\n```js\nexpect(new Asset).toNotBeA(User)\nexpect(new User).toNotBeAn(Asset)\n```\n\nAliases:\n  - `toNotBeAn`\n\n### toNotBeA(string)\n\n> `expect(object).toNotBeA(string, [message])`<br>\n> `expect(object).toNotBeAn(string, [message])`\n\nAsserts the `typeof` the given `object` is *not* `string`.\n\n```js\nexpect('a string').toNotBeA('number')\nexpect(2).toNotBeAn('object')\n```\n\nAliases:\n  - `toNotBeAn`\n\n### toMatch\n\n> `expect(string).toMatch(pattern, [message])`<br>\n> `expect(object).toMatch(pattern, [message])`\n\nAsserts the given `string` or `object` matches a `pattern`. When using a string, `pattern` must be a `RegExp`. When using an object, `pattern` may be anything acceptable to [`tmatch`](https://github.com/tapjs/tmatch).\n\n```js\nexpect('a string').toMatch(/string/)\nexpect({\n  statusCode: 200,\n  headers: {\n    server: 'nginx/1.6.5'\n  }\n}).toMatch({\n  headers: {\n    server: /nginx/\n  }\n})\n```\n\n### toNotMatch\n\n> `expect(string).toMatch(pattern, [message])`<br>\n> `expect(object).toMatch(pattern, [message])`\n\nAsserts the given `string` or `object` does not match a `pattern`. When using a string, `pattern` must be a `RegExp`. When using an object, `pattern` may be anything acceptable to [`tmatch`](https://github.com/tapjs/tmatch).\n\n```js\nexpect('a string').toMatch(/string/)\nexpect({\n  statusCode: 200,\n  headers: {\n    server: 'nginx/1.6.5'\n  }\n}).toNotMatch({\n  headers: {\n    server: /apache/\n  }\n})\n```\n\n### toBeLessThan\n\n> `expect(number).toBeLessThan(value, [message])`<br>\n> `expect(number).toBeFewerThan(value, [message])`\n\nAsserts the given `number` is less than `value`.\n\n```js\nexpect(2).toBeLessThan(3)\n```\n\nAliases:\n  - `toBeFewerThan`\n\n### toBeLessThanOrEqualTo\n\n> `expect(number).toBeLessThanOrEqualTo(value, [message])`<br>\n\nAsserts the given `number` is less than or equal to `value`.\n\n```js\nexpect(2).toBeLessThanOrEqualTo(3)\n```\n\n### toBeGreaterThan\n\n> `expect(number).toBeGreaterThan(value, [message])`<br>\n> `expect(number).toBeMoreThan(value, [message])`\n\nAsserts the given `number` is greater than `value`.\n\n```js\nexpect(3).toBeGreaterThan(2)\n```\n\nAliases:\n  - `toBeMoreThan`\n\n### toBeGreaterThanOrEqualTo\n\n> `expect(number).toBeGreaterThanOrEqualTo(value, [message])`<br>\n\nAsserts the given `number` is greater than or equal to `value`.\n\n```js\nexpect(3).toBeGreaterThanOrEqualTo(2)\n```\n\n### toInclude\n\n> `expect(array).toInclude(value, [comparator], [message])`<br>\n> `expect(object).toInclude(value, [comparator], [message])`<br>\n> `expect(string).toInclude(value, [message])`\n\nAsserts that a given `value` is included (or \"contained\") within another. The `actual` value may be an array, object, or a string. The `comparator` function, if given, should compare two objects and `return false` if they are not equal. The default is to use [`isEqual`](https://github.com/ljharb/is-equal).\n\n```js\nexpect([ 1, 2, 3 ]).toInclude(3)\nexpect({ a: 1, b: 2 }).toInclude({ b: 2 })\nexpect({ a: 1, b: 2, c: { d: 3 } }).toInclude({ b: 2, c: { d: 3 } })\nexpect('hello world').toInclude('world')\n```\n\nAliases:\n  - `toContain`\n\n### toExclude\n\n> `expect(array).toExclude(value, [comparator], [message])`<br>\n> `expect(object).toExclude(value, [comparator], [message])`<br>\n> `expect(string).toExclude(value, [message])`\n\nAsserts that a given `value` is not included (or \"contained\") within another. The `actual` value may be an array, object, or a string. The `comparator` function, if given, should compare two objects and `return false` if they are not equal. The default is to use [`isEqual`](https://github.com/ljharb/is-equal).\n\n```js\nexpect([ 1, 2, 3 ]).toExclude(4)\nexpect({ a: 1, b: 2 }).toExclude({ c: 2 })\nexpect({ a: 1, b: 2 }).toExclude({ b: 3 })\nexpect({ a: 1, b: 2, c: { d: 3 } }).toExclude({ c: { d: 4 } })\nexpect('hello world').toExclude('goodbye')\n```\n\nAliases:\n  - `toNotContain`\n  - `toNotInclude`\n\n### toIncludeKey(s)\n\n> `expect(object).toIncludeKeys(keys, [comparator], [message])`<br>\n> `expect(object).toIncludeKey(key, [comparator], [message])`\n\nAsserts that the given `object` (may be an array, or a function, or anything with keys) contains *all* of the provided keys. The optional parameter `comparator` is a function which if given an object and a string key, it should return a boolean detailing whether or not the key exists in the object. By default, a shallow check with `Object.prototype.hasOwnProperty` is performed.\n\n```js\nexpect({ a: 1 }).toIncludeKey('a')\nexpect({ a: 1, b: 2 }).toIncludeKeys([ 'a', 'b' ])\n```\n\nAliases:\n  - `toContainKey(s)`\n\n### toExcludeKey(s)\n\n> `expect(object).toExcludeKeys(keys, [comparator], [message])`<br>\n> `expect(object).toExcludeKey(key, [comparator], [message])`\n\nAsserts that the given `object` (may be an array, or a function, or anything with keys) does not contain *any* of the provided keys. The optional parameter `comparator` is a function which if given an object and a string key, it should return a boolean detailing whether or not the key exists in the object. By default, a shallow check with `Object.prototype.hasOwnProperty` is performed.\n\n```js\nexpect({ a: 1 }).toExcludeKey('b')\nexpect({ a: 1, b: 2 }).toExcludeKeys([ 'c', 'd' ])\n```\n\nAliases:\n  - `toNotContainKey(s)`\n  - `toNotIncludeKey(s)`\n\n### (spy) toHaveBeenCalled\n\n> `expect(spy).toHaveBeenCalled([message])`\n\nAsserts the given `spy` function has been called at least once.\n\n```js\nexpect(spy).toHaveBeenCalled()\n```\n\n### (spy) toNotHaveBeenCalled\n\n> `expect(spy).toNotHaveBeenCalled([message])`\n\nAsserts the given `spy` function has *not* been called.\n\n```js\nexpect(spy).toNotHaveBeenCalled()\n```\n\n### (spy) toHaveBeenCalledWith\n\n> `expect(spy).toHaveBeenCalledWith(...args)`\n\nAsserts the given `spy` function has been called with the expected arguments.\n\n```js\nexpect(spy).toHaveBeenCalledWith('foo', 'bar')\n```\n\n## Chaining Assertions\n\nEvery assertion returns an `Expectation` object, so you can chain assertions together.\n\n```js\nexpect(3.14)\n  .toExist()\n  .toBeLessThan(4)\n  .toBeGreaterThan(3)\n```\n\n## Spies\n\nexpect also includes the ability to create spy functions that can track the calls that are made to other functions and make various assertions based on the arguments and context that were used.\n\n```js\nvar video = {\n  play: function () {},\n  pause: function () {},\n  rewind: function () {}\n}\n\nvar spy = expect.spyOn(video, 'play')\n\nvideo.play('some', 'args')\n\nexpect(spy.calls.length).toEqual(1)\nexpect(spy.calls[0].context).toBe(video)\nexpect(spy.calls[0].arguments).toEqual([ 'some', 'args' ])\nexpect(spy).toHaveBeenCalled()\nexpect(spy).toHaveBeenCalledWith('some', 'args')\n\nspy.restore()\nexpect.restoreSpies()\n```\n\n### createSpy\n\n> `expect.createSpy()`\n\nCreates a spy function.\n\n```js\nvar spy = expect.createSpy()\n```\n\n### spyOn\n\n> `expect.spyOn(target, method)`\n\nReplaces the `method` in `target` with a spy.\n\n```js\nvar video = {\n  play: function () {}\n}\n\nvar spy = expect.spyOn(video, 'play')\nvideo.play()\n\nspy.restore()\n```\n\n### restoreSpies\n\n> `expect.restoreSpies()`\n\nRestores all spies created with `expect.spyOn()`. This is the same as calling `spy.restore()` on all spies created.\n\n```js\n// mocha.js example\nbeforeEach(function () {\n  expect.spyOn(profile, 'load')\n})\n\nafterEach(function () {\n  expect.restoreSpies()\n})\n\nit('works', function () {\n  profile.load()\n  expect(profile.load).toHaveBeenCalled()\n})\n```\n\n## Spy methods\n\n### andCall\n\n> `spy.andCall(fn)`\n\nMakes the spy invoke a function `fn` when called.\n\n```js\nvar dice = createSpy().andCall(function () {\n  return (Math.random() * 6) | 0\n})\n```\n\n### andCallThrough\n\n> `spy.andCallThrough()`\n\nMakes the spy call the original function it's spying on.\n\n```js\nspyOn(profile, 'load').andCallThrough()\n\nvar getEmail = createSpy(function () {\n  return \"hi@gmail.com\"\n}).andCallThrough()\n```\n\n### andReturn\n\n> `spy.andReturn(object)`\n\nMakes the spy return a value.\n\n```js\nvar dice = expect.createSpy().andReturn(3)\n```\n\n### andThrow\n\n> `spy.andThrow(error)`\n\nMakes the spy throw an `error` when called.\n\n```js\nvar failing = expect.createSpy()\n  .andThrow(new Error('Not working'))\n```\n\n### restore\n\n> `spy.restore()`\n\nRestores a spy originally created with `expect.spyOn()`.\n\n### reset\n\n> `spy.reset()`\n\nClears out all saved calls to the spy.\n\n## Extending expect\n\nYou can add your own assertions using `expect.extend` and `expect.assert`:\n\n```js\nexpect.extend({\n  toBeAColor() {\n    expect.assert(\n      this.actual.match(/^#[a-fA-F0-9]{6}$/),\n      'expected %s to be an HTML color',\n      this.actual\n    )\n    return this\n  }\n})\n\nexpect('#ff00ff').toBeAColor()\n```\n\n## Extensions\n\n- [expect-element](https://github.com/mjackson/expect-element) Adds assertions that are useful for DOM elements\n- [expect-jsx](https://github.com/algolia/expect-jsx) Adds things like `expect(ReactComponent).toEqualJSX(<TestComponent prop=\"yes\" />)`\n- [expect-predicate](https://github.com/erikras/expect-predicate) Adds assertions based on arbitrary predicates\n","repository":{"type":"git","url":"git+https://github.com/mjackson/expect.git"},"users":{"mswanson1524":true,"wendymcf":true,"yatsu":true,"tchcxp":true,"liushoukai":true,"urbantumbleweed":true,"sammyteahan":true,"rubenjgarcia":true,"boton":true,"jgrl":true,"moogus":true,"almccann":true,"ridermansb":true,"philipjc":true,"cascadejs":true,"kratyk":true,"hengkiardo":true,"tengisb":true,"esundahl":true,"adrienhobbs":true,"birdlee":true,"nickytonline":true,"bapinney":true,"mrbgit":true,"cfleschhut":true,"ua2004":true,"abuddington":true,"knoja4":true,"itsakt":true,"nilz3ro":true,"abuelwafa":true,"psychollama":true,"mattbodman":true,"joshberg":true,"coolhanddev":true,"pr-anoop":true,"rlafferty":true,"pixel67":true,"ab.moon":true,"qafir":true,"chinjon":true,"ilia.ivanov":true,"musikele":true},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"license":"MIT","versions":{"0.0.0":{"author":{"name":"Enrico Marino","email":"enrico.marino@email.com","url":"onirame.no.de"},"name":"expect","description":"JavaScript light test library","version":"0.0.0","homepage":"https://github.com/onirame/expect","repository":{"type":"git","url":"git://github.com/onirame/expect.git"},"main":"expect.js","engines":{"node":"*"},"dependencies":{},"devDependencies":{},"_npmUser":{"name":"onirame","email":"enrico.marino@email.com"},"_id":"expect@0.0.0","_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.2","_defaultsLoaded":true,"dist":{"shasum":"6432338eef9d40bc0409fa90e1d6fb8dde6ec05b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-0.0.0.tgz"},"maintainers":[{"name":"onirame","email":"enrico.marino@email.com"}],"directories":{}},"0.0.2":{"author":{"name":"Enrico Marino","email":"enrico.marino@email.com","url":"onirame.no.de"},"name":"expect","description":"the essential JavaScript test library","version":"0.0.2","homepage":"https://github.com/onirame/expect","repository":{"type":"git","url":"git://github.com/onirame/expect.git"},"main":"expect.js","engines":{"node":"*"},"dependencies":{},"devDependencies":{},"_npmUser":{"name":"onirame","email":"enrico.marino@email.com"},"_id":"expect@0.0.2","_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.2","_defaultsLoaded":true,"dist":{"shasum":"4701a0f48e92c02f00d55ea29bf7d43c750bae22","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-0.0.2.tgz"},"maintainers":[{"name":"onirame","email":"enrico.marino@email.com"}],"directories":{}},"0.1.0":{"name":"expect","version":"0.1.0","description":"Expect-style assertions for node","main":"expect.js","directories":{"test":"test"},"dependencies":{},"devDependencies":{"mocha":"~1.17.1"},"scripts":{"test":"mocha"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjijackson/expect.git"},"bugs":{"url":"https://github.com/mjijackson/expect/issues"},"homepage":"https://github.com/mjijackson/expect","_id":"expect@0.1.0","dist":{"shasum":"75ec27d74d08aefbab533e9ea39e295c63488e23","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-0.1.0.tgz"},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}]},"0.1.1":{"name":"expect","version":"0.1.1","description":"Write better assertions","main":"expect.js","dependencies":{},"devDependencies":{"mocha":"~1.17.1"},"scripts":{"test":"mocha spec"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjijackson/expect.git"},"bugs":{"url":"https://github.com/mjijackson/expect/issues"},"homepage":"https://github.com/mjijackson/expect","_id":"expect@0.1.1","dist":{"shasum":"139906b46235cf19c820496737427d8cfe61f6dd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-0.1.1.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"directories":{}},"1.0.0":{"name":"expect","version":"1.0.0","description":"Write better assertions","main":"modules/expect.js","dependencies":{},"devDependencies":{"mocha":"~1.17.1"},"scripts":{"test":"mocha \"modules/**/__tests__/**/*-test.js\""},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"a095665834fc1ba077fea720dac6853dc05bdae7","_id":"expect@1.0.0","_shasum":"f90de5a12eb719172f1ef7546675fa04f8007377","_from":".","_npmVersion":"2.0.2","_nodeVersion":"0.10.27","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"f90de5a12eb719172f1ef7546675fa04f8007377","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"expect","version":"1.0.1","description":"Write better assertions","main":"modules/expect.js","dependencies":{},"devDependencies":{"mocha":"~1.17.1"},"scripts":{"test":"mocha \"modules/**/__tests__/**/*-test.js\""},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"d5c6127db3c8d399bc63ccded1ef67ef3f6a1a36","_id":"expect@1.0.1","_shasum":"4795e84965753c1a815a6d40aacaeb14647d369d","_from":".","_npmVersion":"2.0.2","_nodeVersion":"0.10.27","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"4795e84965753c1a815a6d40aacaeb14647d369d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.0.1.tgz"},"directories":{}},"1.0.2":{"name":"expect","version":"1.0.2","description":"Write better assertions","main":"modules/expect.js","dependencies":{},"devDependencies":{"mocha":"~1.17.1"},"scripts":{"test":"mocha \"modules/**/__tests__/**/*-test.js\""},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"43888c18f960d828a81630d83b374dbc30d25c05","_id":"expect@1.0.2","_shasum":"eb6a64b859cab1c269e33c37a18b7238070bfd61","_from":".","_npmVersion":"2.0.2","_nodeVersion":"0.10.27","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"eb6a64b859cab1c269e33c37a18b7238070bfd61","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.0.2.tgz"},"directories":{}},"1.1.0":{"name":"expect","version":"1.1.0","description":"Write better assertions","main":"modules/expect.js","dependencies":{},"devDependencies":{"mocha":"~1.17.1"},"scripts":{"test":"mocha \"modules/**/__tests__/**/*-test.js\""},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","_id":"expect@1.1.0","_shasum":"4d7fa74da75d28ca500b02f4934c98ea1175be25","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"4d7fa74da75d28ca500b02f4934c98ea1175be25","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.1.0.tgz"},"directories":{}},"1.2.0":{"name":"expect","version":"1.2.0","description":"Write better assertions","main":"modules/expect.js","dependencies":{},"devDependencies":{"jshint":"^2.5.10","karma":"^0.12.28","karma-chrome-launcher":"^0.1.7","karma-cli":"0.0.4","karma-mocha":"^0.1.10","karma-sourcemap-loader":"^0.3.2","karma-webpack":"^1.3.1","mocha":"^2.0.1","webpack":"^1.4.13"},"scripts":{"dist":"webpack modules/expect.js dist/expect.min.js","test":"jshint . && mocha --reporter spec 'modules/**/__tests__/*-test.js'","test-browser":"karma start"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"8a22e1d91f3f61eed84b8073e1b590366c9886ce","_id":"expect@1.2.0","_shasum":"599157f41e10730e4e003936c4fd16c48f53f0c3","_from":".","_npmVersion":"2.1.17","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"599157f41e10730e4e003936c4fd16c48f53f0c3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.2.0.tgz"},"directories":{}},"1.3.0":{"name":"expect","version":"1.3.0","description":"Write better assertions","main":"modules/expect.js","dependencies":{},"devDependencies":{"jshint":"^2.5.10","karma":"^0.12.28","karma-chrome-launcher":"^0.1.7","karma-cli":"0.0.4","karma-mocha":"^0.1.10","karma-sourcemap-loader":"^0.3.2","karma-webpack":"^1.3.1","mocha":"^2.0.1","webpack":"^1.4.13"},"scripts":{"dist":"webpack -p modules/expect.js dist/expect.min.js","test":"jshint . && mocha --reporter spec 'modules/**/__tests__/*-test.js'","test-browser":"karma start"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"f852be79c9a858b191a2b49dfc99fa647ed174fe","_id":"expect@1.3.0","_shasum":"0296068df5f27d96ebb9f8e64e3cc2f8cc849a61","_from":".","_npmVersion":"2.1.17","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"0296068df5f27d96ebb9f8e64e3cc2f8cc849a61","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.3.0.tgz"},"directories":{}},"1.4.0":{"name":"expect","version":"1.4.0","description":"Write better assertions","main":"expect.js","dependencies":{},"devDependencies":{"jshint":"^2.5.10","karma":"^0.12.28","karma-chrome-launcher":"^0.1.7","karma-cli":"0.0.4","karma-mocha":"^0.1.10","karma-sourcemap-loader":"^0.3.2","karma-webpack":"^1.3.1","mocha":"^2.0.1","webpack":"^1.4.13"},"scripts":{"dist":"webpack -p index.js dist/expect.min.js","test":"jshint . && mocha --reporter spec 'tests/*-test.js'","test-browser":"karma start"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"fc520a6108d0391130ce7ec037d2c379191289dd","_id":"expect@1.4.0","_shasum":"e84bb912373d1f41df1dd39068c6667ed5a5801c","_from":".","_npmVersion":"2.1.17","_nodeVersion":"0.10.28","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"e84bb912373d1f41df1dd39068c6667ed5a5801c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.4.0.tgz"},"directories":{}},"1.5.0":{"name":"expect","version":"1.5.0","description":"Write better assertions","main":"expect.js","dependencies":{},"devDependencies":{"jshint":"^2.5.10","karma":"^0.12.28","karma-chrome-launcher":"^0.1.7","karma-cli":"0.0.4","karma-mocha":"^0.1.10","karma-sourcemap-loader":"^0.3.2","karma-webpack":"^1.3.1","mocha":"^2.0.1","webpack":"^1.4.13"},"scripts":{"dist":"webpack -p index.js dist/expect.min.js","test":"jshint . && mocha --reporter spec 'tests/*-test.js'","test-browser":"karma start"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"9716965de9364b9501abdbefb681a6633195a86e","_id":"expect@1.5.0","_shasum":"0f2a5d10b73590077c65369e4ffc0e2f9494750f","_from":".","_npmVersion":"2.0.2","_nodeVersion":"0.10.27","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"0f2a5d10b73590077c65369e4ffc0e2f9494750f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.5.0.tgz"},"directories":{}},"1.6.0":{"name":"expect","version":"1.6.0","description":"Write better assertions","main":"modules/index.js","dependencies":{},"devDependencies":{"jshint":"^2.5.10","karma":"^0.12.28","karma-chrome-launcher":"^0.1.7","karma-cli":"0.0.4","karma-mocha":"^0.1.10","karma-sourcemap-loader":"^0.3.2","karma-webpack":"^1.3.1","mocha":"^2.0.1","webpack":"^1.4.13"},"scripts":{"dist":"webpack -p modules/index.js dist/expect.min.js","test":"jshint . && mocha --reporter spec 'modules/**/__tests__/*-test.js'","test-browser":"karma start"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"67275aade1f4a68fbbf461e7f90b7855c8f6cd0d","_id":"expect@1.6.0","_shasum":"8fdd0e80ff01dc05379f56a0b30ce2f1407fff8c","_from":".","_npmVersion":"2.4.1","_nodeVersion":"0.10.27","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"dist":{"shasum":"8fdd0e80ff01dc05379f56a0b30ce2f1407fff8c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.6.0.tgz"},"directories":{}},"1.7.0":{"name":"expect","version":"1.7.0","description":"Write better assertions","main":"modules/index.js","dependencies":{"assert":"^1.3.0"},"devDependencies":{"jshint":"^2.5.10","karma":"^0.12.28","karma-chrome-launcher":"^0.1.7","karma-cli":"0.0.4","karma-mocha":"^0.1.10","karma-sourcemap-loader":"^0.3.2","karma-webpack":"^1.3.1","mocha":"^2.0.1","webpack":"^1.4.13"},"scripts":{"dist":"webpack -p modules/index.js dist/expect.min.js","test":"jshint . && mocha --reporter spec 'modules/**/__tests__/*-test.js'","test-browser":"karma start"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"f6e4b45292745b0127433d5991adde023defef0f","_id":"expect@1.7.0","_shasum":"4583c1b07f958e7e3d8ae743b6b8ae1646e3ea17","_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":"4583c1b07f958e7e3d8ae743b6b8ae1646e3ea17","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.7.0.tgz"},"directories":{}},"1.8.0":{"name":"expect","version":"1.8.0","description":"Write better assertions","main":"modules/index.js","dependencies":{"assert":"^1.3.0"},"devDependencies":{"jshint":"^2.5.10","karma":"^0.12.28","karma-chrome-launcher":"^0.1.7","karma-cli":"0.0.4","karma-mocha":"^0.1.10","karma-sourcemap-loader":"^0.3.2","karma-webpack":"^1.3.1","mocha":"^2.0.1","webpack":"^1.4.13"},"scripts":{"dist":"webpack -p modules/index.js dist/expect.min.js","test":"jshint . && mocha --reporter spec 'modules/**/__tests__/*-test.js'","test-browser":"karma start"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"5c75f27f54e644b1cef7722231953682e4112a5c","_id":"expect@1.8.0","_shasum":"018866ccbf40a8eaa1f19325e17f18152c7effdb","_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":"018866ccbf40a8eaa1f19325e17f18152c7effdb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.8.0.tgz"},"directories":{}},"1.9.0":{"name":"expect","version":"1.9.0","description":"Write better assertions","main":"modules/index.js","dependencies":{"assert":"^1.3.0"},"devDependencies":{"jshint":"^2.5.10","karma":"^0.12.28","karma-chrome-launcher":"^0.1.7","karma-cli":"0.0.4","karma-mocha":"^0.1.10","karma-sourcemap-loader":"^0.3.2","karma-webpack":"^1.3.1","mocha":"^2.0.1","webpack":"^1.4.13"},"scripts":{"dist":"webpack -p modules/index.js dist/expect.min.js","test":"jshint . && mocha --reporter spec 'modules/**/__tests__/*-test.js'","test-browser":"karma start"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"13baf3b24b630f94f963740d18020673b674d54d","_id":"expect@1.9.0","_shasum":"f462333f88b6c3d3549e6d80cf412d42ad9e9691","_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":"f462333f88b6c3d3549e6d80cf412d42ad9e9691","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.9.0.tgz"},"directories":{}},"1.10.0":{"name":"expect","version":"1.10.0","description":"Write better assertions","main":"lib/index","dependencies":{"deep-equal":"^1.0.1","is-regexp":"^1.0.0","object-inspect":"^1.0.2"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^4.1.1","babel-loader":"^5.3.2","eslint":"^1.3.1","karma":"^0.12.28","karma-chrome-launcher":"^0.1.7","karma-cli":"0.0.4","karma-mocha":"^0.1.10","karma-sourcemap-loader":"^0.3.2","karma-webpack":"^1.3.1","mocha":"^2.0.1","webpack":"^1.4.13"},"scripts":{"build":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","test":"eslint modules && mocha --reporter spec 'modules/**/__tests__/*-test.js'","test-browser":"eslint modules && karma start"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"7041ca855ff528d68a808ec7174490560385ee31","_id":"expect@1.10.0","_shasum":"d69fe0afe369cb096682a8ca2684eb7363681e07","_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":"d69fe0afe369cb096682a8ca2684eb7363681e07","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.10.0.tgz"},"directories":{}},"1.11.0":{"name":"expect","version":"1.11.0","description":"Write better assertions","main":"lib/index","dependencies":{"deep-equal":"^1.0.1","is-regexp":"^1.0.0","object-inspect":"^1.0.2"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^4.1.1","babel-loader":"^5.3.2","eslint":"^1.3.1","karma":"^0.12.28","karma-chrome-launcher":"^0.1.7","karma-cli":"0.0.4","karma-mocha":"^0.1.10","karma-sourcemap-loader":"^0.3.2","karma-webpack":"^1.3.1","mocha":"^2.0.1","webpack":"^1.4.13"},"scripts":{"build":"babel ./modules -d lib --stage 0 --loose all --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && mocha --compilers js:babel/register --reporter spec 'modules/**/__tests__/*-test.js'","test-browser":"npm run lint && karma start"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"5cf5a7aa5e83e68bde4f229bd60b303203b74408","_id":"expect@1.11.0","_shasum":"1a338a62f8b28798fa764d08d7b2e773ef430317","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"1a338a62f8b28798fa764d08d7b2e773ef430317","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.11.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"directories":{}},"1.11.1":{"name":"expect","version":"1.11.1","description":"Write better assertions","main":"lib/index","dependencies":{"deep-equal":"^1.0.1","is-regexp":"^1.0.0","object-inspect":"^1.0.2"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^4.1.1","babel-loader":"^5.3.2","eslint":"^1.3.1","karma":"^0.12.28","karma-chrome-launcher":"^0.1.7","karma-cli":"0.0.4","karma-mocha":"^0.1.10","karma-sourcemap-loader":"^0.3.2","karma-webpack":"^1.3.1","mocha":"^2.0.1","webpack":"^1.4.13"},"scripts":{"build":"babel ./modules -d lib --stage 0 --loose all --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && mocha --compilers js:babel/register --reporter spec 'modules/**/__tests__/*-test.js'","test-browser":"npm run lint && karma start"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"0f9a0836b91ba10e4ec2a39143a70a228d9cde01","_id":"expect@1.11.1","_shasum":"9ca179b048430f6ccb78166b5abb3b79e20d856f","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"9ca179b048430f6ccb78166b5abb3b79e20d856f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.11.1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"directories":{}},"1.12.0":{"name":"expect","version":"1.12.0","description":"Write better assertions","main":"lib/index","dependencies":{"deep-equal":"^1.0.1","is-regexp":"^1.0.0","object-inspect":"^1.0.2"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^4.1.1","babel-loader":"^5.0.0","eslint":"^1.3.1","karma":"^0.13.3","karma-chrome-launcher":"^0.2.0","karma-mocha":"^0.2.0","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","webpack":"^1.4.13"},"scripts":{"build":"babel ./modules -d lib --stage 0 --loose all --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && mocha --compilers js:babel/register --reporter spec 'modules/**/__tests__/*-test.js'","test-browser":"npm run lint && karma start"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"a2196f500d6d3077997d139afb49dfce23789d6f","_id":"expect@1.12.0","_shasum":"32a0a8a018b3f434b48e811c3e76f9efe16ee5a4","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"32a0a8a018b3f434b48e811c3e76f9efe16ee5a4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.12.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"directories":{}},"1.12.1":{"name":"expect","version":"1.12.1","description":"Write better assertions","main":"lib/index","dependencies":{"deep-equal":"^1.0.1","is-regexp":"^1.0.0","object-inspect":"^1.0.2"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^4.1.1","babel-loader":"^5.0.0","eslint":"^1.3.1","gzip-size":"^3.0.0","karma":"^0.13.3","karma-chrome-launcher":"^0.2.0","karma-mocha":"^0.2.0","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^2.0.1","webpack":"^1.4.13"},"scripts":{"build":"babel ./modules -d lib --stage 0 --loose all --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && mocha --compilers js:babel/register --reporter spec 'modules/**/__tests__/*-test.js'","test-browser":"npm run lint && karma start","postinstall":"node npm-scripts/postinstall.js"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"4690b77806e7d08ec9fdec4b97f40eb06a17b01e","_id":"expect@1.12.1","_shasum":"0984ae8d202b48a88f786d65bf9f32993df15b4b","_from":".","_npmVersion":"3.3.1","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"0984ae8d202b48a88f786d65bf9f32993df15b4b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.12.1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"directories":{}},"1.12.2":{"name":"expect","version":"1.12.2","description":"Write better assertions","main":"lib/index","dependencies":{"deep-equal":"^1.0.1","is-regexp":"^1.0.0","object-inspect":"^1.0.2"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^4.1.1","babel-loader":"^5.0.0","eslint":"^1.3.1","gzip-size":"^3.0.0","karma":"^0.13.3","karma-chrome-launcher":"^0.2.0","karma-mocha":"^0.2.0","karma-sourcemap-loader":"^0.3.5","karma-webpack":"^1.7.0","mocha":"^2.0.1","pretty-bytes":"^2.0.1","webpack":"^1.4.13"},"scripts":{"build":"babel ./modules -d lib --stage 0 --loose all --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && mocha --compilers js:babel/register --reporter spec 'modules/**/__tests__/*-test.js'","test-browser":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"94f6261a325b6643c1b6b6c35ee84b3b8cf75213","_id":"expect@1.12.2","_shasum":"01455020e746eb6cec650fc423044812bbe9d060","_from":".","_npmVersion":"3.3.1","_nodeVersion":"0.12.7","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"01455020e746eb6cec650fc423044812bbe9d060","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.12.2.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"directories":{}},"1.13.0":{"name":"expect","version":"1.13.0","description":"Write better assertions","main":"lib/index","dependencies":{"deep-equal":"^1.0.1","is-regexp":"^1.0.0","object-inspect":"^1.0.2"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^4.1.1","babel-loader":"^5.0.0","eslint":"^1.3.1","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.6","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":"^2.0.1","webpack":"^1.4.13"},"scripts":{"build":"babel ./modules -d lib --stage 0 --loose all --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"0f2dd707656313ac3029816f24bb7dc6a4a4680d","_id":"expect@1.13.0","_shasum":"36a156f234e9547f4bf0388befad58a47f91da7b","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"36a156f234e9547f4bf0388befad58a47f91da7b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.13.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"directories":{}},"1.13.1":{"name":"expect","version":"1.13.1","description":"Write better assertions","main":"lib/index","dependencies":{"is-equal":"^1.3.0","is-regex":"^1.0.3","object-inspect":"^1.0.2"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^4.1.1","babel-loader":"^5.0.0","eslint":"^1.3.1","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.6","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":"^2.0.1","webpack":"^1.4.13"},"scripts":{"build":"babel ./modules -d lib --stage 0 --loose all --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"dadadafd309f174cae1eb89995c388c4422ea543","_id":"expect@1.13.1","_shasum":"3e15ac41b112361549a962390e6ab0bfb8cedac6","_from":".","_npmVersion":"3.4.1","_nodeVersion":"5.0.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"3e15ac41b112361549a962390e6ab0bfb8cedac6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.13.1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"directories":{}},"1.13.2":{"name":"expect","version":"1.13.2","description":"Write better assertions","main":"lib/index","dependencies":{"is-equal":"^1.4.0","is-regex":"^1.0.3","object-inspect":"^1.0.2"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^4.1.1","babel-loader":"^5.0.0","babel-polyfill":"^6.3.14","eslint":"^1.3.1","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.6","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":"^2.0.1","webpack":"^1.4.13"},"scripts":{"build":"babel ./modules -d lib --stage 0 --loose all --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"98a6607fd6c0d0d46d1618cc2170448284c0f308","_id":"expect@1.13.2","_shasum":"b18866c1400a43c7424794600f7708f2019dc71c","_from":".","_npmVersion":"3.4.1","_nodeVersion":"5.0.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"b18866c1400a43c7424794600f7708f2019dc71c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.13.2.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"directories":{}},"1.13.3":{"name":"expect","version":"1.13.3","description":"Write better assertions","main":"lib/index","dependencies":{"is-equal":"^1.4.0","is-regex":"^1.0.3","object-inspect":"^1.0.2"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^4.1.1","babel-loader":"^5.0.0","eslint":"^1.3.1","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.6","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":"^2.0.1","webpack":"^1.4.13"},"scripts":{"build":"babel ./modules -d lib --stage 0 --loose all --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"4d1df6ecf29d74883e15023d167eaad877500163","_id":"expect@1.13.3","_shasum":"c45244d4d02f1ca18418c5ac49eee65e854a1c55","_from":".","_npmVersion":"3.4.1","_nodeVersion":"5.0.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"c45244d4d02f1ca18418c5ac49eee65e854a1c55","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.13.3.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"directories":{}},"1.13.4":{"name":"expect","version":"1.13.4","description":"Write better assertions","main":"lib/index","dependencies":{"is-equal":"^1.4.2","is-regex":"^1.0.3","object-inspect":"^1.0.2"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^4.1.1","babel-loader":"^5.0.0","eslint":"^1.3.1","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.6","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":"^2.0.1","webpack":"^1.4.13"},"scripts":{"build":"babel ./modules -d lib --stage 0 --loose all --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"4360790f7c12dc9301180be6d281269a7f57cb01","_id":"expect@1.13.4","_shasum":"d59b9eed397a5a6dd2eca1d41b05065f9800928b","_from":".","_npmVersion":"3.4.1","_nodeVersion":"5.0.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"d59b9eed397a5a6dd2eca1d41b05065f9800928b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.13.4.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"directories":{}},"1.14.0":{"name":"expect","version":"1.14.0","description":"Write better assertions","main":"lib/index","dependencies":{"is-equal":"^1.4.2","is-regex":"^1.0.3","object-inspect":"^1.0.2"},"devDependencies":{"babel":"^5.4.7","babel-core":"^5.4.7","babel-eslint":"^4.1.1","babel-loader":"^5.0.0","eslint":"^1.3.1","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.6","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":"^2.0.1","webpack":"^1.4.13"},"scripts":{"build":"babel ./modules -d lib --stage 0 --loose all --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && karma start","postinstall":"node ./npm-scripts/postinstall.js"},"keywords":["expect","assert","test","spec"],"author":{"name":"Michael Jackson"},"license":"MIT","repository":{"type":"git","url":"git://github.com/mjackson/expect.git"},"bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect","gitHead":"2b578da80caa2d57e168cd7a4baebe4fa737214e","_id":"expect@1.14.0","_shasum":"a50dd88b7910f3ee4b2fed90381766f1cace8ba9","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"a50dd88b7910f3ee4b2fed90381766f1cace8ba9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.14.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/expect-1.14.0.tgz_1454367620496_0.1840275104623288"},"directories":{}},"1.15.0":{"name":"expect","version":"1.15.0","description":"Write better assertions","author":{"name":"Michael Jackson"},"license":"MIT","main":"lib","files":["lib","umd"],"dependencies":{"is-equal":"^1.4.2","is-regex":"^1.0.3","object-inspect":"^1.0.2"},"devDependencies":{"babel-cli":"^6.6.5","babel-eslint":"^5.0.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.6.0","eslint":"2.2.0","eslint-config-airbnb":"^6.1.0","eslint-plugin-react":"^4.2.1","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.6","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":"^2.0.1","readline-sync":"^1.4.1","webpack":"^1.4.13"},"scripts":{"build":"node ./scripts/build.js","build-cjs":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && karma start","release":"node ./scripts/release.js"},"keywords":["expect","assert","test","spec"],"repository":{"type":"git","url":"git+https://github.com/mjackson/expect.git"},"gitHead":"ea1f595aa8b07b5cd7c298a2fa23e50cfd492ed2","bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect#readme","_id":"expect@1.15.0","_shasum":"57d2ae968d8095923513a963a2642fd070bd0875","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"57d2ae968d8095923513a963a2642fd070bd0875","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.15.0.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/expect-1.15.0.tgz_1457660962035_0.32809159555472434"},"deprecated":"v1.15.0 has an unintentional breaking change; upgrade to v1.15.2 immediately!","directories":{}},"1.15.1":{"name":"expect","version":"1.15.1","description":"Write better assertions","author":{"name":"Michael Jackson"},"license":"MIT","main":"lib","files":["lib","umd"],"scripts":{"build":"node ./scripts/build.js","build-cjs":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && karma start","release":"node ./scripts/release.js","prepublish":"npm run build"},"dependencies":{"is-equal":"^1.4.2","is-regex":"^1.0.3","object-inspect":"^1.0.2"},"devDependencies":{"babel-cli":"^6.6.5","babel-eslint":"^5.0.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.6.0","eslint":"2.2.0","eslint-config-airbnb":"^6.1.0","eslint-plugin-react":"^4.2.1","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.6","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":"^2.0.1","readline-sync":"^1.4.1","webpack":"^1.4.13"},"keywords":["expect","assert","test","spec"],"repository":{"type":"git","url":"git+https://github.com/mjackson/expect.git"},"gitHead":"5cce2004394b1fe54273814d4896b900223ebb4f","bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect#readme","_id":"expect@1.15.1","_shasum":"9423441e277cb5f6432d9ab245d412042a215655","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"9423441e277cb5f6432d9ab245d412042a215655","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.15.1.tgz"},"maintainers":[{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/expect-1.15.1.tgz_1457679014431_0.9286665280815214"},"deprecated":"v1.15.1 has an unintentional breaking change; upgrade to v1.15.2 immediately!","directories":{}},"1.15.2":{"name":"expect","version":"1.15.2","description":"Write better assertions","author":{"name":"Michael Jackson"},"license":"MIT","main":"lib","files":["lib","umd"],"scripts":{"build":"node ./scripts/build.js","build-cjs":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && karma start","release":"node ./scripts/release.js","prepublish":"npm run build"},"dependencies":{"is-equal":"^1.4.2","is-regex":"^1.0.3","object-inspect":"^1.0.2"},"devDependencies":{"babel-cli":"^6.6.5","babel-eslint":"^5.0.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.6.0","eslint":"2.2.0","eslint-config-airbnb":"^6.1.0","eslint-plugin-react":"^4.2.1","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.6","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":"^2.0.1","readline-sync":"^1.4.1","webpack":"^1.4.13"},"keywords":["expect","assert","test","spec"],"repository":{"type":"git","url":"git+https://github.com/mjackson/expect.git"},"gitHead":"01a21882d99ee0626163178b55f83d1d531e04d9","bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect#readme","_id":"expect@1.15.2","_shasum":"2ebbef7037e35a66be44ecff54275e8e693800f2","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"2ebbef7037e35a66be44ecff54275e8e693800f2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.15.2.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/expect-1.15.2.tgz_1457720040831_0.037287323968485"},"directories":{}},"1.16.0":{"name":"expect","version":"1.16.0","description":"Write better assertions","author":{"name":"Michael Jackson"},"license":"MIT","main":"lib","files":["lib","umd"],"scripts":{"build":"node ./scripts/build.js","build-cjs":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && karma start","release":"node ./scripts/release.js","prepublish":"npm run build"},"dependencies":{"is-equal":"^1.4.2","is-regex":"^1.0.3","object-inspect":"^1.0.2"},"devDependencies":{"babel-cli":"^6.6.5","babel-eslint":"^5.0.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.6.0","eslint":"2.2.0","eslint-config-airbnb":"^6.1.0","eslint-plugin-react":"^4.2.1","gzip-size":"^3.0.0","karma":"^0.13.3","karma-browserstack-launcher":"^0.1.6","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":"^2.0.1","readline-sync":"^1.4.1","webpack":"^1.4.13"},"keywords":["expect","assert","test","spec"],"repository":{"type":"git","url":"git+https://github.com/mjackson/expect.git"},"babel":{"presets":["es2015"]},"gitHead":"71fea0c9234db5136c9735c767d650176b4e956e","bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect#readme","_id":"expect@1.16.0","_shasum":"a92a6d72368857942b43b079f2e353dbb5877e1f","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"a92a6d72368857942b43b079f2e353dbb5877e1f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.16.0.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/expect-1.16.0.tgz_1458721112737_0.27283221669495106"},"directories":{}},"1.17.0":{"name":"expect","version":"1.17.0","description":"Write better assertions","author":{"name":"Michael Jackson"},"license":"MIT","main":"lib","files":["lib","umd"],"scripts":{"build":"node ./scripts/build.js","build-cjs":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && karma start","release":"node ./scripts/release.js","prepublish":"npm run build"},"dependencies":{"has":"^1.0.1","is-equal":"^1.5.1","is-regex":"^1.0.3","object-inspect":"^1.1.0","object-keys":"^1.0.9"},"devDependencies":{"babel-cli":"^6.6.5","babel-eslint":"^6.0.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.6.0","eslint":"^2.5.1","eslint-config-airbnb":"^6.2.0","eslint-plugin-react":"^4.2.3","gzip-size":"^3.0.0","karma":"^0.13.22","karma-browserstack-launcher":"^0.1.10","karma-chrome-launcher":"^0.2.3","karma-mocha":"^0.2.2","karma-mocha-reporter":"^2.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^2.4.5","pretty-bytes":"^3.0.1","readline-sync":"^1.4.1","webpack":"^1.12.14"},"keywords":["expect","assert","test","spec"],"repository":{"type":"git","url":"git+https://github.com/mjackson/expect.git"},"babel":{"presets":["es2015"]},"gitHead":"e5df39d540ed3f9320a869e12867180f95d11580","bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect#readme","_id":"expect@1.17.0","_shasum":"960716b1f8b7b996d52c7dc7763e59d7e408bead","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.1","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"960716b1f8b7b996d52c7dc7763e59d7e408bead","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.17.0.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/expect-1.17.0.tgz_1461026360668_0.5187871525995433"},"directories":{}},"1.18.0":{"name":"expect","version":"1.18.0","description":"Write better assertions","author":{"name":"Michael Jackson"},"license":"MIT","main":"lib","files":["lib","umd"],"scripts":{"build":"node ./scripts/build.js","build-cjs":"babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && karma start","release":"node ./scripts/release.js","prepublish":"npm run build"},"dependencies":{"has":"^1.0.1","is-equal":"^1.5.1","is-regex":"^1.0.3","object-inspect":"^1.1.0","object-keys":"^1.0.9","tmatch":"^2.0.1"},"devDependencies":{"babel-cli":"^6.6.5","babel-eslint":"^6.0.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.6.0","eslint":"^2.5.1","eslint-config-airbnb":"^6.2.0","eslint-plugin-react":"^4.2.3","gzip-size":"^3.0.0","karma":"^0.13.22","karma-browserstack-launcher":"^0.1.10","karma-chrome-launcher":"^0.2.3","karma-mocha":"^0.2.2","karma-mocha-reporter":"^2.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^2.4.5","pretty-bytes":"^3.0.1","readline-sync":"^1.4.1","webpack":"^1.12.14"},"keywords":["expect","assert","test","spec"],"repository":{"type":"git","url":"git+https://github.com/mjackson/expect.git"},"babel":{"presets":["es2015"]},"gitHead":"7dee440c6efe4afd1c612b8cd738760d3da5ee53","bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect#readme","_id":"expect@1.18.0","_shasum":"3ee9b58d2ef0b04b9584877bdd4fe73fde958fce","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.1","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"3ee9b58d2ef0b04b9584877bdd4fe73fde958fce","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.18.0.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/expect-1.18.0.tgz_1461028093686_0.7909906825516373"},"directories":{}},"1.19.0":{"name":"expect","version":"1.19.0","description":"Write better assertions","author":{"name":"Michael Jackson"},"license":"MIT","main":"lib","files":["lib","umd"],"scripts":{"build":"node ./scripts/build.js","build-cjs":"rimraf lib && babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && karma start","release":"node ./scripts/release.js","prepublish":"npm run build"},"dependencies":{"define-properties":"~1.1.2","has":"^1.0.1","is-equal":"^1.5.1","is-regex":"^1.0.3","object-inspect":"^1.1.0","object-keys":"^1.0.9","tmatch":"^2.0.1"},"devDependencies":{"babel-cli":"^6.6.5","babel-eslint":"^6.0.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.6.0","eslint":"^2.5.1","eslint-config-airbnb":"^6.2.0","eslint-plugin-react":"^4.2.3","gzip-size":"^3.0.0","karma":"^0.13.22","karma-browserstack-launcher":"^0.1.10","karma-chrome-launcher":"^0.2.3","karma-mocha":"^0.2.2","karma-mocha-reporter":"^2.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^2.4.5","pretty-bytes":"^3.0.1","readline-sync":"^1.4.1","rimraf":"^2.5.2","webpack":"^1.12.14"},"keywords":["expect","assert","test","spec"],"repository":{"type":"git","url":"git+https://github.com/mjackson/expect.git"},"babel":{"presets":["es2015"]},"gitHead":"84a9d0007aff0bfcc323444047701133c6ec1747","bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect#readme","_id":"expect@1.19.0","_shasum":"14139fd4a933cdcad51775e4c51423b27b68b5cf","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.1","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"14139fd4a933cdcad51775e4c51423b27b68b5cf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.19.0.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/expect-1.19.0.tgz_1462228635926_0.07432770426385105"},"directories":{}},"1.20.0":{"name":"expect","version":"1.20.0","description":"Write better assertions","author":{"name":"Michael Jackson"},"license":"MIT","main":"lib","files":["lib","umd"],"scripts":{"build":"node ./scripts/build.js","build-cjs":"rimraf lib && babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && karma start","release":"node ./scripts/release.js","prepublish":"npm run build"},"dependencies":{"define-properties":"~1.1.2","has":"^1.0.1","is-equal":"^1.5.1","is-regex":"^1.0.3","object-inspect":"^1.1.0","object-keys":"^1.0.9","tmatch":"^2.0.1"},"devDependencies":{"babel-cli":"^6.6.5","babel-eslint":"^6.0.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.6.0","eslint":"^2.5.1","eslint-config-airbnb":"^6.2.0","eslint-plugin-react":"^4.2.3","gzip-size":"^3.0.0","karma":"^0.13.22","karma-browserstack-launcher":"^0.1.10","karma-chrome-launcher":"^0.2.3","karma-mocha":"^0.2.2","karma-mocha-reporter":"^2.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^2.4.5","pretty-bytes":"^3.0.1","readline-sync":"^1.4.1","rimraf":"^2.5.2","webpack":"^1.12.14"},"keywords":["expect","assert","test","spec"],"repository":{"type":"git","url":"git+https://github.com/mjackson/expect.git"},"babel":{"presets":["es2015"]},"gitHead":"aa5b4207031bb829b4431f930a14fb99e358ff49","bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect#readme","_id":"expect@1.20.0","_shasum":"1cf23b9a28ed2a99d76160c74f64a944d86f3e47","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"1cf23b9a28ed2a99d76160c74f64a944d86f3e47","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.20.0.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/expect-1.20.0.tgz_1462582592092_0.7742907565552741"},"directories":{}},"1.20.1":{"name":"expect","version":"1.20.1","description":"Write better assertions","author":{"name":"Michael Jackson"},"license":"MIT","main":"lib","files":["lib","umd"],"scripts":{"build":"node ./scripts/build.js","build-cjs":"rimraf lib && babel ./modules -d lib --ignore '__tests__'","build-umd":"NODE_ENV=production webpack modules/index.js umd/expect.js","build-min":"NODE_ENV=production webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && karma start","release":"node ./scripts/release.js","prepublish":"npm run build"},"dependencies":{"define-properties":"~1.1.2","has":"^1.0.1","is-equal":"^1.5.1","is-regex":"^1.0.3","object-inspect":"^1.1.0","object-keys":"^1.0.9","tmatch":"^2.0.1"},"devDependencies":{"babel-cli":"^6.6.5","babel-eslint":"^6.0.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.6.0","eslint":"^2.5.1","eslint-config-airbnb":"^6.2.0","eslint-plugin-react":"^4.2.3","gzip-size":"^3.0.0","karma":"^0.13.22","karma-browserstack-launcher":"^0.1.10","karma-chrome-launcher":"^0.2.3","karma-mocha":"^0.2.2","karma-mocha-reporter":"^2.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^2.4.5","pretty-bytes":"^3.0.1","readline-sync":"^1.4.1","rimraf":"^2.5.2","webpack":"^1.12.14"},"keywords":["expect","assert","test","spec"],"repository":{"type":"git","url":"git+https://github.com/mjackson/expect.git"},"babel":{"presets":["es2015"]},"gitHead":"59830681af5e271ca0e633e93b78e564a0e095d8","bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect#readme","_id":"expect@1.20.1","_shasum":"d3f18423be6d04f829daabc240879d7867edf5f3","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"d3f18423be6d04f829daabc240879d7867edf5f3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.20.1.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/expect-1.20.1.tgz_1462668483548_0.2283196912612766"},"directories":{}},"1.20.2":{"name":"expect","version":"1.20.2","description":"Write better assertions","author":{"name":"Michael Jackson"},"license":"MIT","main":"lib","files":["lib","umd"],"scripts":{"build":"node ./scripts/build.js","build-lib":"rimraf lib && babel ./modules -d lib --ignore '__tests__'","build-umd":"webpack modules/index.js umd/expect.js","build-min":"webpack -p modules/index.js umd/expect.min.js","lint":"eslint modules","test":"npm run lint && karma start","release":"node ./scripts/release.js","prepublish":"node ./scripts/build.js"},"dependencies":{"define-properties":"~1.1.2","has":"^1.0.1","is-equal":"^1.5.1","is-regex":"^1.0.3","object-inspect":"^1.1.0","object-keys":"^1.0.9","tmatch":"^2.0.1"},"devDependencies":{"babel-cli":"^6.6.5","babel-eslint":"^6.0.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.6.0","eslint":"^2.5.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-import":"^1.7.0","eslint-plugin-jsx-a11y":"^1.2.0","eslint-plugin-react":"^5.1.1","gzip-size":"^3.0.0","in-publish":"^2.0.0","karma":"^0.13.22","karma-browserstack-launcher":"^1.0.0","karma-chrome-launcher":"^1.0.1","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","mocha":"^2.5.3","pretty-bytes":"^3.0.1","readline-sync":"^1.4.1","rimraf":"^2.5.2","webpack":"^1.12.14"},"keywords":["expect","assert","test","spec"],"repository":{"type":"git","url":"git+https://github.com/mjackson/expect.git"},"babel":{"presets":["es2015"]},"gitHead":"8301ca9b742b86631c6d3df282f3a21138ac50aa","bugs":{"url":"https://github.com/mjackson/expect/issues"},"homepage":"https://github.com/mjackson/expect#readme","_id":"expect@1.20.2","_shasum":"d458fe4c56004036bae3232416a3f6361f04f965","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"mjackson","email":"mjijackson@gmail.com"},"dist":{"shasum":"d458fe4c56004036bae3232416a3f6361f04f965","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/expect/-/expect-1.20.2.tgz"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"mjackson","email":"mjijackson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/expect-1.20.2.tgz_1467217055796_0.916522657033056"},"directories":{}}},"name":"expect","time":{"modified":"2017-03-28T14:25:24.554Z","created":"2011-11-29T18:50:39.841Z","0.0.0":"2011-11-29T18:50:42.029Z","0.0.2":"2011-12-03T18:40:52.830Z","0.1.0":"2014-03-10T14:46:15.294Z","0.1.1":"2014-03-11T00:49:19.403Z","1.0.0":"2014-11-13T17:26:57.197Z","1.0.1":"2014-11-13T17:29:56.893Z","1.0.2":"2014-11-13T17:43:29.909Z","1.1.0":"2014-12-03T06:16:57.535Z","1.2.0":"2014-12-31T18:09:12.610Z","1.3.0":"2014-12-31T18:27:45.761Z","1.4.0":"2015-01-19T04:41:24.785Z","1.5.0":"2015-01-27T20:16:11.962Z","1.6.0":"2015-02-02T22:49:53.998Z","1.7.0":"2015-07-16T20:55:36.240Z","1.8.0":"2015-07-17T18:18:02.723Z","1.9.0":"2015-08-12T16:45:28.551Z","1.10.0":"2015-09-11T09:20:05.965Z","1.11.0":"2015-09-26T01:22:55.171Z","1.11.1":"2015-09-26T05:06:09.075Z","1.12.0":"2015-10-05T21:34:11.373Z","1.12.1":"2015-10-10T16:09:29.629Z","1.12.2":"2015-10-13T23:00:04.422Z","1.13.0":"2015-11-12T15:07:57.530Z","1.13.1":"2015-12-10T18:42:52.495Z","1.13.2":"2015-12-11T17:18:51.990Z","1.13.3":"2015-12-14T16:38:25.108Z","1.13.4":"2015-12-16T20:26:56.782Z","1.14.0":"2016-02-01T23:00:22.668Z","1.15.0":"2016-03-11T01:49:22.456Z","1.15.1":"2016-03-11T06:50:14.840Z","1.15.2":"2016-03-11T18:14:01.257Z","1.16.0":"2016-03-23T08:18:33.172Z","1.17.0":"2016-04-19T00:39:21.101Z","1.18.0":"2016-04-19T01:08:15.913Z","1.19.0":"2016-05-02T22:37:18.520Z","1.20.0":"2016-05-07T00:56:35.298Z","1.20.1":"2016-05-08T00:48:06.161Z","1.20.2":"2016-06-29T16:17:36.276Z"},"readmeFilename":"README.md","homepage":"https://github.com/mjackson/expect#readme"}