{"_id":"es6-shim","maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"dist-tags":{"latest":"0.35.8"},"author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","readme":"# ES6 Shim\nProvides compatibility shims so that legacy JavaScript engines behave as\nclosely as possible to ECMAScript 6 (Harmony).\n\n[![Build Status][1]][2] [![dependency status][3]][4] [![dev dependency status][5]][6]\n\n[![browser support](https://ci.testling.com/paulmillr/es6-shim.png)](https://ci.testling.com/paulmillr/es6-shim)\n\n[![Sauce Test Status](https://saucelabs.com/browser-matrix/es6-shim.svg)](https://saucelabs.com/u/es6-shim)\n\n[HTML version of the final ECMAScript 6 spec][spec-html-url]\n\n## Installation\nIf you want to use it in browser:\n\n* Just include `es6-shim` before your scripts.\n* Include [es5-shim][es5-shim-url] especially if your browser doesn't support ECMAScript 5 - but every JS engine requires the `es5-shim` to correct broken implementations, so it's strongly recommended to always include it. Additionally, `es5-shim` should be loaded before `es6-shim`.\n\nFor `node.js`, `io.js`, or any `npm`-managed workflow (this is the recommended method):\n\n    npm install es6-shim\n\nAlternative methods:\n* `component install paulmillr/es6-shim` if you’re using [component(1)](https://github.com/componentjs/component).\n* `bower install es6-shim` if you’re using [Bower](http://bower.io/).\n\nIn both browser and node you may also want to include `unorm`; see the [`String.prototype.normalize`](#stringprototypenormalize) section for details.\n\n## Safe shims\n\n* `Map` (requires ES5 property descriptor support) ([a standalone shim is also available](https://npmjs.com/es-map))\n* `Set` (requires ES5 property descriptor support) ([a standalone shim is also available](https://npmjs.com/es-set))\n* `Promise`\n* `String`:\n    * `fromCodePoint()` ([a standalone shim is also available](https://npmjs.com/string.fromcodepoint))\n    * `raw()` ([a stanadlone shim is also available](https://www.npmjs.com/package/string.raw))\n* `String.prototype`:\n    * `codePointAt()` ([a standalone shim is also available](https://npmjs.com/string.prototype.codepointat))\n    * `endsWith()` ([a standalone shim is also available](https://npmjs.com/string.prototype.endswith))\n    * `includes()` ([a standalone shim is also available](https://npmjs.com/string.prototype.includes))\n    * `repeat()` ([a standalone shim is also available](https://npmjs.com/string.prototype.repeat))\n    * `startsWith()` ([a standalone shim is also available](https://npmjs.com/string.prototype.startswith))\n* `RegExp`:\n    * `new RegExp`, when given a RegExp as the pattern, will no longer throw when given a \"flags\" string argument. (requires ES5)\n* `RegExp.prototype`:\n    * `flags` (requires ES5) ([a standalone shim is also available](https://npmjs.com/regexp.prototype.flags))\n    * `[Symbol.match]` (requires native `Symbol`s)\n    * `[Symbol.replace]` (requires native `Symbol`s)\n    * `[Symbol.search]` (requires native `Symbol`s)\n    * `[Symbol.split]` (requires native `Symbol`s)\n    * `toString`\n* `Number`:\n    * binary and octal literals: `Number('0b1')` and `Number('0o7')`\n    * `EPSILON`\n    * `MAX_SAFE_INTEGER`\n    * `MIN_SAFE_INTEGER`\n    * `isNaN()` ([a standalone shim is also available](https://www.npmjs.com/package/is-nan))\n    * `isInteger()` ([a standalone shim is also available(https://www.npmjs.com/package/number.isinteger))\n    * `isSafeInteger()`([a standalone shim is also available](https://www.npmjs.com/package/number.issafeinteger))\n    * `isFinite()` ([a standalone shim is also available](https://www.npmjs.com/package/number.isfinite))\n    * `parseInt()` ([a standalone shim is also available](https://www.npmjs.com/package/parseint))\n    * `parseFloat()`\n* `Array`:\n    * `from()` ([a standalone shim is also available](https://www.npmjs.com/package/array.from))\n    * `of()` ([a standalone shim is also available](https://www.npmjs.com/package/array.of))\n* `Array.prototype`:\n    * `copyWithin()` ([a standalone shim is also available](https://npmjs.com/array.prototype.copywithin))\n    * `entries()` ([a standalone shim is also available](https://npmjs.com/array.prototype.entries))\n    * `fill()`\n    * `find()` ([a standalone shim is also available](https://npmjs.com/array.prototype.find))\n    * `findIndex()` ([a standalone shim is also available](https://npmjs.com/array.prototype.findindex))\n    * `keys()` ([a standalone shim is also available](https://npmjs.com/array.prototype.keys))\n    * `values()` ([a standalone shim is also available](https://npmjs.com/array.prototype.values))\n    * `indexOf()` (ES6 errata) ([a standalone shim is also available](https://npmjs.com/array.prototype.indexof))\n* `Object`:\n    * `assign()` ([a standalone shim is also available](https://npmjs.com/object.assign))\n    * `is()` ([a standalone shim is also available](https://npmjs.com/object-is))\n    * `keys()` (in ES5, but no longer throws on non-object non-null/undefined values in ES6) ([a standalone shim is also available](https://npmjs.com/object-keys)\n    * `setPrototypeOf()` (IE >= 11)\n* `Function.prototype`:\n    * `name` (es6-sham, covers IE 9-11) ([a standalone shim is also available](https://npmjs.com/function.prototype.name)\n* `Math`:\n    * `acosh()` ([a standalone shim is also available](https://npmjs.com/math.acosh))\n    * `asinh()`\n    * `atanh()` ([a standalone shim is also available](https://npmjs.com/math.atanh))\n    * `cbrt()` ([a standalone shim is also available](https://npmjs.com/math.cbrt))\n    * `clz32()` ([a standalone shim is also available](https://npmjs.com/math.clz32))\n    * `cosh()`\n    * `expm1()`\n    * `fround()` ([a standalone shim is also available](https://npmjs.com/math.fround))\n    * `hypot()`\n    * `imul()` ([a standalone shim is also available](https://npmjs.com/math.imul))\n    * `log10()` ([a standalone shim is also available](https://npmjs.com/math.log10))\n    * `log1p()` ([a standalone shim is also available](https://npmjs.com/math.log1p))\n    * `log2()`\n    * `sign()` ([a standalone shim is also available](https://npmjs.com/math.sign))\n    * `sinh()`\n    * `tanh()`\n    * `trunc()`\n\nMath functions’ accuracy is 1e-11.\n\n* `Reflect`\n    * `apply()` ([a standalone shim is also available](https://npmjs.com/reflect.apply))\n    * `construct()`\n    * `defineProperty()`\n    * `deleteProperty()`\n    * `get()`\n    * `getOwnPropertyDescriptor()`\n    * `getPrototypeOf()` ([a standalone shim is also available](https://npmjs.com/reflect.getprototypeof))\n    * `has()`\n    * `isExtensible()`\n    * `ownKeys()` ([a standalone shim is also available](https://npmjs.com/reflect.ownkeys))\n    * `preventExtensions()`\n    * `set()`\n    * `setPrototypeOf()`\n\n* `Symbol` (only if it already exists)\n    * `match` (and corresponding `String#match`, `String#startsWith`, `String#endsWith`, `String#includes`, `RegExp` support)\n    * `replace` (and corresponding `String#replace` support)\n    * `search` (and corresponding `String#search` support)\n    * `split` (and corresponding `String#split` support)\n\nWell-known symbols will only be provided if the engine already has `Symbol` support.\n\n* `String.prototype` Annex B HTML methods ([a standalone shim is also available](https://www.npmjs.com/package/es-string-html-methods))\n    * `anchor()`\n    * `big()`\n    * `blink()`\n    * `bold()`\n    * `fixed()`\n    * `fontcolor()`\n    * `fontsize()`\n    * `italics()`\n    * `link()`\n    * `small()`\n    * `strike()`\n    * `sub()`\n    * `sup()`\n\nThese methods are part of \"Annex B\", which means that although they are a defacto standard, you shouldn't use them. None the less, the `es6-shim` provides them and normalizes their behavior across browsers.\n\n## Subclassing\nThe `Map`, `Set`, and `Promise` implementations are subclassable.\nYou should use the following pattern to create a subclass in ES5 which will continue to work in ES6:\n```javascript\nrequire('es6-shim');\n\nfunction MyPromise(exec) {\n  var promise = new Promise(exec);\n  Object.setPrototypeOf(promise, MyPromise.prototype);\n  // ...\n  return promise;\n}\nObject.setPrototypeOf(MyPromise, Promise);\nMyPromise.prototype = Object.create(Promise.prototype, {\n  constructor: { value: MyPromise }\n});\n```\n\n## String.prototype.normalize\nIncluding a proper shim for `String.prototype.normalize` would increase the size of this library by a factor of more than 4.\nSo instead we recommend that you install the [`unorm`](https://github.com/walling/unorm) package alongside `es6-shim` if you need `String.prototype.normalize`.\nSee https://github.com/paulmillr/es6-shim/issues/134 for more discussion.\n\n\n## WeakMap shim\nIt is not possible to implement WeakMap in pure javascript.\nThe [es6-collections](https://github.com/WebReflection/es6-collections) implementation doesn't hold values strongly, which is critical for the collection. `es6-shim` decided to not include an incorrect shim.\n\n`WeakMap` has very unusual use-cases, so you probably won't need it at all (use simple `Map` instead).\n\n## Getting started\n\n```javascript\nrequire('es6-shim');\nvar assert = require('assert');\n\nassert.equal(true, 'abc'.startsWith('a'));\nassert.equal(false, 'abc'.endsWith('a'));\nassert.equal(true, 'john alice'.includes('john'));\nassert.equal('123'.repeat(2), '123123');\n\nassert.equal(false, NaN === NaN);\nassert.equal(true, Object.is(NaN, NaN));\nassert.equal(true, -0 === 0);\nassert.equal(false, Object.is(-0, 0));\n\nvar result = Object.assign({ a: 1 }, { b: 2 });\nassert.deepEqual(result, { a: 1, b: 2 });\n\nassert.equal(true, isNaN('a'));\nassert.equal(false, Number.isNaN('a'));\nassert.equal(true, Number.isNaN(NaN));\n\nassert.equal(true, isFinite('123'));\nassert.equal(false, Number.isFinite('123'));\nassert.equal(false, Number.isFinite(Infinity));\n\n// Tests if value is a number, finite,\n// >= -9007199254740992 && <= 9007199254740992 and floor(value) === value\nassert.equal(false, Number.isInteger(2.4));\n\nassert.equal(1, Math.sign(400));\nassert.equal(0, Math.sign(0));\nassert.equal(-1, Math.sign(-400));\n\nvar found = [5, 10, 15, 10].find(function (item) { return item / 2 === 5; });\nassert.equal(10, found);\n\nvar foundIndex = [5, 10, 15, 10].findIndex(function (item) { return item / 2 === 5; });\nassert.equal(1, foundIndex);\n\n// Replacement for `{}` key-value storage.\n// Keys can be anything.\nvar map = new Map([['Bob', 42], ['Foo', 'bar']]);\nmap.set('John', 25);\nmap.set('Alice', 400);\nmap.set(['meh'], 555);\nassert.equal(undefined, map.get(['meh'])); // undefined because you need to use exactly the same object.\nmap.delete('Alice');\nmap.keys();\nmap.values();\nassert.equal(4, map.size);\n\n// Useful for storing unique items.\nvar set = new Set([0, 1]);\nset.add(2);\nset.add(5);\nassert.equal(true, set.has(0));\nassert.equal(true, set.has(1));\nassert.equal(true, set.has(2));\nassert.equal(false, set.has(4));\nassert.equal(true, set.has(5));\nset.delete(5);\nassert.equal(false, set.has(5));\n\n// Promises, see\n// http://www.slideshare.net/domenicdenicola/callbacks-promises-and-coroutines-oh-my-the-evolution-of-asynchronicity-in-javascript\n// https://github.com/petkaantonov/bluebird/#what-are-promises-and-why-should-i-use-them\nPromise.resolve(5).then(function (value) {\n  assert.equal(value, 5);\n  if (value) throw new Error('whoops!');\n  // do some stuff\n  return anotherPromise();\n}).catch(function (e) {\n  assert.equal(e.message, 'whoops!');\n  assert.equal(true, e instanceof Error);\n  // any errors thrown asynchronously end up here\n});\n```\n\n## Caveats\n\n - `Object.setPrototypeOf` / `Reflect.setPrototypeOf`\n   - Note that null objects (`Object.create(null)`, eg, an object with `null` as its `[[Prototype]]`) can not have their `[[Prototype]]` changed except via a native `Object.setPrototypeOf`.\n - Well-known `Symbol`s\n   - In order to make them work cross-realm, these are created with the global `Symbol` registry via `Symbol.for`. This does not violate the spec, but it does mean that `Symbol.for('Symbol.search') === Symbol.search` will be `true`, which it would not by default in a fresh compliant realm.\n\n## [License][license-url]\n\nThe project was initially based on es6-shim by Axel Rauschmayer.\n\n[1]: https://travis-ci.org/paulmillr/es6-shim.svg\n[2]: https://travis-ci.org/paulmillr/es6-shim\n[3]: https://david-dm.org/paulmillr/es6-shim.svg\n[4]: https://david-dm.org/paulmillr/es6-shim\n[5]: https://david-dm.org/paulmillr/es6-shim/dev-status.svg\n[6]: https://david-dm.org/paulmillr/es6-shim#info=devDependencies\n[license-url]: https://github.com/paulmillr/es6-shim/blob/master/LICENSE\n[spec-html-url]: http://www.ecma-international.org/ecma-262/6.0/\n[es5-shim-url]: https://github.com/es-shims/es5-shim\n","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"users":{"wagnercsfilho":true,"jmsherry":true,"subchen":true,"nickeltobias":true,"largepuma":true,"moimikey":true,"yodairish":true,"jeandrebosch":true,"a3.ivanenko":true,"garrickajo":true,"morogasper":true,"shannonmoeller":true,"tommyzzm":true,"sxwalle":true,"renishskills":true,"tkhemani":true,"tobiasnickel":true,"gtopia":true},"bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"license":"MIT","versions":{"0.6.0":{"author":{"name":"Paul Miller","url":"http://paulmillr.com/"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","version":"0.6.0","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"mocha --require 'test/test_helpers.js'"},"engines":{"node":"~0.8.0 || ~0.9.0"},"dependencies":{},"devDependencies":{"mocha":"1.8.1","chai":"1.4.2"},"_id":"es6-shim@0.6.0","dist":{"shasum":"ec2aafacda378615800b3c763089c06c8ae44ea8","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.6.0.tgz","integrity":"sha512-F9xV6jhiVp7Jhs7tp+PUDz54XLnPL+jsWUy+aOFkmwW+Lka8sV2WJPYtFJnAsNH/H2Q0lNns3gkNKQUcrAiswg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEMCIB1WpssHG/93BWOfP52SxTh6teUy5sBxo7JiitqhFdb5Ah9q1qyHi/yvc+tG+nVVIiAZonvMqWfimIpx5N6MiB1W"}]},"_npmVersion":"1.1.65","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{},"deprecated":"Please update to the latest es6-shim for the latest draft spec updates"},"0.4.0":{"author":{"name":"Paul Miller","url":"http://paulmillr.com/"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","version":"0.4.0","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"make test"},"engines":{"node":"~0.6.5"},"dependencies":{},"devDependencies":{"mocha":"0.7.1","expect.js":"0.1.1"},"_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"_id":"es6-shim@0.4.0","_engineSupported":true,"_npmVersion":"1.1.0-beta-10","_nodeVersion":"v0.6.10","_defaultsLoaded":true,"dist":{"shasum":"208463d4f601bb43dce2c26ada053ccd380ecef5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.4.0.tgz","integrity":"sha512-m4lgnx84Vow+1czJkONG1DgjBwnnJWRZFuCg8GZ8bTWLHUEl/BJ95PTa5pn+7SsDd7JJkSPv5r+PI3iIl+labA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAiXoQaO7Lcn9BjvIUeudiH64Kv/2zF0b2B28vN+9qctAiEAhbGN4x2+AMttoquRCtjJDaHSRyv2LjD0p++QPUASSKo="}]},"maintainers":[{"name":"paulmillr","email":"paulmillr@me.com"}],"directories":{},"deprecated":"Please update to the latest es6-shim for the latest draft spec updates"},"0.4.1":{"author":{"name":"Paul Miller","url":"http://paulmillr.com/"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","version":"0.4.1","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"make test"},"engines":{"node":"~0.6.5"},"dependencies":{},"devDependencies":{"mocha":"0.7.1","expect.js":"0.1.1"},"_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"_id":"es6-shim@0.4.1","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.18","_nodeVersion":"v0.6.14","_defaultsLoaded":true,"dist":{"shasum":"71b37a6449a5ead40cfb1930b4e3e405270e8b78","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.4.1.tgz","integrity":"sha512-jQNZPySsCrwW0jbgJQtgo/BvN6auQUtKgEeUjqxjmT6TvICsQZdz9RVpPnvoT/y5pFylMFpJu9zPCCk3ZH847w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC4E2ghZoFV1/OT5mn3TTYXuQ/gMn0viPWEwwIrT/C05AIgQgy0SzcmxcB/MioW2dJ87VfSOLJwQvKyEEtUuUmPZXY="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{},"deprecated":"Please update to the latest es6-shim for the latest draft spec updates"},"0.8.0":{"author":{"name":"Paul Miller","url":"http://paulmillr.com/"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","version":"0.8.0","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"mocha --require test/test_helpers.js"},"testling":{"files":["es6-shim.js","test/*.js"],"harness":"mocha","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10","chrome/23.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest"]},"dependencies":{},"devDependencies":{"mocha":"1.9.0","chai":"1.6.0","es5-shim":"2.0.11"},"_id":"es6-shim@0.8.0","dist":{"shasum":"7f29cbae02c19abb2f599f7b1cc149a732a75622","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.8.0.tgz","integrity":"sha512-ixzx24oZzOjY703+E/Oyb085PsNQlJ1T70VD1GUpo2EB1U5EEaDHVWoyOg44wQvec5pPKA5vrysbUOBjtvtPQg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFf8yF13qP2wl6/Un3fRb7BLcIJngqaDbxlXM0cea+QkAiAnoRKF9/Jc1PpOWM/QnTxPOaRhrqtKYg1H3+o4/m0kpA=="}]},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{},"deprecated":"Please update to the latest es6-shim for the latest draft spec updates"},"0.20.2":{"name":"es6-shim","version":"0.20.2","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run test-shim && npm run test-sham","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"jshint es6-shim.js test/*.js test/*/*.js && jscs es6-shim.js test/*.js test/*/*.js","lint-sham":"jshint es6-sham.js test-sham/*.js && jscs es6-sham.js test-sham/*.js","test-shim":"npm run lint-shim && mocha test/*.js test/*/*.js","test-sham":"npm run lint-sham && mocha test-sham/*.js","test-native":"jshint es6-shim.js && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.9.2","es5-shim":"~4.0.3","grunt":"~0.4.5","grunt-contrib-connect":"~0.8.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.3.2","jscs":"~1.7.3","jshint":"~2.5.6","mocha":"~2.0.1","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.15"},"gitHead":"f1a9e182eead8a2df3a441dc021881233988b9dd","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.20.2","_shasum":"4f174a32d293adb34f6ad9b25b9aa56d7f9d1a76","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"4f174a32d293adb34f6ad9b25b9aa56d7f9d1a76","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.20.2.tgz","integrity":"sha512-q1VpGdx6QXecEdx61aAf+dsAm8XB4nbOykM8hqbek7c5gGrpAChqLnu76JuxW/J4ZFHvvFhVeRXO/gBxEUDAmQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCVQl3vsHxeJXKCpZuURY6kaIyEyDD3ztYtCSAM/QKAqgIhAKQWdmGaBecFoYbDAwgAnwGpgqc9WFrUmwa+3bbfNMuQ"}]},"directories":{}},"0.22.0":{"name":"es6-shim","version":"0.22.0","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.10.0","es5-shim":"~4.0.5","grunt":"~0.4.5","grunt-contrib-connect":"~0.9.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.3.3","jscs":"~1.8.1","jshint":"~2.5.10","mocha":"~2.0.1","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.15"},"gitHead":"3e61627df05e3a97a7eec5fbc5576d1f4c0c5f68","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.22.0","_shasum":"917e3fa68235d68f9bbf89386dd2479efb6f6efe","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"917e3fa68235d68f9bbf89386dd2479efb6f6efe","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.22.0.tgz","integrity":"sha512-qtnEcFZAGGDLkvYr6fclPjXJhYYARj0DgZQCZihK6iG9lL8TO0rV6mAQdh7SoCTd9NLy7t9/6j5U//2uGZYwmQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCUqSXst4UC+I3M4PXF4JKhA7aItN1Z284ZL2yVQJZ9zwIgQfjiKBIVgxf7tzXQezQZakqCcTBd07VffOvYx8eEQ1g="}]},"directories":{}},"0.20.3":{"name":"es6-shim","version":"0.20.3","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run test-shim && npm run test-sham","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"jshint es6-shim.js test/*.js test/*/*.js && jscs es6-shim.js test/*.js test/*/*.js","lint-sham":"jshint es6-sham.js test-sham/*.js && jscs es6-sham.js test-sham/*.js","test-shim":"npm run lint-shim && mocha test/*.js test/*/*.js","test-sham":"npm run lint-sham && mocha test-sham/*.js","test-native":"jshint es6-shim.js && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.9.2","es5-shim":"~4.0.3","grunt":"~0.4.5","grunt-contrib-connect":"~0.9.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.3.2","jscs":"~1.7.3","jshint":"~2.5.10","mocha":"~2.0.1","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.15"},"gitHead":"8fc65d25b364d6f1a55f0fa688fd986d5c520fd4","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.20.3","_shasum":"3261e940237eb8137fe112c390da4cb9e61cb924","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"3261e940237eb8137fe112c390da4cb9e61cb924","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.20.3.tgz","integrity":"sha512-PSBbo34zUcPysQCBv/40w4n9DZuofUjhk23t9c9yxoKrd7sLBFCPnx31LKhv3YVy+F+eSUM0vSs1wv5No/E77Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDNKm6Z+AuGo6JWEh+ZcmF+iYD2hgAN3/gpnYQO7ecvnAIgJYlSNIldym85r5iw8h6DYrJCUAXHcOrlrEdcNGiCrnQ="}]},"directories":{}},"0.22.1":{"name":"es6-shim","version":"0.22.1","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.10.0","es5-shim":"~4.0.5","grunt":"~0.4.5","grunt-contrib-connect":"~0.9.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.3.3","jscs":"~1.8.1","jshint":"~2.5.10","mocha":"~2.0.1","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.15"},"gitHead":"2b1303b181ff2f7f30b6f6726b418dc8dc8dce6d","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.22.1","_shasum":"f038630661f5991ee94e79d7a56f7ad51a8458ab","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"f038630661f5991ee94e79d7a56f7ad51a8458ab","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.22.1.tgz","integrity":"sha512-Z/OYbCTuFwZkno5pPKHvOTv5qcFu+Qa4owWyCA8ttFvUyy/DOfikr2wDAh2PKLORwRc+p9UPcVkzMVeJPLWhTA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH8GDTN0vhOGPWIPYuTFo8gBOz4vAuTDU622gLt5noxlAiEAxRzEfjKLIhfMeZPOFTZ1RO3rD04nMRpfxotEpMYMI/g="}]},"directories":{}},"0.20.4":{"name":"es6-shim","version":"0.20.4","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run test-shim && npm run test-sham","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"jshint es6-shim.js test/*.js test/*/*.js && jscs es6-shim.js test/*.js test/*/*.js","lint-sham":"jshint es6-sham.js test-sham/*.js && jscs es6-sham.js test-sham/*.js","test-shim":"npm run lint-shim && mocha test/*.js test/*/*.js","test-sham":"npm run lint-sham && mocha test-sham/*.js","test-native":"jshint es6-shim.js && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.9.2","es5-shim":"~4.0.3","grunt":"~0.4.5","grunt-contrib-connect":"~0.9.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.3.2","jscs":"~1.7.3","jshint":"~2.5.10","mocha":"~2.0.1","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.15"},"gitHead":"beee6a97d5b8526de62dbe27e3190747121854f6","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.20.4","_shasum":"dc4e05dd4f709939e3bd1d6d078a733016d4338c","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"dc4e05dd4f709939e3bd1d6d078a733016d4338c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.20.4.tgz","integrity":"sha512-wMkdTvw8STmg9ZSE9ZIJBz0SnGM08jrbPyUEbNrwBZiWk8fVEZ+TYHQtg/L34VcnkVocmSKu5fXPzEeJWBZMDQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGQwrBlpqaX5WN5XVDZNsdDr4KSAy2MejpZNnIjBYIE7AiBkNYz7ghdq9syQ/p5JoF3hlgkRog/TjAFoX+0GqjU+Xg=="}]},"directories":{}},"0.22.2":{"name":"es6-shim","version":"0.22.2","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.10.0","es5-shim":"~4.0.5","grunt":"~0.4.5","grunt-contrib-connect":"~0.9.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.4.1","jscs":"~1.9.0","jshint":"~2.5.11","mocha":"~2.1.0","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.16"},"gitHead":"e949caa49483878c966360408d12b9b90d1cf681","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.22.2","_shasum":"4afe7c54bb92b178e5d464dd5d9c31c5742d7521","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"4afe7c54bb92b178e5d464dd5d9c31c5742d7521","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.22.2.tgz","integrity":"sha512-gZIMpr6Xj8t2Ike+LIKidyB8kqAiZjRBToOMsfdgijevJqZWeDyqTzFX9fWrknCASmY6d5OeF1eAkjysCLKr7g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHc6QnCdZORkzscNCaz1Rnp40iXD9QgUSOfpWST5k/IbAiEA7CDLMoyiuGcO0gdtxs75jF31Px9Oskvr/V/GQ1PiYzI="}]},"directories":{}},"0.24.0":{"name":"es6-shim","version":"0.24.0","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.10.0","es5-shim":"~4.0.5","grunt":"~0.4.5","grunt-contrib-connect":"~0.9.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.5.0","jscs":"~1.10.0","jshint":"~2.6.0","mocha":"~2.1.0","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.16"},"gitHead":"4c95e8c6b8084e58d9863ad71299935a5f6093c7","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.24.0","_shasum":"71389fa4333cdfc790e12fbb6e561d6108be1e05","_from":".","_npmVersion":"2.4.1","_nodeVersion":"1.1.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"71389fa4333cdfc790e12fbb6e561d6108be1e05","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.24.0.tgz","integrity":"sha512-VHecnceFR3ly7P6f9EX+0bAedzRBzKcGAYTRO4KmZrzdLt78qTMstUBjRxFNtbnxwCkWBLGyzUPBeTuzfMkbAg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIALMI53NE5ey4n9NkQ7JCJZ2Drmr86xAiGsla7W/oCCyAiBYmEmKt4HFux2FElT4wBPC2pY+izPrglocSn3RH08Zig=="}]},"directories":{}},"0.2.0":{"author":{"name":"Paul Miller","email":"paulmillr@me.com","url":"http://paulmillr.com/"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","version":"0.2.0","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"make test"},"engines":{"node":"~0.6.5"},"dependencies":{},"devDependencies":{"mocha":"0.7.1","expect.js":"0.1.1"},"_npmUser":{"name":"paulmillr","email":"paulmillr@me.com"},"_id":"es6-shim@0.2.0","_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.6","_defaultsLoaded":true,"dist":{"shasum":"04610854d7cdf4baf455f75772ff2a0e6c6080b5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.2.0.tgz","integrity":"sha512-3jApIMMimmcUwxM/qIw2R2rDjooyGbFe5nCb3YLbC7O2/RbDzBRy7kfZQ6qoy5w4s3lC++/bUciPsbGqPaILUw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCpFjq41KpT5XAwrGJjPiwPjmS5KuEJyNRTHkdg1MfTGwIhAKxCcr4ZC3I/EBFptmZIIbW87p/BSTT2BymIyi6zXQze"}]},"maintainers":[{"name":"paulmillr","email":"paulmillr@me.com"}],"directories":{},"deprecated":"Please update to the latest es6-shim for the latest draft spec updates"},"0.26.0":{"name":"es6-shim","version":"0.26.0","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^2.1.0","es5-shim":"^4.1.0","grunt":"^0.4.5","grunt-contrib-connect":"^0.9.0","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.0","jscs":"^1.11.3","jshint":"^2.6.0","mocha":"^2.1.0","promises-aplus-tests":"^2.1.0","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.16"},"gitHead":"530f456834827c9efcef6b5131ef601e31baeaca","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.26.0","_shasum":"fece7242f96e0c5586d613568eb301bd5e5bf4b3","_from":".","_npmVersion":"2.5.1","_nodeVersion":"1.3.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"fece7242f96e0c5586d613568eb301bd5e5bf4b3","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.26.0.tgz","integrity":"sha512-4pxZqZNjki9yo2pMAp9V+FuanfaBKOfLAoeNIJKDDBFPC21e9K6SRmNgW8+s0FrkGSUXUmDODT1yfDqwuXMe/w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDRHWNbst6IdRTi2ciMW2NUNs6X5mTMofbjWqBrrl2f/AIhAJS4FnzFrrYjS0pI/Izs8rSWnDBoNdq+5sqGONimhUAl"}]},"directories":{}},"0.2.1":{"author":{"name":"Paul Miller","url":"http://paulmillr.com/"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","version":"0.2.1","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"make test"},"engines":{"node":"~0.6.5"},"dependencies":{},"devDependencies":{"mocha":"0.7.1","expect.js":"0.1.1"},"_npmUser":{"name":"paulmillr","email":"paulmillr@me.com"},"_id":"es6-shim@0.2.1","_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.6","_defaultsLoaded":true,"dist":{"shasum":"e05bed927bf3ee54095acbbe4a32a8b1b66b103d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.2.1.tgz","integrity":"sha512-3FzAgi2Rq4YI+9Guv52GugZpfyF6D0agNI/ADL/J/Cx4aiAwLDV4nmpt3GEnxIBvsMFRtvH1OtMmwh5hCQkV6w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD3sAB4XWBFR6ero+irNttOWH3gftwbc/xFJJk1YgYCCgIgUnKUbcLTlHwopjrbKe8pthG0yCkJuRrXp0ScxazUv68="}]},"maintainers":[{"name":"paulmillr","email":"paulmillr@me.com"}],"directories":{},"deprecated":"Please update to the latest es6-shim for the latest draft spec updates"},"0.26.1":{"name":"es6-shim","version":"0.26.1","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^2.1.0","es5-shim":"^4.1.0","grunt":"^0.4.5","grunt-contrib-connect":"^0.9.0","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.0","jscs":"^1.11.3","jshint":"^2.6.0","mocha":"^2.1.0","promises-aplus-tests":"^2.1.0","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.16"},"gitHead":"25f2e3e65c7b8803b20ce3c9404606cf9bcd78ae","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.26.1","_shasum":"d6c3ced857e0f0014cb3f1c1c0ca05718244e42c","_from":".","_npmVersion":"2.5.1","_nodeVersion":"1.3.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"d6c3ced857e0f0014cb3f1c1c0ca05718244e42c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.26.1.tgz","integrity":"sha512-ax0f/C6OTvVTnI9jOW1hj4L+z8B/P8u9JsdBR8NE+/j9XLTeUJxmsY29Afw3HchRtzamY94mEk3mgaXrvWBBIw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHmTchj7pJ6EdF7JsLYYcWgg8nkSxheqZ5DXqo7oupPgAiAyfJA7F+FAN0zRajUN54giPURocqzxTheP39OgLqcUBQ=="}]},"directories":{}},"0.28.1":{"name":"es6-shim","version":"0.28.1","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^2.2.0","es5-shim":"^4.1.1","grunt":"^0.4.5","grunt-contrib-connect":"^0.10.1","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.0","jscs":"^1.11.3","jshint":"^2.6.3","mocha":"^2.2.4","promises-aplus-tests":"^2.1.0","promises-es6-tests":"^0.5.0","uglify-js":"=2.4.17"},"gitHead":"c80f6037540026de9b8a0495310e2d37310942ee","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.28.1","_shasum":"f59d122a42b810c085fa6b0340e365578a5739ea","_from":".","_npmVersion":"2.7.5","_nodeVersion":"1.6.4","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"f59d122a42b810c085fa6b0340e365578a5739ea","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.28.1.tgz","integrity":"sha512-tS2QF0UWrwUhpVNMmJ9s3DJ3Gi4EfpPqY+n6eUi1Uw1vPQCQhMOvtExa63vAQXKC1mZVBhAKjB4Cv7B6lL0GOw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQClcQih0hieI8CYq+6p+4gVh34RFDlW6Z5aMgTanRJaOAIhAMRoszOhF3BvXdqDgy9AEaB4NiEvMyj08BxxA6ZPn+dI"}]},"directories":{}},"0.31.0":{"name":"es6-shim","version":"0.31.0","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^2.3.0","es5-shim":"^4.1.1","grunt":"^0.4.5","grunt-contrib-connect":"^0.10.1","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","promises-aplus-tests":"^2.1.0","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.20"},"gitHead":"dbbbe60d5cef7cb64f179c1c6fc483d3a1e26c5f","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.31.0","_shasum":"5849e467ea0ca6fdf04ff442f069678b8bfe1c89","_from":".","_npmVersion":"2.8.3","_nodeVersion":"1.8.1","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"5849e467ea0ca6fdf04ff442f069678b8bfe1c89","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.31.0.tgz","integrity":"sha512-D9vgS2nt5SitgWg2jbmEVka/WpZoBy0ys64XrP4SR3w7aTcGag25Sb5L/Nc58f4mYEvvbTP6/EeIXyJ+a1ryXw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDCm4dxdvKWnwQmMCh9ydjW8q5NiBtjZSaODZY8oKfCQAIgQjUDaL7YFLmKtkwVkhDDWT6QyeKmN+v2uhySCqH4xJ0="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.31.1":{"name":"es6-shim","version":"0.31.1","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^2.3.0","es5-shim":"^4.1.1","grunt":"^0.4.5","grunt-contrib-connect":"^0.10.1","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^1.13.1","jshint":"^2.7.0","mocha":"^2.2.4","promises-aplus-tests":"^2.1.0","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.21"},"gitHead":"9b5c93b6ebfe815f48881e391c6f9302839f75fc","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.31.1","_shasum":"f002b4cbc5510c2a72b9709512dcccadcceee5dd","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"f002b4cbc5510c2a72b9709512dcccadcceee5dd","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.31.1.tgz","integrity":"sha512-bb7dhXJS7LnQVcPy3BHPdGBTbA3c+vHQa2FCKQ+tewNgnksgamhJk9sJQ3B962vplwbZGlZUBDRppiWY+qAy3Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDNNjydudlYL8+iJvq0Sq09oRrbKZS5rTu1+jzFCKuctwIhAJzUgjxD/ClQl5OjxPe2AAdpg1DAEACTNBMmUhen9nE+"}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.10.0":{"author":{"name":"Paul Miller","url":"http://paulmillr.com"},"name":"es6-shim","version":"0.10.0","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"jshint es6-shim.js && mocha test/*.js test/*/*.js"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"mocha":"~1.17.1","chai":"~1.9.0","es5-shim":"~2.3.0","jshint":"~2.4.3","promises-aplus-tests":"~2.0.3"},"bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.10.0","dist":{"shasum":"cd13dde63937590627f58ad96b4b84584b2e758e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.10.0.tgz","integrity":"sha512-8ILQSYLo7F7hOxrTM0Psgii6aIeGwASD2WM5CjvddgUAK5lTQx07R7p3Wl6X0SvGsPD0xgVgI8Xo9A/pYhvhPQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDnxWfRC0Vhgy0pf0JZw10NAEz9Tz2r0G/gSDMbHkz+uQIhAMCg2Vjko4uoI+tfA9zFM8Sdi37kAJlvUDkLAXKQwooo"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.18.0":{"author":{"name":"Paul Miller","url":"http://paulmillr.com"},"name":"es6-shim","version":"0.18.0","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run test-shim && npm run test-sham","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"jshint es6-shim.js","lint-sham":"jshint es6-sham.js","test-shim":"npm run lint-shim && mocha test/*.js test/*/*.js","test-sham":"npm run lint-sham && mocha test-sham/*.js","test-native":"jshint es6-shim.js && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.9.1","es5-shim":"~4.0.3","grunt":"~0.4.5","grunt-contrib-connect":"~0.1.2","grunt-contrib-watch":"~0.2.0","grunt-saucelabs":"~8.3.1","jshint":"~2.5.5","mocha":"~1.21.4","promises-aplus-tests":"~2.0.5","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.15"},"gitHead":"0b6d1dda46c13dfc9d1240a4f5e1b31ed78c8c0b","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.18.0","_shasum":"7d89c22a1ecee43adda8ed7b4bd8dfb553893701","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"7d89c22a1ecee43adda8ed7b4bd8dfb553893701","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.18.0.tgz","integrity":"sha512-RZUkpwIzZPtkQo9tKQ0vvbKevVYWcysDva4enYIjpmuByeBUE+Y+Iu/gegwPGW7bII4t1svIo+ho7EkVLGw1pQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDXSlJI95vlVvyR/xM/k1iU+mXIE0B/1CXgEseJ2nNnKAiEAkofzPkYrByFxYOm4hkU5nDrr3QiQNop8iJ/1YNjjpEg="}]},"directories":{}},"0.33.8":{"name":"es6-shim","version":"0.33.8","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && evalmd *.md && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.4.0","es5-shim":"^4.1.15","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^2.3.5","jshint":"^2.8.0","mocha":"^2.3.3","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.5.0","evalmd":"^0.0.16"},"gitHead":"bdc0510b2db1366713f084c1d2d2fde4b1500f0e","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.33.8","_shasum":"e8ad8069f0740d5b9ace4e76550250afa5d34f11","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"e8ad8069f0740d5b9ace4e76550250afa5d34f11","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.33.8.tgz","integrity":"sha512-tESIKbIjyuQ51vlh8UhGJtRktJ/AtIyf+8Uoqb1wb874+ZGSpcukuY1heh84glOQ3yYwGE/jLVK3vryGtVnI8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICWm2ilDsUFoFWleVJRwLLAks4iD7kYJ3LJpsNleZ1fRAiBgp2Rcdo1YjAwGHtSBE3fKR8lrW4ZFuqvC4+Uo4hY92w=="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.33.11":{"name":"es6-shim","version":"0.33.11","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && evalmd *.md && npm run tests-only","tests-only":"npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim && npm run eslint-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham && npm run eslint-sham","eslint":"npm run eslint-shim && npm run eslint-sham","eslint-shim":"eslint es6-shim.js test/*.js test/*/*.js","eslint-sham":"eslint es6-sham.js test-sham/*.js","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.4.1","es5-shim":"^4.3.0","eslint":"^1.9.0","@ljharb/eslint-config":"^1.6.0","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^2.5.1","jshint":"^2.8.0","mocha":"^2.3.3","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.5.0","evalmd":"^0.0.16"},"gitHead":"f97be69cf77ed561b4829f9921d5786abece1463","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.33.11","_shasum":"0d2c5b4a9f14380e6320d332c1119385357c1cd3","_from":".","_npmVersion":"3.3.10","_nodeVersion":"5.0.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"0d2c5b4a9f14380e6320d332c1119385357c1cd3","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.33.11.tgz","integrity":"sha512-bYtCOR2JDJcvcI8YuAQEuqj5Fy+Fx0TbaDu/dDVPx6SgiYwppeGI5//DHa6OiqptLedAAe0tbSY6lWzkCyoGfg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICAe44jXCzcYpTnBfKWPeyOeVvTAc/HKnJo6Jty9yxYxAiAMSYNuVJAdkQcV9vJMqlJymTYUH1KeTuQPV0e17van5A=="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.35.6":{"name":"es6-shim","version":"0.35.6","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"prepublish":"safe-publish-latest && (not-in-publish || npm run minify)","pretest":"npm run lint && evalmd *.md","test":"npm run tests-only","posttest":"aud --production","tests-only":"npm run test:shim && npm run test:sham","test:shim":"mocha test/*.js test/*/*.js","test:sham":"mocha test-sham/*.js","test:native":"NO_ES6_SHIM=1 npm run tests-only","lint":"npm run lint:shim && npm run lint:sham","lint:shim":"eslint es6-shim.js test/*.js test/*/*.js","lint:sham":"eslint es6-sham.js test-sham/*.js","minify":"npm run minify:shim && npm run minify:sham","minify:shim":"uglifyjs es6-shim.js --support-ie8 --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify:sham":"uglifyjs es6-sham.js --support-ie8 --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"@ljharb/eslint-config":"^17.2.0","aud":"^1.1.2","chai":"^3.5.0","es5-shim":"^4.5.14","eslint":"^7.11.0","evalmd":"0.0.19","grunt":"^0.4.5","grunt-contrib-connect":"^1.0.2","grunt-contrib-watch":"^1.1.0","grunt-saucelabs":"^8.6.3","in-publish":"^2.0.1","mocha":"^3.5.3","promises-aplus-tests":"^2.1.2","promises-es6-tests":"^0.5.0","safe-publish-latest":"^1.1.4","uglify-js":"2.7.3"},"gitHead":"d4be3e6446b88208f87f27e48cb7e04aa2a70cdb","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.35.6","_nodeVersion":"14.13.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-EmTr31wppcaIAgblChZiuN/l9Y7DPyw8Xtbg7fIVngn6zMW+IEBJDJngeKC3x6wr0V/vcA2wqeFnaw1bFJbDdA==","shasum":"d10578301a83af2de58b9eadb7c2c9945f7388a0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.35.6.tgz","fileCount":50,"unpackedSize":591112,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfh/EeCRA9TVsSAnZWagAAVUQQAIjGIgYsR17M+HkbMZ4d\nSBrAZAkFKKYVX9HVlAneOJqj3Q/cn6T1u9wE+DSgzSKMUzowbWn5TggJ0HYS\nqBeDmnG8xl7nmZNj3Ufk96wLJObmdDJnf7GK8tjmpxlQ8e6g3mBWaVsARpk4\n6N8XhMpCpJOtzt/GXR++zHJWA0uwlPiZvYsTsm1ukX4REgdfruwB8LRxa83N\nJbs27uc8lQzAcpRP//b15zuKuvB8uOZfWVx6WfQNNICMQHMNl9WdgAINPYJK\ntI6r8sjQy9DReUUGxPE7sB7eJHWaUGO1SbqiManCBkVKCNBZ1OHFvdcieeYR\nu916oLvbfedQLzzSwar46wfVzQ1BAhAgkiOYhIXAkdg5f7h2w80GbTHzuvoK\n2hKNlC8XOuiSZVC/RDME+glTn9JazNkJPiEdbdjqRzvmO5dLrBnAJ80DP70Q\n0Mh3Jh2xDtMMNCBJhLU6yVy6704d2qw4VgZQ8lPEFhiSgah1ii2VEM5odHMH\nMIUvQyBclug/YA5DjoNs8rXQn+/9bFRs1TFPqwLanFQUZZRwJ7OnZR/sw/k3\nX03EOAaNUnEb2vw4Q9U3soQ6xvXZ5cTB/PRfCnYsdJTwpduoRramLtfSswY2\nhsRyS2l6K0/pKgLFLm+TngbuiEDfho7+WSsXRpsKme/xi7Qm9iO1wN+4oqMP\nkRyl\r\n=qMbs\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGkwkEFM3wF+FdfpPh4BPn7ppOthnTjZ9Eis31ysz4R6AiEA079n0uSn+kCVAj8+BGXOYeGzqaBN7XN4qd5KMrdLKSE="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/es6-shim_0.35.6_1602744605446_0.7125044890988514"},"_hasShrinkwrap":false},"0.33.9":{"name":"es6-shim","version":"0.33.9","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && evalmd *.md && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.4.0","es5-shim":"^4.1.15","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^2.3.5","jshint":"^2.8.0","mocha":"^2.3.3","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.5.0","evalmd":"^0.0.16"},"gitHead":"a4bfdaf7e837f4f0cb8982ffed3a8e887e7b9607","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.33.9","_shasum":"6561e76da3f58583cf67d2cec11f80565516e444","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"6561e76da3f58583cf67d2cec11f80565516e444","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.33.9.tgz","integrity":"sha512-T41xnaYsoKlY21Go+ZH4TNxoj8N5kGNh26F70ekD2fr1NqKoznLaMX1FsekQpFneNoyV9bmJcS6gHLoY1ePLeQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICuFg6wrCuX5djHKFK7RiKWR9BnsXg5hoEk/ew0czlyEAiAi0+U6RQak7B6ocj67HmqQNbspTGvhEMdlWSmhnen2eg=="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.33.12":{"name":"es6-shim","version":"0.33.12","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && evalmd *.md && npm run tests-only","tests-only":"npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim && npm run eslint-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham && npm run eslint-sham","eslint":"npm run eslint-shim && npm run eslint-sham","eslint-shim":"eslint es6-shim.js test/*.js test/*/*.js","eslint-sham":"eslint es6-sham.js test-sham/*.js","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.4.1","es5-shim":"^4.3.1","eslint":"^1.9.0","@ljharb/eslint-config":"^1.6.0","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^2.5.1","jshint":"^2.8.0","mocha":"^2.3.3","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.5.0","evalmd":"^0.0.16"},"gitHead":"2fc76e7c759cbc1643722bc21132e246f935d4e1","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.33.12","_shasum":"b4d3fe6b73c3e9c85530f2ed6a1e753e0b9c8bb3","_from":".","_npmVersion":"3.3.10","_nodeVersion":"5.0.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"b4d3fe6b73c3e9c85530f2ed6a1e753e0b9c8bb3","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.33.12.tgz","integrity":"sha512-9KHSw2ZqBfUzmXKA3mp8DWT+/LixZOiJRdZT5KNA4JvBAA8mB89VzGeTYL70r+8IEYBCsVb9JFkrHKz03fynrg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH2VsjTiwo3+6Dyp7YAboPFvsiadubXXi5t3caHiAw+WAiBJSPcFdFm21F6k5VeJfJ3OOxVKXMU5h9T0sD7UQi5Erg=="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.35.7":{"name":"es6-shim","version":"0.35.7","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"prepublishOnly":"safe-publish-latest && npm run minify","prepublih":"not-in-publish || npm run prepublishOnly","pretest":"npm run lint && evalmd *.md","test":"NODE_OPTIONS='--unhandled-rejections=none' npm run tests-only","posttest":"aud --production","tests-only":"nyc mocha 'test/**/*.js' 'test-sham/*.js'","test:shim":"nyc mocha 'test/**/*.js'","test:sham":"nyc mocha 'test-sham/*.js'","test:native":"NO_ES6_SHIM=1 npm run tests-only","lint":"npm run lint:shim && npm run lint:sham","lint:shim":"eslint es6-shim.js test/*.js test/*/*.js","lint:sham":"eslint es6-sham.js test-sham/*.js","minify":"npm run minify:shim && npm run minify:sham","minify:shim":"uglifyjs es6-shim.js --support-ie8 --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify:sham":"uglifyjs es6-sham.js --support-ie8 --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"devDependencies":{"@ljharb/eslint-config":"^21.0.0","aud":"^2.0.2","chai":"^3.5.0","es5-shim":"^4.6.7","eslint":"=8.8.0","evalmd":"0.0.19","grunt":"^0.4.5","grunt-contrib-connect":"^1.0.2","grunt-contrib-watch":"^1.1.0","grunt-saucelabs":"^8.6.3","in-publish":"^2.0.1","mocha":"^3.5.3","nyc":"^10.3.2","promises-aplus-tests":"^2.1.2","promises-es6-tests":"^0.5.0","safe-publish-latest":"^2.0.0","tape":"^5.6.1","uglify-js":"2.7.3"},"gitHead":"98a175f41849f9894a21794a3e2767cdfc421a19","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.35.7","_nodeVersion":"18.12.1","_npmVersion":"8.19.2","dist":{"integrity":"sha512-baZkUfTDSx7X69+NA8imbvGrsPfqH0MX7ADdIDjqwsI8lkTgLIiD2QWrUCSGsUQ0YMnSCA/4pNgSyXdnLHWf3A==","shasum":"db00f1cbb7d4de70b50dcafa45b157e9ba28f5d2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.35.7.tgz","fileCount":65,"unpackedSize":2469769,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDW8P0Xmw0ACoVbL7i2mq5Rq0wif8Rnvsn5EP4h1klNQAIhAMk0MFTVGodLOLT7UuP6Ep7YgzhxIm6OPpnQCfeLfvdR"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjp4rTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrNFw/9Hbhhu3A+YjxoY34CTeRviiszGd+IC8QAbDK64xM6PWm3FetE\r\nf9Px32e2IZceL4OPDxf3YAaY/4pMLH2iFyhr7bXSlya7EOkdPcXWjM+c361j\r\nSgugSo0d6e7COzZbrEJy0loJ8I7NLi/BDfe/sAgGUtLR5pgA0x0Lh/76GrZg\r\nNkcx6pHlGSMtTeeU/LOumSEckT21OvKVgAomVW4KiZkewYwfbhmPYPnYxpVe\r\nSI1b4ktgG1YeiV3czo/wMuMUsHqkWl4pHQE/LAwgl2WHwHGx2knbBICSNO81\r\n/DnPKpDdc76ywPFt0Fynr9y4Yi/vPxb0bQg8XvPPbFgEB0P7CnTuoxRnRE14\r\nyAnmRYu4yvLY93lZl/O1hKuizO9pQBR5IvKxNBDUWBfrxTzWe07hl62hYZ1j\r\nRfyUz094nW8RdU8SzREPLZJzW1J3qhQtmR1ICN8bVPHIveWO+dCA1ngOCPxa\r\nZI0TBn11lXAl5z3fMcAVX6xoO6YffEd/9wGWX2rMyX17PhFT4PfeZqMg2GkA\r\nA/TkAq9gjfkNy6KmlhqRXsSyCsKQmTkanMjYPUGrVkarLWxD/7nselJNzkRc\r\nDuZtrx74i4u+1YrhdewSVh2eUhb4IlnQiEUrTfk8bCPAKanMYkzjR50fJ1JW\r\no0p9FvGsx2ja7uWnYV5eFJeYjxlC4aydATA=\r\n=fr5t\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/es6-shim_0.35.7_1671924434909_0.0067882162799193235"},"_hasShrinkwrap":false},"0.16.0":{"author":{"name":"Paul Miller","url":"http://paulmillr.com"},"name":"es6-shim","version":"0.16.0","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"lint":"jshint es6-shim.js","test":"npm run lint && mocha test/*.js test/*/*.js","test-native":"jshint es6-shim.js && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","minify":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.9.1","es5-shim":"~4.0.1","jshint":"~2.5.0","mocha":"~1.21.0","promises-aplus-tests":"~2.0.4","promises-es6-tests":"~0.3.2","uglify-js":"~2.4.12"},"gitHead":"cf842ca09f5fa4e8333e572e3c2fc55c085fe8d8","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.16.0","_shasum":"07e122909722d0fce581b17f64d1505c98094454","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"07e122909722d0fce581b17f64d1505c98094454","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.16.0.tgz","integrity":"sha512-z86F34kcDw6NPF6lWKOt48cUG4RDmCVFgvmM5Ry2SVJpIBsUrxcFEpTb3vG8Avar3qblTIAw3b1OEw8YYatTSw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCI/Czy8Nd0XeWIcD9AJkMbjZj4Odj5F7C2vAmYajRGsgIhAITOQnr6Iz/U9KkyJqJHRGmDigCHcFVV2gm6sCgTUSD0"}]},"directories":{}},"0.33.13":{"name":"es6-shim","version":"0.33.13","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && evalmd *.md && npm run tests-only","tests-only":"npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim && npm run eslint-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham && npm run eslint-sham","eslint":"npm run eslint-shim && npm run eslint-sham","eslint-shim":"eslint es6-shim.js test/*.js test/*/*.js","eslint-sham":"eslint es6-sham.js test-sham/*.js","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.4.1","es5-shim":"^4.3.1","eslint":"^1.9.0","@ljharb/eslint-config":"^1.6.0","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^2.5.1","jshint":"^2.8.0","mocha":"^2.3.3","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.6.0","evalmd":"^0.0.16"},"gitHead":"f2c52ec9d36a8226c78e81eca230d7945ff16877","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.33.13","_shasum":"894fb83d2c2e9378c8ec23659f2b62b28f994225","_from":".","_npmVersion":"3.3.10","_nodeVersion":"5.0.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"894fb83d2c2e9378c8ec23659f2b62b28f994225","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.33.13.tgz","integrity":"sha512-jDzXrfRDOXEGTma2ZiUOLaD++UHgsDeZMPSOpX5xnhECy4HnUu2osEFtnF1oauYZ30uyy3GBLNlA45aJfz6xNg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB3hyHVnP0t3PUnIwsDkbQQRU9twCdwV4P08ZEz8sFL7AiEA/F+bgGLDLsDnUjQgU5tA9v23GDSbJTYytYYv4J6Y57k="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.35.8":{"name":"es6-shim","version":"0.35.8","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"prepublishOnly":"safe-publish-latest && npm run minify","prepublih":"not-in-publish || npm run prepublishOnly","pretest":"npm run lint && evalmd *.md","test":"NODE_OPTIONS='--unhandled-rejections=none' npm run tests-only","posttest":"aud --production","tests-only":"nyc mocha 'test/**/*.js' 'test-sham/*.js'","test:shim":"nyc mocha 'test/**/*.js'","test:sham":"nyc mocha 'test-sham/*.js'","test:native":"NO_ES6_SHIM=1 npm run tests-only","lint":"npm run lint:shim && npm run lint:sham","lint:shim":"eslint es6-shim.js test/*.js test/*/*.js","lint:sham":"eslint es6-sham.js test-sham/*.js","minify":"npm run minify:shim && npm run minify:sham","minify:shim":"uglifyjs es6-shim.js --support-ie8 --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify:sham":"uglifyjs es6-sham.js --support-ie8 --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"devDependencies":{"@ljharb/eslint-config":"^21.0.1","aud":"^2.0.2","chai":"^3.5.0","es5-shim":"^4.6.7","eslint":"=8.8.0","evalmd":"^0.0.19","grunt":"^0.4.5","grunt-contrib-connect":"^1.0.2","grunt-contrib-watch":"^1.1.0","grunt-saucelabs":"^8.6.3","in-publish":"^2.0.1","mocha":"^3.5.3","nyc":"^10.3.2","promises-aplus-tests":"^2.1.2","promises-es6-tests":"^0.5.0","safe-publish-latest":"^2.0.0","tape":"^5.6.3","uglify-js":"2.7.3"},"gitHead":"f3d5fedaa29aa9eac38abec4cd0055c8e5e887f9","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.35.8","_nodeVersion":"18.15.0","_npmVersion":"9.5.0","dist":{"integrity":"sha512-Twf7I2v4/1tLoIXMT8HlqaBSS5H2wQTs2wx3MNYCI8K1R1/clXyCazrcVCPm/FuO9cyV8+leEaZOWD5C253NDg==","shasum":"89216f6fbf8bacba3f897c8c0e814d2a41c05fb7","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.35.8.tgz","fileCount":65,"unpackedSize":2470982,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC+1kOXEsveNapzWgC1CSft8y3MO0wDqetPKgsUBoWX5AIgL6BXqdk4zkRiyk9Pzi5N2ofWCtXYG9xodfma9t06SZM="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkHLCTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoSkQ/9GASiuiBB7PLZLunFHnfC1fsres2YesUzs8Pizk1HEJ/d+ZWy\r\nxI1+G6aqtTYzQ7vtJ18YtKg82jGiG7t6QrEQyKGaTUq9neYf058fePMuarOh\r\nQFtKTXX2NE59UB5mbnyw3tk9uO2Uz+tJQh3Lc+9QSVMXxcVwtosjKO0CqhtW\r\n7l7OkYVSgJt5JkjqWNB5RVVkXrarM7TeIbVnRbXFp4uLqvrNo7ZXwzSZJX21\r\nat3IgYPz1Q5++tWNhq78th8iEv8ZX1Ze/TFNzUPutKWOQqOYdmIUDs1mrsSx\r\n2cl8HIOCl6l/OBHZa6fWe9v7OsWzb9Sr46cKu7bEkQCNPyEkoXXkaXwBQ27P\r\nooB+Dqa3l1Cil8kJZTUZ3Oj7A2HBa9hCBNrUucHIzVTLXUvphGFitkHVcMnJ\r\nZRhrQ7aHKvkFTy+HG9kKzNnvYy3g3dLc6VmcStYK4+UvsO2TQfNalXSQZK1j\r\nkOqrdK5+DS7tUx6v5kjoOjpxDDQ+2Hk9JHuUWC69Z+dYaTTgrnVeOWqAKocD\r\nbnRWeIQ23BQFJKBTGDnlWbF7Tv/KMtrYf/myKsQm1e3TMoH3rnArQpehxFjM\r\nSmYMYZHEgQ/ZJTLHo19Lo30QvyFbXvYxeprbNpOkHne3rISBj4+psftaahw6\r\nPFB94elqX9QP//tk51knrbyV3nNiGoIK6vg=\r\n=FDm0\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/es6-shim_0.35.8_1679601811490_0.131973909191891"},"_hasShrinkwrap":false},"0.14.0":{"author":{"name":"Paul Miller","url":"http://paulmillr.com"},"name":"es6-shim","version":"0.14.0","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"jshint es6-shim.js && mocha test/*.js test/*/*.js","test-native":"jshint es6-shim.js && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","minify":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.9.1","es5-shim":"~4.0.0","jshint":"~2.5.0","mocha":"~1.20.0","promises-aplus-tests":"~2.0.4","promises-es6-tests":"~0.3.2","uglify-js":"~2.4.12"},"gitHead":"83ef994d7425f71c747930cc144cf523ae1054a3","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.14.0","_shasum":"5fefd5984b2be6144ece6314bcc16e13c7b32add","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"5fefd5984b2be6144ece6314bcc16e13c7b32add","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.14.0.tgz","integrity":"sha512-ID3URaXfE3R6vL9A67Xo5Qfsz/1fzBOkKieJKdJ3W25dRC3IW37D4O5u11U6ccKO5gnXPCTv/KnpUCp3qoDlJA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHjVD7nNqEy3DTfoBeqfv4FRYpB9Msx+ZvZHGa15+RVJAiEA2qsdXnuTNWjXxisVzTI3jtCKGWTlpVwXQWEcVNfeyOI="}]},"directories":{}},"0.12.0":{"author":{"name":"Paul Miller","url":"http://paulmillr.com"},"name":"es6-shim","version":"0.12.0","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"jshint es6-shim.js && mocha test/*.js test/*/*.js","minify":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"mocha":"~1.20.0","chai":"~1.9.1","es5-shim":"~3.4.0","jshint":"~2.5.0","promises-aplus-tests":"~2.0.4","uglify-js":"~2.4.12"},"bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.12.0","_shasum":"d2312f2a2b2297aeba6b836fd57b3f7973afe22a","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"d2312f2a2b2297aeba6b836fd57b3f7973afe22a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.12.0.tgz","integrity":"sha512-enK39klDA7e77iAr1s6f6ztSIVK5vYXPy6MwUQfarVB3BrcM5B5emhegy5Fi3oba0rytKRlyqsusfZqPCxOi8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCXoWkUI2bM6HKhxx+DOhqCVstsMT5R+YQidaI5lNY6RgIgfsPfadheTswxRVL4JDUZDdntUXDG+moiAyJtMHMXzPU="}]},"directories":{}},"0.10.1":{"author":{"name":"Paul Miller","url":"http://paulmillr.com"},"name":"es6-shim","version":"0.10.1","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"jshint es6-shim.js && mocha test/*.js test/*/*.js"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"mocha":"~1.17.1","chai":"~1.9.0","es5-shim":"~2.3.0","jshint":"~2.4.3","promises-aplus-tests":"~2.0.3"},"bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.10.1","dist":{"shasum":"39626ae0deacb5ca6bc6065cc003fdb09976f6b5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.10.1.tgz","integrity":"sha512-fpa+gRHFywqakbBgKPbuHskK2/Ni8nhd/utV+0Uwk56V9b673PuH7GRkkgIMTyWKhfw87Lf4ZZmuFZw8WyzU3A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCv+xas5aIsdIY65qEndAHgGfzl130J1+QtUhpxW0FmIQIhANemPhb0ZkogZLi9TogMKvZKAq3K+87EQsyN4A5GR0Sr"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.31.2":{"name":"es6-shim","version":"0.31.2","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^2.3.0","es5-shim":"^4.1.1","grunt":"^0.4.5","grunt-contrib-connect":"^0.10.1","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^1.13.1","jshint":"^2.7.0","mocha":"^2.2.4","promises-aplus-tests":"^2.1.0","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.21"},"gitHead":"c4ef3981849dfdf68357cdeda494d9de6422f737","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.31.2","_shasum":"fd566d3329568c5bf5d948438cf52c78c3509919","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"fd566d3329568c5bf5d948438cf52c78c3509919","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.31.2.tgz","integrity":"sha512-vm3O3dnMTNgNd1eiGcJvrbLuwIuMgB5EznV69ZCh9CqE1yqe561J8+CD8NrWUBQKLmWoWuq55TP1AiHSAC/bLg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCcAhHCvke1xQ4BrdVM5JNQpCSHNC+9HaVRhvdu6ttaOwIgNvNbHauGHH8SPsrhej24o1TrmOxHWDCA5Oa/KiXZKsA="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.33.0":{"name":"es6-shim","version":"0.33.0","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.2.0","es5-shim":"^4.1.10","grunt":"^0.4.5","grunt-contrib-connect":"^0.10.1","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^1.13.1","jshint":"^2.8.0","mocha":"^2.2.5","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.24"},"gitHead":"92ff7dcb1454851d1a3a32255c0abcf8e8345f6e","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.33.0","_shasum":"7b3979e08a910fec8613c0c07076ee4272150e86","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"7b3979e08a910fec8613c0c07076ee4272150e86","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.33.0.tgz","integrity":"sha512-ALd0QfNqoGzzP0JkhitDr6D1+1XSIJ9lWx8/Ai3Z2h9b7wdMbOCgYSY8bh1yH2udgNl2Fc4tkV4YhcJ1bgBfrg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDR1SgQZkQ/I6ktDtBdBfBWWQOwwz1iqUp8xz/P7xCJcAiEA7HZWVZhzQJ1LListMkkmFh9eWF39unT9cPZINmpEwmU="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.31.3":{"name":"es6-shim","version":"0.31.3","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^2.3.0","es5-shim":"^4.1.4","grunt":"^0.4.5","grunt-contrib-connect":"^0.10.1","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^1.13.1","jshint":"^2.8.0","mocha":"^2.2.5","promises-aplus-tests":"^2.1.0","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.23"},"gitHead":"092797a77ab6a6f6dae05e3a890889adfe98ee8e","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.31.3","_shasum":"dffc5ddbbb7f31bdddf0c3bda41d09c89a995dce","_from":".","_npmVersion":"2.11.0","_nodeVersion":"2.2.1","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"dffc5ddbbb7f31bdddf0c3bda41d09c89a995dce","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.31.3.tgz","integrity":"sha512-n/i7HRSmsnOFsSpFJgU5sEIE9Rl4Fm2+X8XeJjMLB1x0IGi/rkzlaCDrMgIAyZUq8O543ymqOTXnFyE6/ZPAqQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCNFGK5a4KWfTnCFdaW2wRCx8U18tz4j4rpOS9CrG+mjgIhAKiolP+O5Tnjk6QPlDo+mYT+x06arHFCVQn7R6Ek/X4G"}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.33.1":{"name":"es6-shim","version":"0.33.1","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.2.0","es5-shim":"^4.1.10","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^2.1.0","jshint":"^2.8.0","mocha":"^2.2.5","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.24"},"gitHead":"228dbc5b3412176ac24f4aa56597643a9b5ecc03","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.33.1","_shasum":"b637a785459b453bcef803ff507d90e00ebb2648","_from":".","_npmVersion":"2.13.3","_nodeVersion":"3.1.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"b637a785459b453bcef803ff507d90e00ebb2648","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.33.1.tgz","integrity":"sha512-WZBbeuB5P3P2jQ1bsgWheBLN49RQMjBkgHLaWEizrzEWz57OzKJWzS4Z3Z+oq2nTwIPTrceiskhuQgy+4vhw6A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF50Y44U1elBB/XF/c7eOhsBBDyX2VBUNNwLvZP1wtJLAiAUhk6h+Bdgp/c53RsTTDTJrUb08sYlrgVZLaEjQ3sXLw=="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.33.2":{"name":"es6-shim","version":"0.33.2","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.2.0","es5-shim":"^4.1.10","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^2.1.0","jshint":"^2.8.0","mocha":"^2.2.5","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.24"},"gitHead":"52d101de6edf1a76be00b18a90c379ed1903329e","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.33.2","_shasum":"84eee86144d390bd8d28febe181a60e9e86d3d2f","_from":".","_npmVersion":"2.13.3","_nodeVersion":"3.1.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"84eee86144d390bd8d28febe181a60e9e86d3d2f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.33.2.tgz","integrity":"sha512-v3g524Pd6VywrWv+8DbLKFzIriNa9Tz5sy1AcHvNhhj7iCwW3PSyPfRQOLjFkoL4BK1wmObhV9aQzEw1NlUpyw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFiytPxcfVjludFqfU2d5FgnkAqCHUhaEknQveh2UBVBAiEA06xTRd5jGM4A36QC1wwRynz0Gkz26ct0iQabX3kbJA8="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.35.0":{"name":"es6-shim","version":"0.35.0","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && evalmd *.md && npm run tests-only","tests-only":"npm run test:shim && npm run test:sham","test:shim":"mocha test/*.js test/*/*.js","test:sham":"mocha test-sham/*.js","test:native":"NO_ES6_SHIM=1 npm run tests-only","lint":"npm run lint:shim && npm run lint:sham","lint:shim":"npm run jshint:shim && npm run jscs:shim && npm run eslint:shim","lint:sham":"npm run jshint:sham && npm run jscs:sham && npm run eslint:sham","eslint":"npm run eslint:shim && npm run eslint:sham","eslint:shim":"eslint es6-shim.js test/*.js test/*/*.js","eslint:sham":"eslint es6-sham.js test-sham/*.js","jshint":"npm run jshint:shim && npm run jshint:sham","jshint:shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint:sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs:shim && npm run jscs:sham","jscs:shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs:sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify:shim && npm run minify:sham","minify:shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify:sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.5.0","es5-shim":"^4.5.2","eslint":"^1.10.3","@ljharb/eslint-config":"^1.6.1","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.2","jscs":"^2.9.0","jshint":"^2.9.1","mocha":"^2.4.5","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.6.1","evalmd":"^0.0.16"},"gitHead":"b9eda4eb91e38664a31c6d7aacf95f82a7930528","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.35.0","_shasum":"272d927950889eabe299927cdc9c0010b7bfc00a","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"272d927950889eabe299927cdc9c0010b7bfc00a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.35.0.tgz","integrity":"sha512-KFegjdIKBH04NmkHPMpWkEhO4zfTK5Rw5QWY3zksJcqzMdAz4tRMucz4qPXsW20TlzbRo4JFFAhLhDAgdhbdRQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDTUHBBuIhD2D1i2CtYHXiIaMCICmbzP22kGjA2wrOMjwIgOgEMqTotD9uLtsbUHdyhY7MylDy7XHE8VmcjOXIfK6A="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/es6-shim-0.35.0.tgz_1456810887545_0.9192371929530054"},"directories":{}},"0.33.3":{"name":"es6-shim","version":"0.33.3","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.2.0","es5-shim":"^4.1.11","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^2.1.1","jshint":"^2.8.0","mocha":"^2.3.0","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.24"},"gitHead":"616eee62ceed6f1e988abab4e49d6d682702be1b","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.33.3","_shasum":"702a759cb5ae028d7ede862cd3b5b34660968ec4","_from":".","_npmVersion":"2.14.1","_nodeVersion":"3.2.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"702a759cb5ae028d7ede862cd3b5b34660968ec4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.33.3.tgz","integrity":"sha512-8z9UB7byIAL4G7KILEA2s/9KZ90mucNCJXVjR+xckk2uB0ojYXygPltU7A9/WKfCux1DxM0wBvG6mtznibta5A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHwRR6TlKYkepKBo4XSnk5jSQwfdralKIhRQ2hyuT3WyAiAJxpMIEVPlWrcwfek48IuVl9DIZYEaI4yr4ZEXjbfn9A=="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.35.1":{"name":"es6-shim","version":"0.35.1","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"pretest":"npm run --silent lint","test":"evalmd *.md && npm run --silent tests-only","tests-only":"npm run --silent test:shim && npm run --silent test:sham","test:shim":"mocha test/*.js test/*/*.js","test:sham":"mocha test-sham/*.js","test:native":"NO_ES6_SHIM=1 npm run --silent tests-only","lint":"npm run --silent lint:shim && npm run --silent lint:sham","lint:shim":"npm run --silent jshint:shim && npm run --silent jscs:shim && npm run --silent eslint:shim","lint:sham":"npm run --silent jshint:sham && npm run --silent jscs:sham && npm run --silent eslint:sham","eslint":"npm run --silent eslint:shim && npm run --silent eslint:sham","eslint:shim":"eslint es6-shim.js test/*.js test/*/*.js","eslint:sham":"eslint es6-sham.js test-sham/*.js","jshint":"npm run --silent jshint:shim && npm run --silent jshint:sham","jshint:shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint:sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run --silent jscs:shim && npm run --silent jscs:sham","jscs:shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs:sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run --silent minify:shim && npm run --silent minify:sham","minify:shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify:sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run --silent sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.5.0","es5-shim":"^4.5.8","eslint":"^2.9.0","@ljharb/eslint-config":"^4.0.0","grunt":"^0.4.5","grunt-contrib-connect":"^1.0.2","grunt-contrib-watch":"^1.0.0","grunt-saucelabs":"^8.6.2","jscs":"^3.0.3","jshint":"^2.9.2","mocha":"^2.4.5","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.6.2","evalmd":"^0.0.17"},"gitHead":"3e46993a95b1867665166e0290e5cbaaf2ccb2f6","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.35.1","_shasum":"a23524009005b031ab4a352ac196dfdfd1144ab7","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.1.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"a23524009005b031ab4a352ac196dfdfd1144ab7","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.35.1.tgz","integrity":"sha512-W9mJHVZf8kj1yWM0Rk5TYc8sB8eFbDo3Yh97wDee6hLhFES5XPcqwSQdKay6lF6NV0Wmkqnqz5rIjRUziRB9QQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB56xTNykUQX8QRHN0g/y43vRj6lADRvEsDysxcc/7QPAiA2gudW1Z+cBWYFRZNwjxpYaiDNHnH/Mhr8UUmCs6ff9g=="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/es6-shim-0.35.1.tgz_1463041283862_0.4303069841116667"},"directories":{}},"0.33.4":{"name":"es6-shim","version":"0.33.4","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && evalmd *.md && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.3.0","es5-shim":"^4.1.13","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^2.1.1","jshint":"^2.8.0","mocha":"^2.3.3","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.24","evalmd":"^0.0.16"},"gitHead":"1d7510769fc5dfc94df39c6cbe44669964865b98","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.33.4","_shasum":"5be249b7f754633daecad50ee3705aca97efa467","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"5be249b7f754633daecad50ee3705aca97efa467","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.33.4.tgz","integrity":"sha512-Sm6qI3OQSXXgVJtqosnaMpxliDUtJiDlZsYJ5o2qqTikDk0cKop5ptwmU5ifIi68wBV2AwgpnbsPNUW+v857mA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCh1zBXkIvNIpilhR84NZwt2SyIZLu9PnaIpGtRAknAagIgQmCQOxKejhX2AcSB0IFAaRk4D+drv7kIXxDUetf/ndI="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.35.2":{"name":"es6-shim","version":"0.35.2","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"pretest":"npm run --silent lint && evalmd *.md","test":"npm run --silent tests-only","tests-only":"npm run --silent test:shim && npm run --silent test:sham","test:shim":"mocha test/*.js test/*/*.js","test:sham":"mocha test-sham/*.js","test:native":"NO_ES6_SHIM=1 npm run --silent tests-only","lint":"npm run --silent lint:shim && npm run --silent lint:sham","lint:shim":"npm run --silent jshint:shim && npm run --silent jscs:shim && npm run --silent eslint:shim","lint:sham":"npm run --silent jshint:sham && npm run --silent jscs:sham && npm run --silent eslint:sham","eslint":"npm run --silent eslint:shim && npm run --silent eslint:sham","eslint:shim":"eslint es6-shim.js test/*.js test/*/*.js","eslint:sham":"eslint es6-sham.js test-sham/*.js","jshint":"npm run --silent jshint:shim && npm run --silent jshint:sham","jshint:shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint:sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run --silent jscs:shim && npm run --silent jscs:sham","jscs:shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs:sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run --silent minify:shim && npm run --silent minify:sham","minify:shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify:sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run --silent sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.5.0","es5-shim":"^4.5.9","eslint":"^3.11.1","@ljharb/eslint-config":"^9.0.1","grunt":"^0.4.5","grunt-contrib-connect":"^1.0.2","grunt-contrib-watch":"^1.0.0","grunt-saucelabs":"^8.6.2","jscs":"^3.0.7","jshint":"^2.9.4","mocha":"^3.2.0","promises-aplus-tests":"^2.1.2","promises-es6-tests":"^0.5.0","uglify-js":"2.7.3","evalmd":"^0.0.17"},"gitHead":"b0b0119b3499726e743b1dfa361f0ef35e60584b","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.35.2","_shasum":"45c5b3eb2f792ed28f130d826239be50affb897f","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.2.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"45c5b3eb2f792ed28f130d826239be50affb897f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.35.2.tgz","integrity":"sha512-sGTeHPFXX//cUCPrYSvng53lnbTKcuSOM2rHfzeH1t/YR/IUg0qaK4s4Ildbtr41ZZhlYs0vpURXKPwfjlItdw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDrFSdU1Lkl5J/Z84srMl/DqAxyIIK1Zz0ytY+hR46L9AIhAKtZ6v0SCckDwTY/VkfMdqiI5B7zjOyz0gn5j6bdsKT2"}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/es6-shim-0.35.2.tgz_1480830018024_0.4566771355457604"},"directories":{}},"0.33.5":{"name":"es6-shim","version":"0.33.5","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && evalmd *.md && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.3.0","es5-shim":"^4.1.13","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^2.1.1","jshint":"^2.8.0","mocha":"^2.3.3","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.24","evalmd":"^0.0.16"},"gitHead":"e4a5aa63ff78070a4cbee5827370fc50b2cf6d10","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.33.5","_shasum":"56f7ff028c5069407b0c3d1da275039a70882087","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"56f7ff028c5069407b0c3d1da275039a70882087","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.33.5.tgz","integrity":"sha512-bkYTZbxj4RpPTld+q9rMD7GWA2KcSZ4M4sgF8Mt6fDXwnJGdj9ORvlem6N2CbunhTx/n6fxq4SZjflX616Gshw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCrysEm/8QC+b6UzkE2cerTSRlnhGXrSNts8EJRrZ3hoAIhAIbXl8Lape089aMgKhDTkWKRCzZtKDZGE3PjcX99K8JI"}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.35.3":{"name":"es6-shim","version":"0.35.3","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"pretest":"npm run --silent lint && evalmd *.md","test":"npm run --silent tests-only","tests-only":"npm run --silent test:shim && npm run --silent test:sham","test:shim":"mocha test/*.js test/*/*.js","test:sham":"mocha test-sham/*.js","test:native":"NO_ES6_SHIM=1 npm run --silent tests-only","lint":"npm run --silent lint:shim && npm run --silent lint:sham","lint:shim":"npm run --silent jshint:shim && npm run --silent jscs:shim && npm run --silent eslint:shim","lint:sham":"npm run --silent jshint:sham && npm run --silent jscs:sham && npm run --silent eslint:sham","eslint":"npm run --silent eslint:shim && npm run --silent eslint:sham","eslint:shim":"eslint es6-shim.js test/*.js test/*/*.js","eslint:sham":"eslint es6-sham.js test-sham/*.js","jshint":"npm run --silent jshint:shim && npm run --silent jshint:sham","jshint:shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint:sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run --silent jscs:shim && npm run --silent jscs:sham","jscs:shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs:sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run --silent minify:shim && npm run --silent minify:sham","minify:shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify:sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run --silent sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.5.0","es5-shim":"^4.5.9","eslint":"^3.14.0","@ljharb/eslint-config":"^10.0.0","grunt":"^0.4.5","grunt-contrib-connect":"^1.0.2","grunt-contrib-watch":"^1.0.0","grunt-saucelabs":"^8.6.3","jscs":"^3.0.7","jshint":"^2.9.4","mocha":"^3.2.0","promises-aplus-tests":"^2.1.2","promises-es6-tests":"^0.5.0","uglify-js":"2.7.3","evalmd":"^0.0.17"},"gitHead":"129819173958a0da2b487e219425baf0ca6d1a99","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.35.3","_shasum":"9bfb7363feffff87a6cdb6cd93e405ec3c4b6f26","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"9bfb7363feffff87a6cdb6cd93e405ec3c4b6f26","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.35.3.tgz","integrity":"sha512-Y9MwErrnyobuSJ4OGbVuGrESF4TNRHJUqubSRYtz7yXa+AZm8PG3AGhwKpDejUZzR4FLrcdVPD+yL7MLqHzvsw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFddC3qlqumuZ3VJczrJsWUXMC+EAzW18z4ggajKODxFAiEAsaKR/vleJS7tytwwrXim/50IzwS0DGtiPhLKsQ9t6jc="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/es6-shim-0.35.3.tgz_1485240587767_0.6348716060165316"},"directories":{}},"0.33.6":{"name":"es6-shim","version":"0.33.6","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && evalmd *.md && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.3.0","es5-shim":"^4.1.13","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^2.1.1","jshint":"^2.8.0","mocha":"^2.3.3","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.24","evalmd":"^0.0.16"},"gitHead":"746df9d8ee67cf8c2091e40551f6391f7f40b251","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.33.6","_shasum":"3bbbc47bc6540b3c7c84069fc9afb061eaae2fcb","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"3bbbc47bc6540b3c7c84069fc9afb061eaae2fcb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.33.6.tgz","integrity":"sha512-v/Zf0fCCDlTq9cJhJ+HremoR2PWT1ytK5hVzm56MXSZckZri48Ii9V7cLp2DiS9JvkuqhyHUqJeSyBexYhh7vg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDJ2r3BYkw2PPJfJKyQyYLFgg/pR7wBtBR9kF5777clBwIhAJzX6uiWJoZdhqI5jnYJuid3WLZGZcZ0PlX4ci7no1fe"}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.35.4":{"name":"es6-shim","version":"0.35.4","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"prepublish":"safe-publish-latest && npm run minify","pretest":"npm run lint && evalmd *.md","test":"npm run tests-only","tests-only":"npm run test:shim && npm run test:sham","test:shim":"mocha test/*.js test/*/*.js","test:sham":"mocha test-sham/*.js","test:native":"NO_ES6_SHIM=1 npm run tests-only","lint":"npm run lint:shim && npm run lint:sham","lint:shim":"npm run jshint:shim && npm run jscs:shim && npm run eslint:shim","lint:sham":"npm run jshint:sham && npm run jscs:sham && npm run eslint:sham","eslint":"npm run eslint:shim && npm run eslint:sham","eslint:shim":"eslint es6-shim.js test/*.js test/*/*.js","eslint:sham":"eslint es6-sham.js test-sham/*.js","jshint":"npm run jshint:shim && npm run jshint:sham","jshint:shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint:sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs:shim && npm run jscs:sham","jscs:shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs:sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify:shim && npm run minify:sham","minify:shim":"uglifyjs es6-shim.js --support-ie8 --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify:sham":"uglifyjs es6-sham.js --support-ie8 --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"@ljharb/eslint-config":"^13.0.0","chai":"^3.5.0","es5-shim":"^4.5.12","eslint":"^5.8.0","evalmd":"^0.0.17","grunt":"^0.4.5","grunt-contrib-connect":"^1.0.2","grunt-contrib-watch":"^1.1.0","grunt-saucelabs":"^8.6.3","jscs":"^3.0.7","jshint":"^2.9.6","mocha":"^3.5.3","promises-aplus-tests":"^2.1.2","promises-es6-tests":"^0.5.0","safe-publish-latest":"^1.1.2","uglify-js":"2.7.3"},"gitHead":"271142ca5c58b7bfec6970b1c070515da0d8ef98","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.35.4","_npmVersion":"6.4.1","_nodeVersion":"11.0.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"integrity":"sha512-oJidbXjN/VWXZJs41E9JEqWzcFbjt43JupimIoVX82Thzt5qy1CiYezdhRmWkj3KOuwJ106IG/ZZrcFC6fgIUQ==","shasum":"8d5a4109756383d3f0323421089c423acf8378f1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.35.4.tgz","fileCount":53,"unpackedSize":593241,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb17IiCRA9TVsSAnZWagAAyLcP/2izhL+xF76yMhhvsHcN\nfPUraSCM1sYZPCfz0fvQVBi7uifORSl8t/+fHM20bkdUF3yedqYYVmR7WbNv\ntUtiYenwTPD/RIVIRPu1tgxvJuTxpfuYh3V7cqlu0meFpA/BrPi4ZvjKLDtQ\nOTPQY76P9KtEPMLqHEzqyHduKpXRxqAVxTDFAujFXgXBkJHNs9uXBGlRPwlF\nX3tZIfDE/rkNq9LwUPtPb4OCPyVUNsmFppo1HQ2+VXL8PoqhUD4RwZUY5eo4\nHQjdK+5XKrcsF3myinKO2kZhrmaoicBar1+uqVFEniznhu7LzgGTJEy2YpLZ\n+N/yslMfQk9GFJdAxayBxzER4Esk5nN8RO7zwIU2nfSIidjKx13Tx0Cx815U\n+yGOf6A8rw7j3gOzRGiTfe/jWmJx+UXO+oTYmc8PP5vmPkQUy/7H5EdvWlYV\ndEjgiK2gSEIbpxvbM+Cq47Z+imEY9V84C9FlQUPuajZ1QRmas/2uQyPd/kVY\nd25KR4o4SKAJuF853I7gxoBKOxHaEFspp1SBPWG1g5T88QvXYAsRVgC66mdL\nQ7e2U9x/QXauNXB/u3ay3zZEIu2DNEPWGSfDqok2DoA3hgzs6nuM5fRewTcZ\n+VY5y8OuXrc5lrz75BWRzqf6JTVP0FIMPbMyaAFqw3kyx73po40bPoepic4V\nBE4x\r\n=pYuw\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCUIX3uNVPKVyVkAAXnd1fb3gGdEg/aj27QWHS0WAaengIgXvL+lXr8Z+I+0sxJ7UdpE6YI2DFz8bcsGxtEv49Ogzc="}]},"maintainers":[{"email":"ljharb@gmail.com","name":"ljharb"},{"email":"paul@paulmillr.com","name":"paulmillr"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/es6-shim_0.35.4_1540862497590_0.8593656639054563"},"_hasShrinkwrap":false},"0.33.7":{"name":"es6-shim","version":"0.33.7","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && evalmd *.md && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.4.0","es5-shim":"^4.1.15","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^2.3.5","jshint":"^2.8.0","mocha":"^2.3.3","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.5.0","evalmd":"^0.0.16"},"gitHead":"1f1013450f2a6758a7c53786033aec4d6e2b5603","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.33.7","_shasum":"ffcb2edd180e73dc17525ed6c5148341573c6010","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"ffcb2edd180e73dc17525ed6c5148341573c6010","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.33.7.tgz","integrity":"sha512-M+1MRmGd+kmEMO0R5RpFzYwE+87U2LRkod9YwotDpa28TejpO7lGdYfg7qjAr9hqwrgcK+xx4XITwpyGCzq4Ug==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDdDlYonNUhrNqeOChRY8d1DDRHQOFV1aZQ+RK9oiRRhwIgK4FWGMYhTUOKAp9n31fslKwIYRi5ww9/DB+O5HNzwIY="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.35.5":{"name":"es6-shim","version":"0.35.5","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"prepublish":"safe-publish-latest && npm run minify","pretest":"npm run lint && evalmd *.md","test":"npm run tests-only","tests-only":"npm run test:shim && npm run test:sham","test:shim":"mocha test/*.js test/*/*.js","test:sham":"mocha test-sham/*.js","test:native":"NO_ES6_SHIM=1 npm run tests-only","lint":"npm run lint:shim && npm run lint:sham","lint:shim":"eslint es6-shim.js test/*.js test/*/*.js","lint:sham":"eslint es6-sham.js test-sham/*.js","minify":"npm run minify:shim && npm run minify:sham","minify:shim":"uglifyjs es6-shim.js --support-ie8 --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify:sham":"uglifyjs es6-sham.js --support-ie8 --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"@ljharb/eslint-config":"^13.1.1","chai":"^3.5.0","es5-shim":"^4.5.12","eslint":"^5.15.1","evalmd":"^0.0.17","grunt":"^0.4.5","grunt-contrib-connect":"^1.0.2","grunt-contrib-watch":"^1.1.0","grunt-saucelabs":"^8.6.3","mocha":"^3.5.3","promises-aplus-tests":"^2.1.2","promises-es6-tests":"^0.5.0","safe-publish-latest":"^1.1.2","uglify-js":"2.7.3"},"gitHead":"d5e8698a96ab827b21bebf7228e36fe4c88f7bab","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.35.5","_nodeVersion":"11.11.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-E9kK/bjtCQRpN1K28Xh4BlmP8egvZBGJJ+9GtnzOwt7mdqtrjHFuVGr7QJfdjBIKqrlU5duPf3pCBoDrkjVYFg==","shasum":"46f59dc0a84a1c5029e8ff1166ca0a902077a9ab","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.35.5.tgz","fileCount":51,"unpackedSize":587073,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcgg6hCRA9TVsSAnZWagAAzogP/iajF0Ik+9FDMwDwNJJ6\nqR5/3m+xxBv4uDQHiOCLVfcamPM9j9QjWSkF7JEpZU1Tdkx6qd0BG2AwOhuK\nDI/I6pBIXQ1h70Bl0YO7opLXjdIX6f/JIXB5Al1D8c2AIytoZqer2Iq5ZrX1\niWHm3x9UEAslyZDobby//+vOjqjrkq99+cy+02qqm1T82MWg4qvgyxGTWlyX\nKf6QI3DTroVfPypgGDwXGWukG1R/F1nYV+8NjMYG757b9UiGEeoRbQV+SC3Q\ngSHr8LucF7IqXHXTr2UfuZGyM82kFMsrxMh7IbcPSu96nCet2bk4FH3fmoqH\n9q/blOGVLqHPRbSY+SyEK5jwmd7A9LI8lpP92wTnGxAGsVVAMhcBKrKC0pVN\nv7KdvzTLIBySTQ1qWb53isqyBHdiwsMOis3HzZHxGGU5e8Ol0u/vbxLg/A6f\nSpRYZDu5iaifQHBWuBwAv9n1FQLi4arI9ycqUHv4Io0V6L0BOvcSC2uHgILQ\nkHn/ZjNxAclE8Miyqqsbj1ad7tO3fMfKQtgjdu2AmveavGVhxj03hVdbgZUF\naIdTAMKloSUSBvWaAgiDW/HUJakQmrn8WYoZntocwULkM0LJ/GazuiDteVcW\ng3nr5sXDQuxCCTeCqPzPms//0MuhH/l2pzroIuIf2FFKYBt/2Wed8meWIoqq\nakFR\r\n=CEZK\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAhzu/sONJBPEg1N67zqJbOG9gMLJg+10PPSa3Q+fNOCAiAtqMBEbZkvzxaXA6zeJ4F42YgrQtB7MoSER424iNDdgg=="}]},"maintainers":[{"email":"ljharb@gmail.com","name":"ljharb"},{"email":"paul@paulmillr.com","name":"paulmillr"}],"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/es6-shim_0.35.5_1552027296434_0.6724179820568885"},"_hasShrinkwrap":false},"0.21.0":{"name":"es6-shim","version":"0.21.0","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run test-shim && npm run test-sham","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"jshint es6-shim.js test/*.js test/*/*.js && jscs es6-shim.js test/*.js test/*/*.js","lint-sham":"jshint es6-sham.js test-sham/*.js && jscs es6-sham.js test-sham/*.js","test-shim":"npm run lint-shim && mocha test/*.js test/*/*.js","test-sham":"npm run lint-sham && mocha test-sham/*.js","test-native":"jshint es6-shim.js && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.9.2","es5-shim":"~4.0.3","grunt":"~0.4.5","grunt-contrib-connect":"~0.9.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.3.2","jscs":"~1.7.3","jshint":"~2.5.10","mocha":"~2.0.1","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.15"},"gitHead":"c8919a0bbeb0aabcd87b15be77a274e86c01ca65","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.21.0","_shasum":"90bd28e612f34f3b38dd58db82217b3c7b6ded9e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"90bd28e612f34f3b38dd58db82217b3c7b6ded9e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.21.0.tgz","integrity":"sha512-xc1TdZZVcjSjK5aj/i67F84yHuCDATKbdwSFhn7Z/3mNjWMJ9rswrvNj82FOlAAWg7/OuQyZ9obKQZO6yp1ONA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGbuBUi7EWPUaPtFT7JnOviz/dnnDZbfuxuXmYq2bUqzAiAd7Qg5QPqiFraKRR0yzEVY8brDygvynvhDMOXktHvD1w=="}]},"directories":{}},"0.9.3":{"author":{"name":"Paul Miller","url":"http://paulmillr.com"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim"],"version":"0.9.3","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"mocha"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"mocha":"~1.17.1","chai":"~1.9.0","es5-shim":"~2.3.0"},"bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.9.3","dist":{"shasum":"00c725e75b0ae4d322e6ccbd87484a800237f03a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.9.3.tgz","integrity":"sha512-B577Mnygf6/uoJpQSurHUqf9OVNJf76xl+t1V1gsrsMVRqsF+xpHvzlJ3xhY1i3B0xHJAbpL5yIf8a9XUBBUow==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCMNy4OP1IFgJUUh3LCn9Ze0SJoP2Kw/Ihe/u9wM1K3sgIhAPhQ5L2ZfitlAtAQ7cgNwGSg0kgqG2BCCwCj4EOibtnU"}]},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.33.10":{"name":"es6-shim","version":"0.33.10","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && evalmd *.md && npm run tests-only","tests-only":"npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim && npm run eslint-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham && npm run eslint-sham","eslint":"npm run eslint-shim && npm run eslint-sham","eslint-shim":"eslint es6-shim.js test/*.js test/*/*.js","eslint-sham":"eslint es6-sham.js test-sham/*.js","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.4.0","es5-shim":"^4.2.0","eslint":"^1.8.0","@ljharb/eslint-config":"^1.5.0","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^2.5.0","jshint":"^2.8.0","mocha":"^2.3.3","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.5.0","evalmd":"^0.0.16"},"gitHead":"ec373740c51a5eac1b5a5f88109723b0d03d74db","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.33.10","_shasum":"0dfdf87e894e9025dae78b04522ac70fb6f0d14f","_from":".","_npmVersion":"3.3.10","_nodeVersion":"5.0.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"0dfdf87e894e9025dae78b04522ac70fb6f0d14f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.33.10.tgz","integrity":"sha512-guYsUg436/19HS1EevWZamBLcYYGLS2nqYrvrm01L/cTl974rMBXaYSgFa8xLM5HdyH1KlsOJfngJxZCKZlgfw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDRBB3B5vJgEb9RNkqpp9IInNDeiuyvVr1UmTA1PJa1pwIgPTAgGHvksQQlRv4Z3iKN7EkO//nKyIdvp++9Y9hgzfg="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.5.1":{"author":{"name":"Paul Miller","url":"http://paulmillr.com/"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","version":"0.5.1","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"./node_modules/mocha/bin/mocha --reporter spec --require 'test/test_helpers.js'"},"engines":{"node":"~0.6.5"},"dependencies":{},"devDependencies":{"mocha":"1.1.0","expect.js":"0.1.2"},"_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"_id":"es6-shim@0.5.1","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.18","_nodeVersion":"v0.6.14","_defaultsLoaded":true,"dist":{"shasum":"207b41ed73468c08fd5a5753ac5396fd444553b6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.5.1.tgz","integrity":"sha512-Kq9z71vx6eRSEtA8dyKJ+qEPAQbUkXzUq7YYkFiJ1OhH6yAYI35H3HQAy9oNxPe9vCOSLUZU6C29i2kCZTm9Zg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC72fjrup3e97rd9gh98aE0sTZxqv/aHKEkYGYgqAPUKwIhALxD7yt6e2DcYwgySThMCFrB4muAjT04PURNg3fjDYxU"}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{},"deprecated":"Please update to the latest es6-shim for the latest draft spec updates"},"0.5.2":{"author":{"name":"Paul Miller","url":"http://paulmillr.com/"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","version":"0.5.2","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"./node_modules/mocha/bin/mocha --reporter spec --require 'test/test_helpers.js'"},"engines":{"node":"~0.6.5"},"dependencies":{},"devDependencies":{"mocha":"1.1.0","chai":"1.0.4"},"_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"_id":"es6-shim@0.5.2","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.18","_nodeVersion":"v0.6.14","_defaultsLoaded":true,"dist":{"shasum":"042d935e156e2516167c5b9fc43952a965fb3438","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.5.2.tgz","integrity":"sha512-tpHmQMEZfNTwbb5hAnueBGJEegT64DkLgXvMY/P+sM9XfUXZnb+XMVBJeS1zv1/9gt4LlvRRfo5Jh0yXlwAfcg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBUgCbn1Rjey4hBhQdT45e1fgzBlLNvfKbK4qBUPY19yAiBeKB+G6ZAXkTkeEqFhc30heTQuK/Iwu474TbrPUzoD4w=="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{},"deprecated":"Please update to the latest es6-shim for the latest draft spec updates"},"0.7.0":{"author":{"name":"Paul Miller","url":"http://paulmillr.com/"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","version":"0.7.0","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"mocha --require test/test_helpers.js"},"testling":{"files":"es6-shim.js","browsers":["iexplore/6.0..latest","firefox/3.0","firefox/15.0..latest","firefox/nightly","chrome/4.0","chrome/23.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest"]},"dependencies":{},"devDependencies":{"mocha":"1.8.1","chai":"1.4.2"},"_id":"es6-shim@0.7.0","dist":{"shasum":"7020aba10257758d5301ec5c450b27488042eaf2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.7.0.tgz","integrity":"sha512-kGNmOAZmclLHA+j8Pk671ucuXTg562H3inCgZu8rzas44T9EgThZqgg0cxKZr1h9whb3yG7jUXB3FiVPdpZKMQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCtqmi34Qzv5eaLy/2SdaiIbvFKW0delkPlVlqc69TPLwIgfeKaXbBE+JDXQPkKy32QxYuw0L5IHUIfOjxc0S2tFJA="}]},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{},"deprecated":"Please update to the latest es6-shim for the latest draft spec updates"},"0.3.1":{"author":{"name":"Paul Miller","url":"http://paulmillr.com/"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","version":"0.3.1","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"make test"},"engines":{"node":"~0.6.5"},"dependencies":{},"devDependencies":{"mocha":"0.7.1","expect.js":"0.1.1"},"_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"_id":"es6-shim@0.3.1","_engineSupported":true,"_npmVersion":"1.1.0-beta-10","_nodeVersion":"v0.6.6","_defaultsLoaded":true,"dist":{"shasum":"342ee2057ff8a43a6d3e83b87acba9a00707a5fc","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.3.1.tgz","integrity":"sha512-XD2hH2JCbPCT+CSUnDOL+5/ildrrDRIFFGoSdfv05qC0joz66jRVncagfxKPRo3U9zsKIFpoZRktZa5ey3mNrw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICq494C97LLD8qY/CEXsMR7nLToEjWsnaOzf78AYwtz6AiBPTuHWOPooWNs+tOptjXTPJG9u+maR1bQmbYgqeDCuMA=="}]},"maintainers":[{"name":"paulmillr","email":"paulmillr@me.com"}],"directories":{},"deprecated":"Please update to the latest es6-shim for the latest draft spec updates"},"0.5.0":{"author":{"name":"Paul Miller","url":"http://paulmillr.com/"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","version":"0.5.0","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"make test"},"engines":{"node":"~0.6.5"},"dependencies":{},"devDependencies":{"mocha":"0.7.1","expect.js":"0.1.1"},"_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"_id":"es6-shim@0.5.0","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.18","_nodeVersion":"v0.6.14","_defaultsLoaded":true,"dist":{"shasum":"7441f20bf2b9d42443001f11930650ed8ba62acf","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.5.0.tgz","integrity":"sha512-h62o8KQ2oU+Zlko3g1YWc1dd58USfW/11LL3T1sn1Flf1YPyV4yclbZeCmB2VbNCL9k84Auh5O8skJT7/E+1vw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC6T82rLpBk6KPK+xRob62uagxO65QGjBy/tok4/fQk9gIhAIktB8vmFOq+bRPdmxb8an/s/8sK9dzIlnudLKAn/J1Q"}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{},"deprecated":"Please update to the latest es6-shim for the latest draft spec updates"},"0.9.1":{"author":{"name":"Paul Miller","url":"http://paulmillr.com"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","version":"0.9.1","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"mocha"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"mocha":"~1.13.0","chai":"~1.8.1","es5-shim":"~2.1.0"},"bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.9.1","dist":{"shasum":"976cfcf9331889fb5770b840436c05fb6821cc79","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.9.1.tgz","integrity":"sha512-N25p+XAJnTMCoCnrXVSQ3oeEAbAjCviB2RWVJ3bGNoIuLI07kBXOzsiiV8+YZbgj/kCpy0Rh5XLRsMvOplGpbw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDctRh3XKRI+LNt1ZlNHjtkjlF2yyoW6UTjeb3PRHcS4AiEA30hsvMdioXm/lcOOFbKPjn+6/9H8n7ZW6j8QAb2ocdE="}]},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.9.2":{"author":{"name":"Paul Miller","url":"http://paulmillr.com"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim"],"version":"0.9.2","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"mocha"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"mocha":"~1.13.0","chai":"~1.8.1","es5-shim":"~2.1.0"},"bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.9.2","dist":{"shasum":"058cef230be4129d80e20882e695ff0317bc0c9e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.9.2.tgz","integrity":"sha512-miMV88kcAPT92Cr/OOU8DX7BGEq4GF6JNXifHR6ka7KwGbI1bP64hI6JczUjsy94ciPJRQe1T049p8/GdAN0OA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCa9K34e6t+PBvcKr27T+lxvvzntcLGp6y3tyGniXxFXwIhAIrXeUdqYQ4+Hi0W659h654iYUnQszZhgSmqwtOnpOMv"}]},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.5.3":{"author":{"name":"Paul Miller","url":"http://paulmillr.com/"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","version":"0.5.3","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"mocha --require 'test/test_helpers.js'"},"engines":{"node":"~0.6.5"},"dependencies":{},"devDependencies":{"mocha":"1.1.0","chai":"1.0.4"},"_id":"es6-shim@0.5.3","dist":{"shasum":"635cc91663ce9e9470d2c654deaaee88177ecdd4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.5.3.tgz","integrity":"sha512-YMsT8jKuNQ2LR9pukPdYdzeWOcP0VyWbq/HO9c/GBq0id5wIzWNp8NoSNxvHxdHWM9LEG5Ed7qzUBYL/wgGfCQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDPoKE6C/u7vD8G8MpjxxKf9uRA0+cWt+kSXNIpFfoZ+gIgMCV1n5JGxqxtnzhdk5bjoOVuelTftKZ5HPeHi4pTC/w="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"}],"directories":{},"deprecated":"Please update to the latest es6-shim for the latest draft spec updates"},"0.9.0":{"author":{"name":"Paul Miller","url":"http://paulmillr.com/"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","version":"0.9.0","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"mocha --require test/test_helpers.js"},"testling":{"files":["es6-shim.js","test/*.js"],"harness":"mocha","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10","chrome/23.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest"]},"dependencies":{},"devDependencies":{"mocha":"1.12.0","chai":"1.7.2","es5-shim":"2.1.0"},"bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.9.0","dist":{"shasum":"df9eb514cedf29ebc9083d148af25ce05a491ae0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.9.0.tgz","integrity":"sha512-aENZN9ODJduyLGM50WDPHJP0IQ8VDu3A5s7JaGXt6iG4t2/iODPRMC07d7bvDzHRWDcp9huTI6Yc+CENlxIGJQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDxbMONG+XKK5R6SavRniWbLUYDrjXq6e0x2B52zC3y1wIgFNyEIaahw9axkRtksWZz3QRj6xaA/Dlql+Axf1pXUlY="}]},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.21.1":{"name":"es6-shim","version":"0.21.1","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.10.0","es5-shim":"~4.0.5","grunt":"~0.4.5","grunt-contrib-connect":"~0.9.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.3.3","jscs":"~1.8.1","jshint":"~2.5.10","mocha":"~2.0.1","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.15"},"gitHead":"8273a64f8d86b141eb088892d933dd42e6010142","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.21.1","_shasum":"6621bce72e1ac80a6e1f002abd4e789f12489fd2","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"6621bce72e1ac80a6e1f002abd4e789f12489fd2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.21.1.tgz","integrity":"sha512-ayNcV2FooDP1LdWPgT2lbPYcz+MGSIgg2uxAaRZ5YBLq2fUcJCRwgk8Q7Sq1fnM81GLObop7K1U0LhpX0pLIAQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICmUkk8MhD6q4j5ZJyzfsQ8pb3V8r+wa3PfGMSR1A3YjAiEAiVYmcfl2sxwyW6fLGVVbkAP+nwWel+svsZRmGt3z9hk="}]},"directories":{}},"0.23.0":{"name":"es6-shim","version":"0.23.0","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.10.0","es5-shim":"~4.0.5","grunt":"~0.4.5","grunt-contrib-connect":"~0.9.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.5.0","jscs":"~1.10.0","jshint":"~2.6.0","mocha":"~2.1.0","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.16"},"gitHead":"fde6f2134762d36e9b1324f212fd939282700ca5","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.23.0","_shasum":"ea65bdcfc076eb109ea839f92dfed8c0517a2b72","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"ea65bdcfc076eb109ea839f92dfed8c0517a2b72","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.23.0.tgz","integrity":"sha512-5aRbARo89CDteSjII840NKh6DXMNpSjsG3jHqAtSUYts5wDLfIYWayl9F0+Xh8i9WuvqORJjDEee3aXJR1CZHA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBqK5NEv7dVQRaAw9kofF0GRNkV4qBYHr3LLXRf8ZlaGAiAOHeUjz+DwOc1jlfhVwSJXXWchORLf9r1XPcQZ5NZyQw=="}]},"directories":{}},"0.25.0":{"name":"es6-shim","version":"0.25.0","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.10.0","es5-shim":"~4.1.0","grunt":"~0.4.5","grunt-contrib-connect":"~0.9.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.5.0","jscs":"~1.11.0","jshint":"~2.6.0","mocha":"~2.1.0","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.16"},"gitHead":"7781aad3fb2a35048cce9d10bf929dd9fc192ab6","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.25.0","_shasum":"62eea13af4aba9d3e4cb1c79e4b05556132a7a95","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.2.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"62eea13af4aba9d3e4cb1c79e4b05556132a7a95","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.25.0.tgz","integrity":"sha512-1INgnTeAxmr51YI88CoR7ASGUQOIZbpS/RcQXms+5GgPu9KED1OhMEaBMGuESK4RdX3kk4yCt6FFz+tlG5drdQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBogZL0bd0TuPzqjeCAFbbGZ2uWiUW9iWNoE2fdkSMEKAiAIwo0tYDMoVfNgBoa8fCOTbuBxoB1ra2+nBPhzehLXUA=="}]},"directories":{}},"0.25.1":{"name":"es6-shim","version":"0.25.1","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.10.0","es5-shim":"~4.1.0","grunt":"~0.4.5","grunt-contrib-connect":"~0.9.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.5.0","jscs":"~1.11.0","jshint":"~2.6.0","mocha":"~2.1.0","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.16"},"gitHead":"50ea9b33b8867b03f679b1f7c66b0caad4ca9740","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.25.1","_shasum":"2ad8d92986bcb26ae30265b2c90a7991d143139a","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.2.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"2ad8d92986bcb26ae30265b2c90a7991d143139a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.25.1.tgz","integrity":"sha512-aJsSqlolqQ6xoBi59Ne0lHZcBHZlmMEZu6jtHI0FwVj2TsyMKaAuW7BPRiireGcZ2N+3ZbnY3o7Xs68P0kLOVA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDnCY8A+nkmfMcHMK8yT074owr2gePfFJC1qkoZrfJKzwIgTUdUi8bB4jS/MH7lAl/PGqH8BVSFd4JWGZ6jyt2BYIE="}]},"directories":{}},"0.3.0":{"author":{"name":"Paul Miller","url":"http://paulmillr.com/"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","version":"0.3.0","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"make test"},"engines":{"node":"~0.6.5"},"dependencies":{},"devDependencies":{"mocha":"0.7.1","expect.js":"0.1.1"},"_npmUser":{"name":"paulmillr","email":"paul@paulmillr.com"},"_id":"es6-shim@0.3.0","_engineSupported":true,"_npmVersion":"1.1.0-beta-10","_nodeVersion":"v0.6.6","_defaultsLoaded":true,"dist":{"shasum":"86529bade85ce908b3890bdea43a60faa99463e3","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.3.0.tgz","integrity":"sha512-FxgE9FDbQh9KbJAn2kXGwHaPMcoxG+dXTvT+1p8xRUlZ8sxZ1LYQRtx0Cy6yX4qugsM2NJCH5Bqx1ivI5cKxpQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCVHtchBRORLZURxoCVzXIaub8j/xVyfDj4S6P8k6LW4QIhAPSHJhc7TWAOa86WOdHDFoFF1PDWbMIYiWsNN8P2SYSk"}]},"maintainers":[{"name":"paulmillr","email":"paulmillr@me.com"}],"directories":{},"deprecated":"Please update to the latest es6-shim for the latest draft spec updates"},"0.25.2":{"name":"es6-shim","version":"0.25.2","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.10.0","es5-shim":"~4.1.0","grunt":"~0.4.5","grunt-contrib-connect":"~0.9.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.5.0","jscs":"~1.11.0","jshint":"~2.6.0","mocha":"~2.1.0","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.16"},"gitHead":"6a63a94b57d9aa46c704e2bc1d3114ed50aa6633","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.25.2","_shasum":"70b1e37c25ce0a35a7845faab1f3a44c0b47a178","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.2.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"70b1e37c25ce0a35a7845faab1f3a44c0b47a178","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.25.2.tgz","integrity":"sha512-Smv+FEw2dA4VE0jRr97Aby+bUNM3qANodlSmTcDLAgXUyRiEu2ZbLyp24ltAW+QpemLAZI11Y8mRFpQcBHAuow==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHMf3t75CDga/q/hM3a9fG5c5IN9Gt1sDtiihttqKJpHAiEA4nyuCDQ9TvrL4nyoXpYBhBfcPH1FcfKjlL2lw/RsrsE="}]},"directories":{}},"0.25.3":{"name":"es6-shim","version":"0.25.3","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^2.0.0","es5-shim":"^4.1.0","grunt":"^0.4.5","grunt-contrib-connect":"^0.9.0","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.0","jscs":"^1.11.3","jshint":"^2.6.0","mocha":"^2.1.0","promises-aplus-tests":"^2.1.0","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.16"},"gitHead":"1f17d82aa95d7a86383e494c3a6e1ad08d09d404","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.25.3","_shasum":"774d24aa33be5ba9404ba4de1086bf87a6302f66","_from":".","_npmVersion":"2.5.1","_nodeVersion":"1.3.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"774d24aa33be5ba9404ba4de1086bf87a6302f66","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.25.3.tgz","integrity":"sha512-0QZiZ8xySrCD2mWRnVEPYPqMh9hoF61OUTBeFCIDH75IucPilPfCFiHXVhnW8Fqyd3pGFgD5mSfbEo5RpIFGhQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDOtGePq2t+Dn0m1ZQjPBCTXCbaJRSV9OpzOIqw2om3+QIhAOuQ1ce0rn6wvkENzINgcXYPwy+TNjmZsMY5nuUqEti1"}]},"directories":{}},"0.27.1":{"name":"es6-shim","version":"0.27.1","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^2.1.0","es5-shim":"^4.1.0","grunt":"^0.4.5","grunt-contrib-connect":"^0.9.0","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.0","jscs":"^1.11.3","jshint":"^2.6.0","mocha":"^2.1.0","promises-aplus-tests":"^2.1.0","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.16"},"gitHead":"dad3f8e9e78f8c0842628ad9558547a3c62382b7","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.27.1","_shasum":"bd3f870663eac2ede8e8943e2a6d23c052d53fc6","_from":".","_npmVersion":"2.6.1","_nodeVersion":"1.4.3","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"bd3f870663eac2ede8e8943e2a6d23c052d53fc6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.27.1.tgz","integrity":"sha512-6nmgPauuloBg2nn/LTW1CgjUnBWa7OvzTtNq6iiII72iL5PYLvwVn0zP1pkX4GIhgQcdEphS1nc2S8+/UClyQg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCg4X2O5MVg0Z5vV4kaeEuhxysQd5aPOSQtv7gajTsyWwIgESCLVBaRPUD6K4wkpRqk64pfJ7pFa/twBNY1rJCkaJc="}]},"directories":{}},"0.1.0":{"author":{"name":"Paul Miller","email":"paulmillr@me.com","url":"http://paulmillr.com/"},"name":"es6-shim","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","version":"0.1.0","homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"make test"},"engines":{"node":"~0.6.5"},"dependencies":{},"devDependencies":{"mocha":"0.7.1","expect.js":"0.1.1"},"_npmUser":{"name":"paulmillr","email":"paulmillr@me.com"},"_id":"es6-shim@0.1.0","_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.6","_defaultsLoaded":true,"dist":{"shasum":"6f9d05f7cf162f0fa24d4ce64cf9bf0893dceada","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.1.0.tgz","integrity":"sha512-N310lgCSnIPvPm0vYQ+Iw2G74wEfomV0i1gJhi6+CCUNnmE2ZZ13ZJyQPxiSOiQU9NLJn/6EJicnFf8TfMTx+Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC4gX7yMuROdF6vTDO1fAaKu1R/YDYfJ1GXxTpYr/xj+QIhAKvqRyadtXsSBXSGtGXSLdhhhM3ZUav0W+NC3jv8CSw2"}]},"maintainers":[{"name":"paulmillr","email":"paulmillr@me.com"}],"directories":{},"deprecated":"Please update to the latest es6-shim for the latest draft spec updates"},"0.29.0":{"name":"es6-shim","version":"0.29.0","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^2.3.0","es5-shim":"^4.1.1","grunt":"^0.4.5","grunt-contrib-connect":"^0.10.1","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.0","jscs":"^1.11.3","jshint":"^2.7.0","mocha":"^2.2.4","promises-aplus-tests":"^2.1.0","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.20"},"gitHead":"7b8416e586be12edc20e16978978659cbcca0743","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.29.0","_shasum":"7172cb61c0f5a7d80bf53da11885f03ae58d99e9","_from":".","_npmVersion":"2.8.3","_nodeVersion":"1.8.1","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"7172cb61c0f5a7d80bf53da11885f03ae58d99e9","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.29.0.tgz","integrity":"sha512-ECbjxyVft2WPHjN3ZOPLsNDUn+m+nK4h4LdbG3LL/J6F9goJbIR2Ov8IyAxmH9x0CpNjV9HVGvL9rkrZgm5iPQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIESGutIlozBExJ6D8rggS7DxABseIb1UM/FbOnKJYH+aAiBiyITZyR5o7fu203Ey2UnpLPwIAhxykHPj87GohaQHug=="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.30.0":{"name":"es6-shim","version":"0.30.0","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^2.3.0","es5-shim":"^4.1.1","grunt":"^0.4.5","grunt-contrib-connect":"^0.10.1","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.0","jscs":"^1.11.3","jshint":"^2.7.0","mocha":"^2.2.4","promises-aplus-tests":"^2.1.0","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.20"},"gitHead":"ba581d8a4b9c1bdbadc71188d18a011f6be638a0","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.30.0","_shasum":"11d106e37ee71c51e446a3c9254dd2c5a800c666","_from":".","_npmVersion":"2.8.3","_nodeVersion":"1.8.1","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"11d106e37ee71c51e446a3c9254dd2c5a800c666","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.30.0.tgz","integrity":"sha512-sFWZWht7Gmk/ZUv1oV10ExxPloxsT49noMjE9CqQeWzuwW0lt60n0aPv1yYl0f5o3ZQPEmt34ugXjplBdUjCJw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCaVdyTkHuGMt6NoMV3nNkRmolURoERteaHa2YrA1QI5QIhAO9RkoXv1HJU8rjLov5gEkZdVYpu2J6b0sY8O9xaZCTq"}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.32.0":{"name":"es6-shim","version":"0.32.0","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.0.0","es5-shim":"^4.1.5","grunt":"^0.4.5","grunt-contrib-connect":"^0.10.1","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^1.13.1","jshint":"^2.8.0","mocha":"^2.2.5","promises-aplus-tests":"^2.1.0","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.23"},"gitHead":"5566960f40329077ba4b3155be1848b00bf342ef","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.32.0","_shasum":"a8681c4a47149b2618efedbaa3fcb3913ac9ce9f","_from":".","_npmVersion":"2.11.0","_nodeVersion":"2.2.1","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"a8681c4a47149b2618efedbaa3fcb3913ac9ce9f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.32.0.tgz","integrity":"sha512-Gu3Qi7cINT+B1jsG3DiujrwFwD3jYpw17FnBvQwyYEX9qBuL+idgClbdxQhvBS6UNkjtkeqPVPWCepIhOO32Tw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHzIQfpstvy2PqrHSjCbehPf1F3bXANkWVhKXs1l5k/tAiAd3VdInqC5CPzndNLskhcaL+vVyB/y8hkYDlwh3yMXjw=="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.17.0":{"author":{"name":"Paul Miller","url":"http://paulmillr.com"},"name":"es6-shim","version":"0.17.0","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run test-shim && npm run test-sham","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"jshint es6-shim.js","lint-sham":"jshint es6-sham.js","test-shim":"npm run lint-shim && mocha test/*.js test/*/*.js","test-sham":"npm run lint-sham && mocha test-sham/*.js","test-native":"jshint es6-shim.js && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.9.1","es5-shim":"~4.0.3","jshint":"~2.5.5","mocha":"~1.21.4","promises-aplus-tests":"~2.0.5","promises-es6-tests":"~0.3.2","uglify-js":"~2.4.15"},"gitHead":"ff2874d45e849aab8085cdcbbed9c43b4658aa4f","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.17.0","_shasum":"ed905ea0f94c8005bd2171cad40ad7a58e02561c","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"ed905ea0f94c8005bd2171cad40ad7a58e02561c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.17.0.tgz","integrity":"sha512-Ita+DnS/6iyeK0fuGP5j6iLVXv7sh1m5weY0lMFAkpKRq6IolFcG/hrD/AL8ksmFUgFJCGUWc9wSGemaV30utw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC52ZO1z+Yso6C1BEmh5mvxgdiGeYwj+zlu23+t2BLSoAiEA5MTn+1yEbxjiH6LpClXrccztfGqKG/icP+QLMlyDnnI="}]},"directories":{}},"0.15.1":{"author":{"name":"Paul Miller","url":"http://paulmillr.com"},"name":"es6-shim","version":"0.15.1","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"lint":"jshint es6-shim.js","test":"npm run lint && mocha test/*.js test/*/*.js","test-native":"jshint es6-shim.js && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","minify":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.9.1","es5-shim":"~4.0.1","jshint":"~2.5.0","mocha":"~1.21.0","promises-aplus-tests":"~2.0.4","promises-es6-tests":"~0.3.2","uglify-js":"~2.4.12"},"gitHead":"794daa11470debf06e69d0490d655888636c35d6","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.15.1","_shasum":"f10aeabf34999ea87105623e4e3fc49ad8e7a960","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"f10aeabf34999ea87105623e4e3fc49ad8e7a960","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.15.1.tgz","integrity":"sha512-+WUC2V2PL/TUUBjfxtw/w57YSKY0xVCAFn86sVcKB81h7cO6PJMyCCkl6B/Tg8GClztKHyU6Cl8RiHAePCzMdQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDSPV+MwDfll2OE8K0t+FBdJIvuQujhFKDwIwqUQlCwWQIhAIBYdgBQv+eMRxgrXCyHPQXTgZuWYVt1TsZbkjn5Mrlw"}]},"directories":{}},"0.15.0":{"author":{"name":"Paul Miller","url":"http://paulmillr.com"},"name":"es6-shim","version":"0.15.0","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"jshint es6-shim.js && mocha test/*.js test/*/*.js","test-native":"jshint es6-shim.js && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","minify":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.9.1","es5-shim":"~4.0.1","jshint":"~2.5.0","mocha":"~1.21.0","promises-aplus-tests":"~2.0.4","promises-es6-tests":"~0.3.2","uglify-js":"~2.4.12"},"gitHead":"ab544168c1333695cef16376455791678b951cc6","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.15.0","_shasum":"201c386740db52f467e6b2b0dfcb9a45cea67c7e","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"201c386740db52f467e6b2b0dfcb9a45cea67c7e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.15.0.tgz","integrity":"sha512-UZqJ9aruvNabPirmpOUF6Z1HBw6+nfs0LrbR32PUgJUias3QijQAijhO1t1pu4AzL0Tz3hUoV9msE9NOVvUiXQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAZWkmB3XaJZyy1n25iYzGvZB+7h9oq1qBx2GtPWJuqdAiBtyXhNqSx+7bzhNMLAciLerwz1A0XoAZH6p5PNRNorzA=="}]},"directories":{}},"0.13.0":{"author":{"name":"Paul Miller","url":"http://paulmillr.com"},"name":"es6-shim","version":"0.13.0","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"jshint es6-shim.js && mocha test/*.js test/*/*.js","minify":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"mocha":"~1.20.0","chai":"~1.9.1","es5-shim":"~3.4.0","jshint":"~2.5.0","promises-aplus-tests":"~2.0.4","uglify-js":"~2.4.12"},"gitHead":"441894bc831155ea36165d501d1c8a061dcd2933","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.13.0","_shasum":"26eafbf52f0f36c2c1a98df8f38ba1b735302564","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"26eafbf52f0f36c2c1a98df8f38ba1b735302564","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.13.0.tgz","integrity":"sha512-XepVPqksvrpPwNXw5wmTNBiG9R9dUw0/vE4nrFHCRRiMnS1TXvHrBHjr6qEr1Wi3UoyQEnLBxiRT3VxM8h75ag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCJQghhTe+KIGUJO4CF/W57pzPwlu7Gex8VN0ntmrqWLgIhAKYzw2MlnpNlobAa5peFpb8lFwXkq82NfH2jgDKF/Knj"}]},"directories":{}},"0.11.1":{"author":{"name":"Paul Miller","url":"http://paulmillr.com"},"name":"es6-shim","version":"0.11.1","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"jshint es6-shim.js && mocha test/*.js test/*/*.js","minify":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"mocha":"~1.20.0","chai":"~1.9.1","es5-shim":"~3.4.0","jshint":"~2.5.0","promises-aplus-tests":"~2.0.4","uglify-js":"~2.4.12"},"bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.11.1","dist":{"shasum":"ebc3ae485ef5a6bc53494c7d16e4a3ee36ecf103","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.11.1.tgz","integrity":"sha512-rybhVLtAuWDWIM+7d/i9YvqYWm2vhrZGSWIIbSdKu+jhTHD48rgMw9Y4qB+l0kuYfMl59rt+hY4+o8z4bA8Iiw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDKE1F7Oho3RCVy9VJ2JShJUxoxNuk+J8aDJ0AQLn6zkAiAt7CgfBHEWKxdrPAD3VbY6MBOME6OklETqZP1pYPoi+w=="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.11.0":{"author":{"name":"Paul Miller","url":"http://paulmillr.com"},"name":"es6-shim","version":"0.11.0","description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"jshint es6-shim.js && mocha test/*.js test/*/*.js"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"mocha":"~1.18.2","chai":"~1.9.1","es5-shim":"~3.1.1","jshint":"~2.5.0","promises-aplus-tests":"~2.0.4"},"bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.11.0","_shasum":"59553a4cdb861441182737565cfc271888b9aff1","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"59553a4cdb861441182737565cfc271888b9aff1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.11.0.tgz","integrity":"sha512-s1NJ0ggwZejpyRSNzTtiXnoeyP+uGOQ4krrhKCJdt3rcSBpYUch9XonoHq4Gf08DU+YuQediREOaI+Ic609ldw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDAajkJ/sKtaxC8wAp78C0gJqk2uQ97TagRviGnoN3vzAiEA+IXiA18oFWFfBdhoqyNcWFsCPtIv5MXYoipK+IzBIwM="}]},"directories":{}},"0.32.1":{"name":"es6-shim","version":"0.32.1","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.0.0","es5-shim":"^4.1.5","grunt":"^0.4.5","grunt-contrib-connect":"^0.10.1","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^1.13.1","jshint":"^2.8.0","mocha":"^2.2.5","promises-aplus-tests":"^2.1.0","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.23"},"gitHead":"cba1442ccf1f11e4cf23b65ef21d29a46e85baa4","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.32.1","_shasum":"ea36622701ad241c9759b00dd8cf49ad43ceecb8","_from":".","_npmVersion":"2.11.1","_nodeVersion":"2.3.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"ea36622701ad241c9759b00dd8cf49ad43ceecb8","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.32.1.tgz","integrity":"sha512-lbQCqYSBrk1UMM+o0h5wY+WyLjREnrvdh5HNWdv9wHESZQAey1DgFkio00OLPNIteIHis93fPRQM0P8sMWVaDg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGjlZRhXrFqdTzNbDKGEZKrD/Kfmc27kILJdzY5Leu9HAiEAvSTtQIDdgLVEn85h8+qLS7j11bgIRFuoaj7FhmEO6ww="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.32.2":{"name":"es6-shim","version":"0.32.2","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && npm run test-shim && npm run test-sham","test-shim":"mocha test/*.js test/*/*.js","test-sham":"mocha test-sham/*.js","test-native":"npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"npm run jshint-shim && npm run jscs-shim","lint-sham":"npm run jshint-sham && npm run jscs-sham","jshint":"npm run jshint-shim && npm run jshint-sham","jshint-shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint-sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs-shim && npm run jscs-sham","jscs-shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs-sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.0.0","es5-shim":"^4.1.6","grunt":"^0.4.5","grunt-contrib-connect":"^0.10.1","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.1","jscs":"^1.13.1","jshint":"^2.8.0","mocha":"^2.2.5","promises-aplus-tests":"^2.1.0","promises-es6-tests":"^0.5.0","uglify-js":"^2.4.23"},"gitHead":"116db26893347198a5e2c080e0ed10a6bc5ed67e","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.32.2","_shasum":"db38c519ed6005a479ec9dda5f64ff6c8574ebf2","_from":".","_npmVersion":"2.11.1","_nodeVersion":"2.3.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"db38c519ed6005a479ec9dda5f64ff6c8574ebf2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.32.2.tgz","integrity":"sha512-JmNfGQb4nh54X2H/+u7Y7AWFOybsGuAVhAL9GO4QGMx+5V5VmAZCO2jRbm5FwKzublJpoln21amuv94NRch7hg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICDDVeqLt5xGvlbm8lY8BQjX3N7dj9HDkQ3VV/5aGAoIAiAoCPGNuxnHDBv/ZlqMPFEgsBYMhmRC4LRCHpslJHHZWw=="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.34.0":{"name":"es6-shim","version":"0.34.0","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && evalmd *.md && npm run tests-only","tests-only":"npm run test:shim && npm run test:sham","test:shim":"mocha test/*.js test/*/*.js","test:sham":"mocha test-sham/*.js","test:native":"NO_ES6_SHIM=1 npm run tests-only","lint":"npm run lint:shim && npm run lint:sham","lint:shim":"npm run jshint:shim && npm run jscs:shim && npm run eslint:shim","lint:sham":"npm run jshint:sham && npm run jscs:sham && npm run eslint:sham","eslint":"npm run eslint:shim && npm run eslint:sham","eslint:shim":"eslint es6-shim.js test/*.js test/*/*.js","eslint:sham":"eslint es6-sham.js test-sham/*.js","jshint":"npm run jshint:shim && npm run jshint:sham","jshint:shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint:sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs:shim && npm run jscs:sham","jscs:shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs:sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify:shim && npm run minify:sham","minify:shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify:sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.4.1","es5-shim":"^4.4.0","eslint":"^1.10.3","@ljharb/eslint-config":"^1.6.0","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.2","jscs":"^2.7.0","jshint":"^2.8.0","mocha":"^2.3.4","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.6.1","evalmd":"^0.0.16"},"gitHead":"404b6ff5f83a6c859a0df627342cc2c4b421c2a6","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.34.0","_shasum":"308c777014dc3d79f5dad22e2006ec0109b7139a","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"308c777014dc3d79f5dad22e2006ec0109b7139a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.34.0.tgz","integrity":"sha512-AQwb7GJ3YIN3jOg41N6bZqxqSMwmHqGknRIQIx4bUcAEps+p3vz0jlU3fCJzAmUiRBhI5NxH2hOzDmxrwFmTcg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD7mevGXj0QNp1EtrMjxyb0NW8FbeB8y7oHrxc3xJl9swIgCb2f2KYtnF8lnr79G00MPQafIgTw1CPr4+bxwIVoU2A="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"deprecated":"This version has a bug with String#search. Use v0.34.1 instead!","directories":{}},"0.34.1":{"name":"es6-shim","version":"0.34.1","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && evalmd *.md && npm run tests-only","tests-only":"npm run test:shim && npm run test:sham","test:shim":"mocha test/*.js test/*/*.js","test:sham":"mocha test-sham/*.js","test:native":"NO_ES6_SHIM=1 npm run tests-only","lint":"npm run lint:shim && npm run lint:sham","lint:shim":"npm run jshint:shim && npm run jscs:shim && npm run eslint:shim","lint:sham":"npm run jshint:sham && npm run jscs:sham && npm run eslint:sham","eslint":"npm run eslint:shim && npm run eslint:sham","eslint:shim":"eslint es6-shim.js test/*.js test/*/*.js","eslint:sham":"eslint es6-sham.js test-sham/*.js","jshint":"npm run jshint:shim && npm run jshint:sham","jshint:shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint:sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs:shim && npm run jscs:sham","jscs:shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs:sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify:shim && npm run minify:sham","minify:shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify:sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.4.1","es5-shim":"^4.4.1","eslint":"^1.10.3","@ljharb/eslint-config":"^1.6.1","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.2","jscs":"^2.7.0","jshint":"^2.8.0","mocha":"^2.3.4","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.6.1","evalmd":"^0.0.16"},"gitHead":"2ab34d846693b4853205873e31cdc961281cb477","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.34.1","_shasum":"77bc6678791dd99ec2c30659eaeeb446186830b8","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"77bc6678791dd99ec2c30659eaeeb446186830b8","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.34.1.tgz","integrity":"sha512-Ev9Ak/YiB46zhlvMsmWPilOs08v0163zK+JbaMOMu2z3LJFKnY1F5ksgSvLwNoEgg2U+NO0xwiYVrxp+TUSqfQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBOs4jjMIwOs/uOxn+48rQPam2+op3KaNhHyxjMHqj24AiEAvE5w5u3gZ8t5UgbTFyiOv/BbY7QbScZw4MKOE2lTd1Q="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.34.2":{"name":"es6-shim","version":"0.34.2","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && evalmd *.md && npm run tests-only","tests-only":"npm run test:shim && npm run test:sham","test:shim":"mocha test/*.js test/*/*.js","test:sham":"mocha test-sham/*.js","test:native":"NO_ES6_SHIM=1 npm run tests-only","lint":"npm run lint:shim && npm run lint:sham","lint:shim":"npm run jshint:shim && npm run jscs:shim && npm run eslint:shim","lint:sham":"npm run jshint:sham && npm run jscs:sham && npm run eslint:sham","eslint":"npm run eslint:shim && npm run eslint:sham","eslint:shim":"eslint es6-shim.js test/*.js test/*/*.js","eslint:sham":"eslint es6-sham.js test-sham/*.js","jshint":"npm run jshint:shim && npm run jshint:sham","jshint:shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint:sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs:shim && npm run jscs:sham","jscs:shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs:sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify:shim && npm run minify:sham","minify:shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify:sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.4.1","es5-shim":"^4.4.1","eslint":"^1.10.3","@ljharb/eslint-config":"^1.6.1","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.2","jscs":"^2.8.0","jshint":"^2.9.1","mocha":"^2.3.4","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.6.1","evalmd":"^0.0.16"},"gitHead":"78e307c38eb1e907b354858e33d344914c6644d2","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.34.2","_shasum":"4e0119c60149d3c47c9d456671e9643fe7b68074","_from":".","_npmVersion":"3.5.3","_nodeVersion":"5.4.1","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"4e0119c60149d3c47c9d456671e9643fe7b68074","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.34.2.tgz","integrity":"sha512-OQEgQEeDQq2YQ59dC8l1BHAtdYvTG2jRry63bjn7KgbwqQYws5QBfU617k8MNpkIy+ELu39W+wy4daJ/grE5DQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBHu+7H1SOBWEKKUVJquMZOADHFnPvezfAhLxXUG4AWAAiEAhcT85RCcnKWJUEoBd9mrQvdHGI04bwciTMhVlvUJcXg="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"directories":{}},"0.34.3":{"name":"es6-shim","version":"0.34.3","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && evalmd *.md && npm run tests-only","tests-only":"npm run test:shim && npm run test:sham","test:shim":"mocha test/*.js test/*/*.js","test:sham":"mocha test-sham/*.js","test:native":"NO_ES6_SHIM=1 npm run tests-only","lint":"npm run lint:shim && npm run lint:sham","lint:shim":"npm run jshint:shim && npm run jscs:shim && npm run eslint:shim","lint:sham":"npm run jshint:sham && npm run jscs:sham && npm run eslint:sham","eslint":"npm run eslint:shim && npm run eslint:sham","eslint:shim":"eslint es6-shim.js test/*.js test/*/*.js","eslint:sham":"eslint es6-sham.js test-sham/*.js","jshint":"npm run jshint:shim && npm run jshint:sham","jshint:shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint:sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs:shim && npm run jscs:sham","jscs:shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs:sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify:shim && npm run minify:sham","minify:shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify:sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.5.0","es5-shim":"^4.5.2","eslint":"^1.10.3","@ljharb/eslint-config":"^1.6.1","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.2","jscs":"^2.9.0","jshint":"^2.9.1","mocha":"^2.4.5","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.6.1","evalmd":"^0.0.16"},"gitHead":"5f641326fe41fa85ccadb373a7e8c56c0acd0e2f","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.34.3","_shasum":"bb27ae388ef49eb186f621db94d56a3b3c0115b8","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"bb27ae388ef49eb186f621db94d56a3b3c0115b8","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.34.3.tgz","integrity":"sha512-iaA9h9BKoPWu8m1pXWRhc7B8oP2sIxjqh9Nh1PlXa5XiW0MBK1fVk4PRaJtHiHFifKfnw5dmnM9ALkA3RUz1uQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAeNRLW+au1ryvP7xF19hhxsHiuBxAZdw3blcFeqadA7AiEAoUjUxgUL5n61XzXaK/9e55f6u4N1HnBdOFLf3VzLttE="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/es6-shim-0.34.3.tgz_1455000412615_0.7510489954147488"},"directories":{}},"0.19.2":{"name":"es6-shim","version":"0.19.2","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run test-shim && npm run test-sham","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"jshint es6-shim.js test/*.js test/*/*.js && jscs es6-shim.js test/*.js test/*/*.js","lint-sham":"jshint es6-sham.js test-sham/*.js && jscs es6-sham.js test-sham/*.js","test-shim":"npm run lint-shim && mocha test/*.js test/*/*.js","test-sham":"npm run lint-sham && mocha test-sham/*.js","test-native":"jshint es6-shim.js && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.9.2","es5-shim":"~4.0.3","grunt":"~0.4.5","grunt-contrib-connect":"~0.8.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.3.2","jscs":"~1.7.3","jshint":"~2.5.6","mocha":"~2.0.1","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.15"},"gitHead":"be6164f51e18e795f3c99cca91a721787b553ebf","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.19.2","_shasum":"31fc7916cf07b28ab42f9865b84d8127adb54fcc","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"31fc7916cf07b28ab42f9865b84d8127adb54fcc","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.19.2.tgz","integrity":"sha512-KVhnfw+v7z2+YZZ19cfdfE9EkrEEfF6i3hP5C5lzimfik61xhNTZxVm0SoI/mP8zViQs7K+ykkkqAJWHf+7nMw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDBIr9lssrN3CfIkQHdkoMZyDN3cf9rtp6WTRaBM0n57gIhAOiQDRcpqvAeNXvVc6KVzF5pTY5W06PR58Ou9bz1PULj"}]},"directories":{}},"0.34.4":{"name":"es6-shim","version":"0.34.4","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run lint && evalmd *.md && npm run tests-only","tests-only":"npm run test:shim && npm run test:sham","test:shim":"mocha test/*.js test/*/*.js","test:sham":"mocha test-sham/*.js","test:native":"NO_ES6_SHIM=1 npm run tests-only","lint":"npm run lint:shim && npm run lint:sham","lint:shim":"npm run jshint:shim && npm run jscs:shim && npm run eslint:shim","lint:sham":"npm run jshint:sham && npm run jscs:sham && npm run eslint:sham","eslint":"npm run eslint:shim && npm run eslint:sham","eslint:shim":"eslint es6-shim.js test/*.js test/*/*.js","eslint:sham":"eslint es6-sham.js test-sham/*.js","jshint":"npm run jshint:shim && npm run jshint:sham","jshint:shim":"jshint es6-shim.js test/*.js test/*/*.js","jshint:sham":"jshint es6-sham.js test-sham/*.js","jscs":"npm run jscs:shim && npm run jscs:sham","jscs:shim":"jscs es6-shim.js test/*.js test/*/*.js","jscs:sham":"jscs es6-sham.js test-sham/*.js","minify":"npm run minify:shim && npm run minify:sham","minify:shim":"uglifyjs es6-shim.js --keep-fnames --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify:sham":"uglifyjs es6-sham.js --keep-fnames --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce-connect":"curl -L https://gist.githubusercontent.com/henrikhodne/9322897/raw/sauce-connect.sh | bash && export TRAVIS_SAUCE_CONNECT=true","sauce":"npm run sauce-connect && grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/10.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"^3.5.0","es5-shim":"^4.5.2","eslint":"^1.10.3","@ljharb/eslint-config":"^1.6.1","grunt":"^0.4.5","grunt-contrib-connect":"^0.11.2","grunt-contrib-watch":"^0.6.1","grunt-saucelabs":"^8.6.2","jscs":"^2.9.0","jshint":"^2.9.1","mocha":"^2.4.5","promises-aplus-tests":"^2.1.1","promises-es6-tests":"^0.5.0","uglify-js":"^2.6.1","evalmd":"^0.0.16"},"gitHead":"9439339247a2d9dbaf602bc055d2a5b7c409559f","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.34.4","_shasum":"b2f34d85ea0fd577fb2a5016cb978d44c5049969","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"b2f34d85ea0fd577fb2a5016cb978d44c5049969","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.34.4.tgz","integrity":"sha512-otv6l88RBWz7sEO5d+xQLRYYlbfml6Jrnm4XnjysrXJFuOvLYu7ejpU3YLOKW+zOTO3n+A+hPw5avia5UXLN9Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBrwK9pPTfBG+eJi4OMlLTiStfN5Up4zMCRLq+UI6pkSAiEAzGPQUMWTqNeVG4Ff698Ev2SQQPHw3cD2hsNqAvhsNLo="}]},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/es6-shim-0.34.4.tgz_1455055045052_0.8445700975134969"},"directories":{}},"0.19.1":{"name":"es6-shim","version":"0.19.1","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run test-shim && npm run test-sham","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"jshint es6-shim.js","lint-sham":"jshint es6-sham.js","test-shim":"npm run lint-shim && mocha test/*.js test/*/*.js","test-sham":"npm run lint-sham && mocha test-sham/*.js","test-native":"jshint es6-shim.js && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.9.2","es5-shim":"~4.0.3","grunt":"~0.4.5","grunt-contrib-connect":"~0.8.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.3.2","jshint":"~2.5.6","mocha":"~1.21.5","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.15"},"gitHead":"6ed63dadb95ff1ba2a85e3e9a7e9d90f8fa1ab8f","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.19.1","_shasum":"18bd204bc1dedcf63a8722f5e8087418a0f56e6a","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"18bd204bc1dedcf63a8722f5e8087418a0f56e6a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.19.1.tgz","integrity":"sha512-34VG9anNmBkSzSM9FV8Bp/fxmz2MUGoSa3RMAib3dI3sFYc0dYZ9eDEzWVJokxNTUZAwWcVmJGMv4pb5ACAU5A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDEvmEHYlzdVF74kSXaoFWK0rGmA/xS7UPdk5ozneQh/wIhAN70aADJa+pC31cOzTKzlKG3fR7FPqAomqcY8qb37UAv"}]},"directories":{}},"0.19.0":{"name":"es6-shim","version":"0.19.0","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run test-shim && npm run test-sham","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"jshint es6-shim.js","lint-sham":"jshint es6-sham.js","test-shim":"npm run lint-shim && mocha test/*.js test/*/*.js","test-sham":"npm run lint-sham && mocha test-sham/*.js","test-native":"jshint es6-shim.js && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.9.2","es5-shim":"~4.0.3","grunt":"~0.4.5","grunt-contrib-connect":"~0.8.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.3.2","jshint":"~2.5.6","mocha":"~1.21.4","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.15"},"gitHead":"59ba8995abb21e981ca451512d4fd9a1369e365b","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.19.0","_shasum":"9cc01e9d743b40fc85a993ba0fe3f909391bb9cb","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"9cc01e9d743b40fc85a993ba0fe3f909391bb9cb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.19.0.tgz","integrity":"sha512-5z7tQOY/DCirwOhOopj/K7EGk70pDKzKoLuI2Hj9vjZHitcjqgnOl+5DPwmFFwevKBsGG/jdfflBFzs9pRUCcw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGFsDOC31MiahFEwp/XYLY4ksgJQDkXhW8s4NSLCjsC4AiBOc0/ReQf2UFpeMJd+I1uA7Pe0YWDgbrAO9ftdm9Uv5w=="}]},"directories":{}},"0.20.0":{"name":"es6-shim","version":"0.20.0","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run test-shim && npm run test-sham","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"jshint es6-shim.js test/*.js test/*/*.js && jscs es6-shim.js test/*.js test/*/*.js","lint-sham":"jshint es6-sham.js test-sham/*.js && jscs es6-sham.js test-sham/*.js","test-shim":"npm run lint-shim && mocha test/*.js test/*/*.js","test-sham":"npm run lint-sham && mocha test-sham/*.js","test-native":"jshint es6-shim.js && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.9.2","es5-shim":"~4.0.3","grunt":"~0.4.5","grunt-contrib-connect":"~0.8.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.3.2","jscs":"~1.7.3","jshint":"~2.5.6","mocha":"~2.0.1","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.15"},"gitHead":"d8ce5cefa7f99562922ba1fa71d47084d032d5b5","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.20.0","_shasum":"71c9592872e6b88dc9ccc8220ca9aef40db8aa06","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"71c9592872e6b88dc9ccc8220ca9aef40db8aa06","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.20.0.tgz","integrity":"sha512-El41otJptkvYJqejh9HuBdgyEDUnfM/qamkzb9Wtr2z+A9e18cq/Tin7lpSRMxoeb3tqxPTDJQsDbE7ynn6XVw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA9BDUP+vAdNGqhnI0CWmCzeDdaA8CfB3/zz5jQXff4nAiBRhHDnx46pa6WzV7o0gGZ1R+BqeK8NHY+h3d+LhrwnqQ=="}]},"directories":{}},"0.20.1":{"name":"es6-shim","version":"0.20.1","author":{"name":"Paul Miller","url":"http://paulmillr.com"},"description":"ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines","keywords":["ecmascript","harmony","es6","shim","promise","promises","setPrototypeOf","map","set","__proto__"],"homepage":"https://github.com/paulmillr/es6-shim/","license":"MIT","repository":{"type":"git","url":"git://github.com/paulmillr/es6-shim.git"},"main":"es6-shim","scripts":{"test":"npm run test-shim && npm run test-sham","lint":"npm run lint-shim && npm run lint-sham","lint-shim":"jshint es6-shim.js test/*.js test/*/*.js && jscs es6-shim.js test/*.js test/*/*.js","lint-sham":"jshint es6-sham.js test-sham/*.js && jscs es6-sham.js test-sham/*.js","test-shim":"npm run lint-shim && mocha test/*.js test/*/*.js","test-sham":"npm run lint-sham && mocha test-sham/*.js","test-native":"jshint es6-shim.js && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js","minify":"npm run minify-shim && npm run minify-sham","minify-shim":"uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js","minify-sham":"uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js","sauce":"grunt sauce"},"testling":{"html":"testling.html","browsers":["iexplore/9.0..latest","firefox/10.0","firefox/17.0","firefox/22.0..latest","firefox/nightly","chrome/25.0..latest","chrome/canary","safari/5.0.5..latest","ipad/6.0..latest","iphone/6.0..latest","opera/12.0..latest","android-browser/4.2..latest"]},"dependencies":{},"devDependencies":{"chai":"~1.9.2","es5-shim":"~4.0.3","grunt":"~0.4.5","grunt-contrib-connect":"~0.8.0","grunt-contrib-watch":"~0.6.1","grunt-saucelabs":"~8.3.2","jscs":"~1.7.3","jshint":"~2.5.6","mocha":"~2.0.1","promises-aplus-tests":"~2.1.0","promises-es6-tests":"~0.5.0","uglify-js":"~2.4.15"},"gitHead":"c70e0007f247e2db6c1bd967c1d7ed9809d2c8bf","bugs":{"url":"https://github.com/paulmillr/es6-shim/issues"},"_id":"es6-shim@0.20.1","_shasum":"9f86fcece9b9c9af3133b3c9db795e44a20499a4","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"paulmillr","email":"paul@paulmillr.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"9f86fcece9b9c9af3133b3c9db795e44a20499a4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/es6-shim/-/es6-shim-0.20.1.tgz","integrity":"sha512-DddaJI4V87Qo3PPkmY6cs/sw/9jD3GXAF56wDtQM0DnAqAqDbdz23j2mhatog9gFuV/KibocpjxvzGtI8s2MHQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDedSJABQNU0M9bD+iMOeIIp2/tfI2JlvKk+iqnDVw6ywIhAOkNV0ZeaHhVUASBzzrH+DQk5D79DUfk4rYy2rB6VRFZ"}]},"directories":{}}},"name":"es6-shim","time":{"0.6.0":"2013-01-15T13:01:28.587Z","0.4.0":"2012-02-08T05:59:48.613Z","0.4.1":"2012-05-11T05:22:30.348Z","0.8.0":"2013-06-08T02:22:15.590Z","0.20.2":"2014-10-29T06:56:16.300Z","0.22.0":"2014-12-12T08:55:16.924Z","0.20.3":"2014-11-19T08:34:35.663Z","0.22.1":"2014-12-13T09:59:33.174Z","0.20.4":"2014-11-20T08:52:31.148Z","0.22.2":"2015-01-05T05:04:29.498Z","0.24.0":"2015-02-05T09:52:36.551Z","0.2.0":"2011-12-25T03:53:34.340Z","0.26.0":"2015-02-24T21:07:38.284Z","0.2.1":"2012-01-07T15:14:46.682Z","0.26.1":"2015-02-25T18:31:26.018Z","0.28.1":"2015-04-12T21:11:42.805Z","0.31.0":"2015-05-01T07:47:29.508Z","0.31.1":"2015-05-07T17:49:45.600Z","0.10.0":"2014-03-01T19:29:28.828Z","modified":"2025-05-07T15:16:21.867Z","0.18.0":"2014-09-07T02:05:11.244Z","0.33.8":"2015-10-23T19:02:48.158Z","0.33.11":"2015-11-10T02:09:50.756Z","0.35.6":"2020-10-15T06:50:05.743Z","0.33.9":"2015-10-29T09:00:30.824Z","0.33.12":"2015-11-11T21:02:17.767Z","0.35.7":"2022-12-24T23:27:15.116Z","0.16.0":"2014-08-07T02:39:15.238Z","0.33.13":"2015-11-13T07:38:35.045Z","0.35.8":"2023-03-23T20:03:31.763Z","0.14.0":"2014-07-21T02:33:06.677Z","created":"2011-12-25T00:36:25.887Z","0.12.0":"2014-06-04T18:02:53.728Z","0.10.1":"2014-03-14T04:37:00.882Z","0.31.2":"2015-05-09T22:23:18.942Z","0.33.0":"2015-07-31T00:04:52.272Z","0.31.3":"2015-06-02T21:47:29.530Z","0.33.1":"2015-08-20T23:56:21.589Z","0.33.2":"2015-08-26T22:09:46.137Z","0.35.0":"2016-03-01T05:41:31.382Z","0.33.3":"2015-08-31T06:01:39.481Z","0.35.1":"2016-05-12T08:21:26.587Z","0.33.4":"2015-09-28T04:59:48.655Z","0.35.2":"2016-12-04T05:40:20.143Z","0.33.5":"2015-09-28T19:35:47.893Z","0.35.3":"2017-01-24T06:49:48.020Z","0.33.6":"2015-09-29T07:21:33.967Z","0.35.4":"2018-10-30T01:21:37.770Z","0.33.7":"2015-10-23T09:29:38.888Z","0.35.5":"2019-03-08T06:41:36.637Z","0.21.0":"2014-11-21T08:26:46.967Z","0.9.3":"2014-02-06T01:42:46.500Z","0.33.10":"2015-11-02T08:54:56.432Z","0.5.1":"2012-06-14T19:21:28.048Z","0.5.2":"2012-06-17T03:45:36.871Z","0.7.0":"2013-04-02T20:46:16.478Z","0.3.1":"2012-01-29T22:42:09.433Z","0.5.0":"2012-06-12T23:34:44.423Z","0.9.1":"2013-10-28T19:48:39.441Z","0.9.2":"2013-12-18T05:06:06.987Z","0.5.3":"2012-09-02T12:00:51.048Z","0.9.0":"2013-08-30T17:14:56.713Z","0.21.1":"2014-12-05T02:27:27.049Z","0.23.0":"2015-01-26T23:32:36.641Z","0.25.0":"2015-02-16T21:04:37.820Z","0.25.1":"2015-02-18T08:20:09.178Z","0.3.0":"2012-01-27T18:42:34.108Z","0.25.2":"2015-02-18T19:20:08.337Z","0.27.0":"2015-02-26T08:18:16.382Z","0.25.3":"2015-02-22T10:59:39.842Z","0.27.1":"2015-03-05T09:35:09.748Z","0.1.0":"2011-12-25T00:36:28.160Z","0.29.0":"2015-04-26T19:50:47.769Z","0.30.0":"2015-04-27T04:28:35.303Z","0.32.0":"2015-06-07T17:45:18.306Z","0.17.0":"2014-08-31T19:21:40.923Z","0.15.1":"2014-08-06T01:41:40.250Z","0.15.0":"2014-07-31T20:01:16.457Z","0.13.0":"2014-06-12T00:43:01.794Z","0.11.1":"2014-06-02T16:47:10.790Z","0.11.0":"2014-05-12T02:05:19.069Z","0.32.1":"2015-06-14T03:52:53.699Z","0.32.2":"2015-06-17T19:16:22.388Z","0.34.0":"2015-12-15T18:37:39.040Z","0.34.1":"2016-01-05T18:09:23.195Z","0.34.2":"2016-01-23T00:04:04.719Z","0.34.3":"2016-02-09T06:46:53.659Z","0.19.2":"2014-10-26T02:20:48.428Z","0.34.4":"2016-02-09T21:57:28.534Z","0.19.1":"2014-10-20T20:03:38.754Z","0.19.0":"2014-10-20T20:03:33.749Z","0.20.0":"2014-10-27T04:49:47.130Z","0.20.1":"2014-10-28T06:31:50.782Z"},"readmeFilename":"README.md","homepage":"https://github.com/paulmillr/es6-shim/"}