{"_id":"mercury","_rev":"134-e4c7e839ca14171c4cb4b08e87b92c12","name":"mercury","time":{"modified":"2023-04-12T04:22:20.774Z","created":"2011-07-01T14:32:48.851Z","0.2.0":"2011-07-01T14:32:50.341Z","0.1.0":"2014-04-01T06:21:03.001Z","1.0.0":"2014-04-01T08:17:20.554Z","1.0.1":"2014-04-01T08:17:55.558Z","1.0.2":"2014-04-01T08:30:03.345Z","1.0.3":"2014-04-01T09:00:48.699Z","2.0.0":"2014-04-03T06:45:42.759Z","2.1.0":"2014-04-05T17:06:47.661Z","2.1.1":"2014-04-11T07:38:29.159Z","2.1.2":"2014-04-11T07:50:28.398Z","2.1.3":"2014-04-11T17:49:50.854Z","3.0.0":"2014-04-16T08:49:20.428Z","3.0.1":"2014-04-16T09:27:39.536Z","3.0.2":"2014-04-16T09:28:38.119Z","3.1.0":"2014-04-17T07:15:22.075Z","3.1.1":"2014-04-18T05:32:04.610Z","3.1.2":"2014-04-18T08:14:19.173Z","3.1.3":"2014-04-18T08:55:34.862Z","3.1.4":"2014-04-18T09:06:02.464Z","3.1.5":"2014-04-18T19:43:06.844Z","3.1.6":"2014-04-19T02:23:20.715Z","3.1.7":"2014-04-24T10:16:30.497Z","3.1.8":"2014-04-24T22:18:23.176Z","3.2.0":"2014-04-25T08:24:19.809Z","3.2.1":"2014-04-25T09:02:23.307Z","3.2.2":"2014-05-21T18:18:54.551Z","3.2.3":"2014-05-28T02:16:48.078Z","3.2.4":"2014-05-31T20:04:03.135Z","4.0.0":"2014-06-02T06:07:43.736Z","4.1.0":"2014-06-02T08:36:59.395Z","4.2.0":"2014-06-03T19:51:36.166Z","4.3.0":"2014-06-06T17:39:11.171Z","5.0.1":"2014-06-07T04:03:46.749Z","5.0.2":"2014-06-07T20:02:20.327Z","5.1.0":"2014-07-06T18:46:58.852Z","5.2.0":"2014-07-06T18:47:58.419Z","5.2.1":"2014-07-06T18:50:07.530Z","6.0.0":"2014-07-23T06:48:08.360Z","6.0.1":"2014-07-23T06:56:23.385Z","6.0.2":"2014-08-30T05:13:35.196Z","6.1.0":"2014-09-18T14:50:42.454Z","6.1.1":"2014-09-26T17:17:06.167Z","7.0.0":"2014-09-28T21:58:01.678Z","8.0.0":"2014-09-29T19:24:43.693Z","9.1.0":"2014-11-17T21:00:56.932Z","10.0.0":"2014-11-24T05:36:15.656Z","10.0.1":"2014-11-24T19:10:55.026Z","10.1.0":"2014-12-03T06:06:40.049Z","11.0.0":"2014-12-08T00:37:05.020Z","11.1.0":"2014-12-22T06:50:14.045Z","12.0.0":"2014-12-25T18:34:28.338Z","13.0.0":"2015-02-05T07:34:01.250Z","14.0.0":"2015-02-05T19:52:30.040Z","14.1.0":"2016-02-02T22:04:17.650Z","14.2.0":"2020-06-16T08:21:58.756Z"},"maintainers":[{"name":"mattesch","email":"matt@mattesch.info"},{"name":"raynos","email":"raynos2@gmail.com"}],"dist-tags":{"latest":"14.2.0"},"description":"A truly modular frontend framework","readme":"# mercury\n\n# Deprecated: Not actively being worked on.\n\nInstead [`tonic`](https://github.com/optoolco/tonic) and https://tonic.technology/ are actively being worked on.\n\n`mercury` has some interesting ideas but they are not very practical at scale.\n`tonic` is a lightweigth component system on top of web components that leverages\nthe browsers HTML parser for the heavy lifting instead of `virtual-dom`.\n\nIt comes with a set of [`components`](https://github.com/optoolco/components) which help with building\napps more quickly by having some re-usable components out of the box.\n\n## Description\n\nA truly modular frontend framework\n\nTo understand what I mean by truly modular just [read the source](https://github.com/Raynos/mercury/blob/master/index.js)\n\n\n## Examples\n\n### Hello world\n\n```js\n'use strict';\n\nvar document = require('global/document');\nvar hg = require('mercury');\nvar h = require('mercury').h;\n\nfunction App() {\n    return hg.state({\n        value: hg.value(0),\n        channels: {\n            clicks: incrementCounter\n        }\n    });\n}\n\nfunction incrementCounter(state) {\n    state.value.set(state.value() + 1);\n}\n\nApp.render = function render(state) {\n    return h('div.counter', [\n        'The state ', h('code', 'clickCount'),\n        ' has value: ' + state.value + '.', h('input.button', {\n            type: 'button',\n            value: 'Click me!',\n            'ev-click': hg.send(state.channels.clicks)\n        })\n    ]);\n};\n\nhg.app(document.body, App(), App.render);\n```\n\n### Basic Examples\n\n - [count](examples/count.js)\n - [shared-state](examples/shared-state.js)\n - [bmi-counter](examples/bmi-counter.js)\n - [canvas](examples/canvas.js)\n - [async-state](examples/async-state.js)\n - [real-dom](examples/real-dom.js)\n\n### Intermediate Examples\n\n - [TodoMVC](examples/todomvc)\n - [markdown editor](examples/markdown)\n - [number-input](examples/number-input)\n - [serverside rendering](examples/server-rendering)\n - [login form](examples/login-form)\n - [geometry](examples/geometry)\n - [2048 (wip)](https://github.com/Raynos/mercury/tree/2048-wip/examples/2048)\n - [github issues (wip)](https://github.com/Raynos/mercury/tree/github-issues/examples/github-issues-viewer)\n - [hot reloading with browserify or webpack](examples/hot-reload)\n\n### Unidirectional examples\n\nThe following examples demonstrate how you can mix & match\n  mercury with other frameworks. This is possible because mercury\n  is fundamentally modular.\n\n**Disclaimer:** The following are neither \"good\" nor \"bad\" ideas.\n  Your milage may vary on using these ideas\n\n - [Backbone + Mercury](examples/unidirectional/backbone)\n - [Immutable + Mercury](examples/unidirectional/immutable)\n - [JSX + Mercury](examples/unidirectional/jsx)\n\n## Motivation\n\n### Mercury vs React\n\n`mercury` is similar to react, however it's larger in scope,\n  it is better compared against [`om`][om] or\n  [`quiescent`][quiescent]\n\n - mercury leverages [`virtual-dom`][virtual-dom] which uses\n    an immutable vdom structure\n - mercury comes with [`observ-struct`][observ-struct] which uses\n    immutable data for your state atom\n - mercury is truly modular, you can trivially swap out\n    subsets of it for other modules\n - mercury source code itself is maintainable, the modules it\n    uses are all small, well tested and well documented.\n    You should not be afraid to use mercury in production\n    as it's easy to maintain & fix.\n - mercury encourages zero dom manipulation in your application code. As far as your application is concerned\n    elements do not exist. This means you don't need to reference DOM elements when rendering or when handling\n    events\n - mercury is compact, it's 11kb min.gzip.js, that's smaller than backbone.\n - mercury strongly encourages FRP techniques and discourages local mutable state.\n - mercury is highly performant, it's faster than React / Om / ember+htmlbars in multiple benchmarks\n    [TodoMVC benchmark](http://matt-esch.github.io/mercury-perf/)\\\n    [animation benchmark](http://jsfiddle.net/sVPQL/11/)\n    [TodoMVC benchmark source](https://github.com/matt-esch/mercury-perf)\n - mercury comes with FP features like time-travel / easy undo out of the box.\n - mercury is lean, it's an weekend's read at 2.5kloc. (virtual-dom is 1.1kloc, an evening's read.)\n    compared to react which is almost 20kloc (a month's read)\n\n## Modules\n\n`mercury` is a small glue layer that composes a set of modules\n  that solves a subset of the frontend problem.\n\nIf `mercury` is not ideal for your needs, you should check out\n  the individual modules and see if you can re-use something.\n\nAlternatively if the default set of modules in `mercury` doesn't\n  work for you, you can just require other modules. It's possible\n  to for example, swap out [`vtree`][vtree] with\n  [`react`][react] or swap out [`observ-struct`][observ-struct]\n  with [`backbone`][backbone]\n\nSee [the modules README](docs/modules/README.md) for more\n  information.\n\n## Documentation\n\nSee the [documentation folder](docs)\n\n### FAQ\n\nSee the [FAQ document](docs/faq.md)\n\n### API\n\nWIP. In lieu of documentation please see examples :(\n\n## Installation\n\n`npm install mercury`\n\n## Development\n\nIf you want to develop on `mercury` you can clone the code\n\n```sh\ngit clone git@github.com:Raynos/mercury\ncd mercury\nnpm install\nnpm test\n```\n\n### npm run tasks\n\n - `npm test` runs the tests\n - `npm run jshint` will run jshint on the code\n - `npm run disc` will open discify (if globally installed)\n - `npm run build` will build the html assets for gh-pages\n - `npm run examples` will start a HTTP server that shows examples\n - `npm run dist` will create a distributed version of mercury\n - `npm run modules-docs` will (re)generate docs of mercury modules\n\n## Inspirations\n\nA lot of the philosophy and design of `mercury` is inspired by\n  the following:\n\n - [`react`][react] for documenting and explaining the concept\n    of a virtual DOM and its diffing algorithm\n - [`om`][om] for explaining the concept and benefits of\n    immutable state and time travel.\n - [`elm`][elm] for explaining the concept of FRP and having a\n    reference implementation of FRP in JavaScript. I wrote a\n    pre-cursor to `mercury` that was literally a\n    re-implementation of [`elm`][elm] in javascript\n    ([`graphics`][graphics])\n - [`reflex`][reflex] for demonstrating the techniques used to\n    implement dynamic inputs.\n\n## Contributors\n\n - Raynos\n - Matt-Esch\n - neonstalwart\n - parshap\n - nrw\n - kumavis\n\n## MIT Licenced\n\n  [1]: https://secure.travis-ci.org/Raynos/mercury.svg\n  [2]: https://travis-ci.org/Raynos/mercury\n  [3]: https://badge.fury.io/js/mercury.svg\n  [4]: https://badge.fury.io/js/mercury\n  [5]: http://img.shields.io/coveralls/Raynos/mercury.svg\n  [6]: https://coveralls.io/r/Raynos/mercury\n  [7]: https://gemnasium.com/Raynos/mercury.png\n  [8]: https://gemnasium.com/Raynos/mercury\n  [9]: https://david-dm.org/Raynos/mercury.svg\n  [10]: https://david-dm.org/Raynos/mercury\n  [11]: https://img.shields.io/badge/GITTER-join%20chat-green.svg\n  [12]: https://gitter.im/Raynos/mercury\n  [13]: https://badge-size.herokuapp.com/Raynos/mercury/master/dist/mercury.js\n  [14]: https://badge-size.herokuapp.com/Raynos/mercury/master/dist/mercury.js\n\n  [graphics]: https://github.com/Raynos/graphics\n  [elm]: https://github.com/elm-lang/Elm\n  [react]: https://github.com/facebook/react\n  [om]: https://github.com/swannodette/om\n  [reflex]: https://github.com/Gozala/reflex\n  [backbone]: https://github.com/jashkenas/backbone\n  [quiescent]: https://github.com/levand/quiescent\n  [virtual-dom]: https://github.com/Matt-Esch/virtual-dom\n  [vtree]: https://github.com/Matt-Esch/virtual-dom/tree/master/vtree\n  [vdom]: https://github.com/Matt-Esch/virtual-dom/tree/master/vdom\n  [vdom-create-element]: https://github.com/Matt-Esch/virtual-dom/blob/master/vdom/create-element.js\n  [vdom-patch]: https://github.com/Matt-Esch/virtual-dom/blob/master/vdom/patch.js\n  [min-document]: https://github.com/Raynos/min-document\n  [virtual-hyperscript]: https://github.com/Matt-Esch/virtual-dom/tree/master/virtual-hyperscript\n  [main-loop]: https://github.com/Raynos/main-loop\n  [vdom-thunk]: https://github.com/Raynos/vdom-thunk\n  [observ]: https://github.com/Raynos/observ\n  [observ-computed]: https://github.com/Raynos/observ/blob/master/computed.js\n  [observ-struct]: https://github.com/Raynos/observ-struct\n  [observ-array]: https://github.com/Raynos/observ-array\n  [geval]: https://github.com/Raynos/geval\n  [dom-delegator]: https://github.com/Raynos/dom-delegator\n  [value-event]: https://github.com/Raynos/value-event\n","versions":{"0.1.0":{"name":"mercury","version":"0.1.0","description":"BLARGH","keywords":[],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{},"devDependencies":{"tape":"~1.0.2"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"test":"node ./test/index.js","start":"node ./index.js","watch":"nodemon -w ./index.js index.js","travis-test":"istanbul cover ./test/index.js && ((cat coverage/lcov.info | coveralls) || exit 0)","cover":"istanbul cover --report none --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","test-browser":"testem-browser ./test/browser/index.js","testem":"testem-both -b=./test/browser/index.js"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@0.1.0","dist":{"shasum":"41fa2ce2914c4e08ddf055754aa5f83db52a35c8","tarball":"https://registry.npmjs.org/mercury/-/mercury-0.1.0.tgz","integrity":"sha512-7Yr2SE5k3wVc6LHyTIktFc9YuHBiwH1Ve9GZ+AJkJ4oF5NKTz+5EpSMzimKnZSainh5fErKT8ngJ6m9sziErXA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEU+06ffFCgsr4SsZlG7YYHxYfcEnJmDn0TjZMhULym3AiEAz2JIcnD4uM507xfpU3mE0gabBOX7FDt+bCfk+OnL14M="}]},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"directories":{}},"1.0.0":{"name":"mercury","version":"1.0.0","description":"BLARGH","keywords":[],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^6.2.1","event-sinks":"^2.0.1","geval":"^2.0.3","hash-router":"^0.3.4","main-loop":"^1.0.1","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^1.1.1","value-event":"^0.6.1","vdom-thunk":"^1.1.0","virtual-dom":"git://github.com/Matt-Esch/virtual-dom"},"devDependencies":{"browserify":"^3.38.0","indexhtmlify":"^1.1.1","tape":"~1.0.2"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"test":"node ./test/index.js","count":"browserify examples/count.js | indexhtmlify > examples/count.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@1.0.0","dist":{"shasum":"ec84c3a79f79c446b543c33f4c1210d6a88bf534","tarball":"https://registry.npmjs.org/mercury/-/mercury-1.0.0.tgz","integrity":"sha512-10WLDERB5L4r5vxVWKr2zpAmQauo7wedNLugUeIP9jwFUlPNDvnWPxfJWavq9kVm/IgEjcmLYTogfaCGR/IE7w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBq8ZHyfzMA3+z/zoRn9E2U2oCDxFQnTheWDjpw6QL4YAiAfLYR9ne2NyPQUcAXfeyYnODbAg1u6YuRr/bBpu4geHA=="}]},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"directories":{}},"1.0.1":{"name":"mercury","version":"1.0.1","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^6.2.1","event-sinks":"^2.0.1","geval":"^2.0.3","hash-router":"^0.3.4","main-loop":"^1.0.1","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^1.1.1","value-event":"^0.6.1","vdom-thunk":"^1.1.0","virtual-dom":"git://github.com/Matt-Esch/virtual-dom"},"devDependencies":{"browserify":"^3.38.0","indexhtmlify":"^1.1.1","tape":"~1.0.2"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"test":"node ./test/index.js","count":"browserify examples/count.js | indexhtmlify > examples/count.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@1.0.1","dist":{"shasum":"6d3312cf99230dd4d8dd831a9b84e28ceee718f1","tarball":"https://registry.npmjs.org/mercury/-/mercury-1.0.1.tgz","integrity":"sha512-rYVMUk5iE64XaXM7fwHh5ngeSAr3asYwIptuNkR6TZ2l4DgflN0g06Qm71PQ4N511l2rLC92yg+LKKTtQPxYrg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHr6Mk+oGSsT7OV06SA7gXqFo57/4/wAdJ7GrlbuNJE8AiEA4v00aicjBynVIA474c+dE08wXOJ/oin3j9pz1mUWRGI="}]},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"directories":{}},"1.0.2":{"name":"mercury","version":"1.0.2","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^6.2.1","event-sinks":"^2.0.1","geval":"^2.0.3","hash-router":"^0.3.4","main-loop":"^1.0.1","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^1.1.1","value-event":"^0.6.1","vdom-thunk":"^1.1.0","virtual-dom":"git://github.com/Matt-Esch/virtual-dom"},"devDependencies":{"browserify":"^3.38.0","indexhtmlify":"^1.1.1","tape":"~1.0.2"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"test":"node ./test/index.js","count":"browserify examples/count.js | indexhtmlify > examples/count.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@1.0.2","dist":{"shasum":"42ce1d911b840d2115a47d450a88984ac9525e92","tarball":"https://registry.npmjs.org/mercury/-/mercury-1.0.2.tgz","integrity":"sha512-hBMO809+r/n+AXGUHljSvq+J5GnAv3h7UY+F+cA2GhC0oy9TPbPAEZd9kvN7PDg3s0PtzVqopNs6P9VqCoNQuw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDfKhMERJ3jACh3rCpcud6jd4eXsXk+/1upk1jkWrKX9wIgf4Zbkb8L4HAibSX201qrkSY2ZxZ1Kh37jbBaCLF6b7o="}]},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"directories":{}},"1.0.3":{"name":"mercury","version":"1.0.3","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^6.2.1","event-sinks":"^2.0.1","geval":"^2.0.3","hash-router":"^0.3.4","main-loop":"^1.0.1","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^1.1.1","value-event":"^0.6.1","vdom-thunk":"^1.1.0","virtual-dom":"git://github.com/Matt-Esch/virtual-dom"},"devDependencies":{"browserify":"^3.38.0","indexhtmlify":"^1.1.1","tape":"~1.0.2"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"test":"node ./test/index.js","count":"browserify examples/count.js | indexhtmlify > examples/count.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@1.0.3","dist":{"shasum":"1fdb7f0149c1e5210c7c975f79ea1ccf42d216e5","tarball":"https://registry.npmjs.org/mercury/-/mercury-1.0.3.tgz","integrity":"sha512-M04ZWgVRo5WMg/ykJ2vtHqd213yjXUJCqpp3D3Hq5D4Vef2sn6WBjjJ0I+pSb3wtbPblLQn5u6rp693V5/wzYA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIArbGPLPIDewZIVNov4J0wh5MkP0d967lH2WqU3Svv31AiEAkeOez+kFDwZyYBu8I98/665ONaNciDlsz942KZayMTg="}]},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"directories":{}},"2.0.0":{"name":"mercury","version":"2.0.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^6.2.1","event-sinks":"^2.0.1","main-loop":"^1.0.1","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^1.1.1","value-event":"^0.6.1","vdom-thunk":"^1.1.0","virtual-dom":"git://github.com/Matt-Esch/virtual-dom"},"devDependencies":{"browserify":"^3.38.0","cuid":"^1.2.1","geval":"^2.0.3","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","tape":"~1.0.2","xtend":"^2.2.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"test":"node ./test/index.js","count":"browserify examples/count.js | indexhtmlify > examples/count.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@2.0.0","dist":{"shasum":"15a8c9fd5ffa677d6a5fc0549de66960fa73713c","tarball":"https://registry.npmjs.org/mercury/-/mercury-2.0.0.tgz","integrity":"sha512-OPnaauavG0GxSDkeQ1Idi0NVN1hC3TbCfLyXrIsBftMpMwjqYHd4DHZTlivESO9Tj3GyN8wPwxkgbkJHvVgnjQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEdG2W1o1iAdGhPZS8GoWjNjlWk/CsV8NeumRJJXJ9uYAiEA29eCc6K+kAayuQemyJO0eKm2b2Jy9hTXsY3xZaE4LYk="}]},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"directories":{}},"2.1.0":{"name":"mercury","version":"2.1.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^6.2.1","event-sinks":"^2.0.1","main-loop":"^1.1.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^1.1.1","value-event":"^1.0.0","vdom-thunk":"^1.1.0","virtual-dom":"git://github.com/Matt-Esch/virtual-dom#26cbbb2e37601619493adaaf7a165af3d3101925"},"devDependencies":{"browserify":"^3.38.0","cuid":"^1.2.1","geval":"^2.0.3","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","tape":"~1.0.2","xtend":"^2.2.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"test":"node ./test/index.js","disc":"browserify index.js --full-paths | discify > disc.html && open disc.html","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@2.1.0","dist":{"shasum":"4d0f349aa30bc192ca46e081dce8d4941f6713e4","tarball":"https://registry.npmjs.org/mercury/-/mercury-2.1.0.tgz","integrity":"sha512-QYATfBXzLCkzA82FMe0AUCwRzww8eJ3WWYxdZwxMpOuHvqaFkzZgGXa+ui64zILK/S6TdSKKneIGlgpeFJOGNA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCwEpifIZ5ooVcsnD6bkAKs3iqOwU43vK1wXEMLLiIXigIhAJ8YUU479RveH+MtoCQ5fxD6CWgxW0Mmac99vtftGko0"}]},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"directories":{}},"2.1.1":{"name":"mercury","version":"2.1.1","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^6.2.1","event-sinks":"^2.0.1","main-loop":"^1.2.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^1.1.1","value-event":"^1.0.0","vdom-thunk":"^1.2.0","virtual-dom":"git://github.com/Raynos/virtual-dom#0.0.4-hooks","virtual-hyperscript":"^1.1.1"},"devDependencies":{"browserify":"^3.38.0","cuid":"^1.2.1","geval":"^2.0.3","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","tape":"~1.0.2","xtend":"^2.2.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && open disc.html","test":"node ./test/index.js","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc && npm run field-reset","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","field-reset":"node bin/browserify-editor.js examples/field-reset.js | indexhtmlify > examples/field-reset.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@2.1.1","dist":{"shasum":"1a55862cea7348cccc67d59b45136b9a765bc3e0","tarball":"https://registry.npmjs.org/mercury/-/mercury-2.1.1.tgz","integrity":"sha512-vk9sTNkgTlKBsqfsnaQ1cVczDStcKm5njduZ7OPnc0jsdkkCp3MSNvwdCR7L+0u3a0W/q9T4zVhjr8nlDpOr6Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC3MoUnhckNABtOMEN82hFTwcoT/2MOk4hoXxGxfkk2ZwIgFWk4htqiiphIOPfk/D1Yn+anV8jG5RSTzU6zVkVZTG4="}]},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"directories":{}},"2.1.2":{"name":"mercury","version":"2.1.2","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^6.2.1","event-sinks":"^2.0.1","main-loop":"^1.2.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^1.1.1","value-event":"^1.1.0","vdom-thunk":"^1.2.0","virtual-dom":"git://github.com/Raynos/virtual-dom#0.0.4-hooks","virtual-hyperscript":"^1.1.1"},"devDependencies":{"browserify":"^3.38.0","cuid":"^1.2.1","geval":"^2.0.3","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","tape":"~1.0.2","xtend":"^2.2.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && open disc.html","test":"node ./test/index.js","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc && npm run field-reset","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","field-reset":"node bin/browserify-editor.js examples/field-reset.js | indexhtmlify > examples/field-reset.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@2.1.2","dist":{"shasum":"b341992990aeb89d96e7c5fde21c035d78287019","tarball":"https://registry.npmjs.org/mercury/-/mercury-2.1.2.tgz","integrity":"sha512-5yQsfZCQPHSHJ7Zbh3PSaaKVaCqEJA9a6nC11WH/IeCCwcUerVu24xptfkZnleGsblm7ARXE8gvTU9T15rXrJg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC79KCfsfLX5S5mWvPRnY3O/N9FAJqx5HA6f56q31+75AIgBfjiUUK2QVu21f+pAFUJ8D6J5Y/72HQ72aOQmcFTLno="}]},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"directories":{}},"2.1.3":{"name":"mercury","version":"2.1.3","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^6.2.1","event-sinks":"^2.0.1","main-loop":"^1.2.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^1.1.1","value-event":"^1.1.0","vdom-thunk":"^1.2.0","virtual-dom":"git://github.com/Raynos/virtual-dom#0.0.4-hooks","virtual-hyperscript":"^1.1.1"},"devDependencies":{"browserify":"^3.38.0","cuid":"^1.2.1","geval":"^2.0.3","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","tape":"~1.0.2","xtend":"^2.2.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && open disc.html","test":"node ./test/index.js","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc && npm run field-reset","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","field-reset":"node bin/browserify-editor.js examples/field-reset.js | indexhtmlify > examples/field-reset.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@2.1.3","dist":{"shasum":"e07bc72fc4c18131a4fd6d34b64b57307a1e2ae1","tarball":"https://registry.npmjs.org/mercury/-/mercury-2.1.3.tgz","integrity":"sha512-PnGRNlriQWkK3YPXDxCZoTp6oeIEZRj2tU4/c1mceP+6zwaoGgDTRZZHIAcDb8jA10V8zh1FMP7uUASwEchijA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFZnPF3N2V+42TtcC70H9tnY998t0fsdw6Aq8rtZwc4SAiAdyOhl+Hh5TPAHa35oBkhTMusJtRop0vHUliTHEEGcPw=="}]},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"directories":{}},"3.0.0":{"name":"mercury","version":"3.0.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.0.0","geval":"^2.1.1","main-loop":"^1.4.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^1.2.0","value-event":"^1.1.0","vdom-thunk":"^1.3.0","virtual-dom":"git://github.com/Matt-Esch/virtual-dom#aff7ed63ae7bbe018448640eb26c2ffb2a50a970","virtual-hyperscript":"^1.3.4"},"devDependencies":{"browserify":"^3.38.0","cuid":"^1.2.1","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"node ./test/index.js","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc && npm run field-reset","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","field-reset":"node bin/browserify-editor.js examples/field-reset.js | indexhtmlify > examples/field-reset.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@3.0.0","_shasum":"c57ad9162d1828cc4a080ef34c51cfffe7adba8f","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"dist":{"shasum":"c57ad9162d1828cc4a080ef34c51cfffe7adba8f","tarball":"https://registry.npmjs.org/mercury/-/mercury-3.0.0.tgz","integrity":"sha512-sfij0ZIGwYcWmuIqp+7IJBD9qIUjtWdFUoCGzC7bzuIaQrs8fO3wG4n0VYaK27a8l0JrtDEBEFpychwHGUuuzg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFeWmuUXE3IFGPo9UiLaIgFWgTpBRMug6gQg8HHsxeirAiBb4iUcBf0Yng9XoMn9ug69+97moiXipfzFAhOJelJ6Ow=="}]},"directories":{}},"3.0.1":{"name":"mercury","version":"3.0.1","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.0.0","geval":"^2.1.1","main-loop":"^1.4.1","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^1.2.0","value-event":"^1.1.0","vdom-thunk":"^1.3.0","virtual-dom":"git://github.com/Matt-Esch/virtual-dom#aff7ed63ae7bbe018448640eb26c2ffb2a50a970","virtual-hyperscript":"^1.3.4"},"devDependencies":{"browserify":"^3.38.0","cuid":"^1.2.1","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"node ./test/index.js","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc && npm run field-reset","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","field-reset":"node bin/browserify-editor.js examples/field-reset.js | indexhtmlify > examples/field-reset.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@3.0.1","_shasum":"780d8c06dfd960210e2a8ab820f184b2a17f55e8","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"dist":{"shasum":"780d8c06dfd960210e2a8ab820f184b2a17f55e8","tarball":"https://registry.npmjs.org/mercury/-/mercury-3.0.1.tgz","integrity":"sha512-6ZyCLjRYpFbe4lIsO3qKM983VK3ShyTQwd+kgUpOfk+ECC1VdgFcraLFxrmAn7qZ1phkGk4Yc5P0UpVlMrml/A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDoJZBdRKXVukFb5/A5WpPIyv3WZKZTICFFrV+KycCFcAIgX37oce3qkAdLGokpy3snl7BmGEkgCokLZ4rVNVlZF9c="}]},"directories":{}},"3.0.2":{"name":"mercury","version":"3.0.2","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.0.0","geval":"^2.1.1","main-loop":"^1.4.1","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^1.2.0","value-event":"^1.1.0","vdom-thunk":"^1.3.0","virtual-dom":"git://github.com/Matt-Esch/virtual-dom#aff7ed63ae7bbe018448640eb26c2ffb2a50a970","virtual-hyperscript":"^1.3.4"},"devDependencies":{"browserify":"^3.38.0","cuid":"^1.2.1","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"node ./test/index.js","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc && npm run field-reset","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","field-reset":"node bin/browserify-editor.js examples/field-reset.js | indexhtmlify > examples/field-reset.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@3.0.2","_shasum":"b0f14a8e8138e060cfccb4218fa0c991a9104105","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"dist":{"shasum":"b0f14a8e8138e060cfccb4218fa0c991a9104105","tarball":"https://registry.npmjs.org/mercury/-/mercury-3.0.2.tgz","integrity":"sha512-ksifU1SzvvZTYQnR4y6tablNmymw2B9+ml9MKDkxU6TvWENwF9k375Ygj7/8Ijq+tkLY7IZikgURNHj1PKx1Uw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD+YxbzG7NBQIX9UA4CI8Fbo9fq++ViL05tYrPrIJg3mQIhAKlNXGQ3JajM2ML2z0NnJ9hhlJI3001UGFkVYIUPDNtF"}]},"directories":{}},"3.1.0":{"name":"mercury","version":"3.1.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.0.0","geval":"^2.1.1","main-loop":"^1.5.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^2.0.0","value-event":"^1.3.0","vdom-thunk":"^1.4.0","virtual-dom":"0.0.6","virtual-hyperscript":"^2.0.0"},"devDependencies":{"browserify":"^3.38.0","cuid":"^1.2.1","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"node ./test/index.js","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc && npm run field-reset && npm run geometry","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","field-reset":"node bin/browserify-editor.js examples/field-reset.js | indexhtmlify > examples/field-reset.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","geometry":"browserify examples/geometry/browser.js | indexhtmlify > examples/geometry/index.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@3.1.0","_shasum":"9048784f810268059eccabd0810d2f487a1d2e04","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"dist":{"shasum":"9048784f810268059eccabd0810d2f487a1d2e04","tarball":"https://registry.npmjs.org/mercury/-/mercury-3.1.0.tgz","integrity":"sha512-2xaJzu2mohQVcs6tjx92Avrmac7Jfh0zHFoJqiR/7vQ+XKMmyLa1kL/XvQenMRyg3fV+zIQRkSI7DR/vK+5w7A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDJr0nOoX9ksnqT/7jk7C+MTF/QnBErCA8x92y+5lsoqAiEAtCkyDAnFowML7MGdW4bAyodv50pOSUrt1QxDJObi9uA="}]},"directories":{}},"3.1.1":{"name":"mercury","version":"3.1.1","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.0.0","geval":"^2.1.1","main-loop":"^1.7.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^2.0.0","value-event":"^1.3.0","vdom-thunk":"^1.6.0","virtual-dom":"0.0.8","virtual-hyperscript":"^2.2.0"},"devDependencies":{"browserify":"^3.38.0","cuid":"^1.2.1","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"node ./test/index.js","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc && npm run field-reset && npm run geometry","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","field-reset":"node bin/browserify-editor.js examples/field-reset.js | indexhtmlify > examples/field-reset.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","geometry":"browserify examples/geometry/browser.js | indexhtmlify > examples/geometry/index.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@3.1.1","_shasum":"48bceb9c0f096dce6c82296ad8b88a52e3b298b0","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"dist":{"shasum":"48bceb9c0f096dce6c82296ad8b88a52e3b298b0","tarball":"https://registry.npmjs.org/mercury/-/mercury-3.1.1.tgz","integrity":"sha512-7HRH8U38AwDUijUEoIo2S4l08mdFDbZamsHYCC0VHusH9ztNOBfGNkYKvg2HBFLJpsbqJL/YVQ8a6Vw+OSKjfQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCYU3hWBCn/fi3GZ6rY+JWqmms0m4xS1GJy//cz6B5sjgIhAJQDhiMOoorww6Bd8ns/v9wbibpTFCxiQn3no2Sl2/rj"}]},"directories":{}},"3.1.2":{"name":"mercury","version":"3.1.2","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.0.0","geval":"^2.1.1","main-loop":"^1.7.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^2.0.0","value-event":"^1.3.0","vdom-thunk":"^1.7.2","virtual-dom":"0.0.8","virtual-hyperscript":"^2.2.0"},"devDependencies":{"browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"casperjs ./test/casper/count.js && casperjs ./test/casper/reset.js && casperjs ./test/casper/shared.js","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc && npm run field-reset && npm run geometry","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","field-reset":"node bin/browserify-editor.js examples/field-reset.js | indexhtmlify > examples/field-reset.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","geometry":"browserify examples/geometry/browser.js | indexhtmlify > examples/geometry/index.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@3.1.2","_shasum":"86d61b3c49d5f32209a135173f12db94bea8fcf8","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"dist":{"shasum":"86d61b3c49d5f32209a135173f12db94bea8fcf8","tarball":"https://registry.npmjs.org/mercury/-/mercury-3.1.2.tgz","integrity":"sha512-feJqLViJqKysDI6A/IML9z2RwtXlmakpuAF2scsgKs1gHsm3rnH04H2m/s/wHKzJne5Xq4/dTexxA2P4gydl4A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAosdc5KsKLK5AH/kbaBfTENGCee4Kj9k3zGfqWbANCyAiEAwH6ik4qkWOBF/diRr9NCcZBnsWU3XaTK9qiSzPIcqcM="}]},"directories":{}},"3.1.3":{"name":"mercury","version":"3.1.3","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.1.0","geval":"^2.1.1","main-loop":"^1.7.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^2.0.0","value-event":"^1.3.0","vdom-thunk":"^1.7.2","virtual-dom":"0.0.8","virtual-hyperscript":"^2.2.0"},"devDependencies":{"browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"casperjs ./test/casper/count.js && casperjs ./test/casper/reset.js && casperjs ./test/casper/shared.js","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc && npm run field-reset && npm run geometry","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","field-reset":"node bin/browserify-editor.js examples/field-reset.js | indexhtmlify > examples/field-reset.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","geometry":"browserify examples/geometry/browser.js | indexhtmlify > examples/geometry/index.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@3.1.3","_shasum":"f38f1d16f6ddc1723cd715dbd88edb48f886f6ef","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"dist":{"shasum":"f38f1d16f6ddc1723cd715dbd88edb48f886f6ef","tarball":"https://registry.npmjs.org/mercury/-/mercury-3.1.3.tgz","integrity":"sha512-nebBEvNkeOIQ9W7VjbwG72ZMicBu4NZW7B6ts5ybqouXMabN/z60R4MgT8JX6KDlGFrUGvJLqX0P91dhnnGndA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDy/rf2PFUgIL4nqwrulxi7EpK95j8YVhYuyxheegtvnAiAhe49uPnep25ITmeMOU2nL37Jbu8aDgjzl1AbDq5wamw=="}]},"directories":{}},"3.1.4":{"name":"mercury","version":"3.1.4","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.1.0","geval":"^2.1.1","main-loop":"^1.7.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^2.0.0","value-event":"^1.3.0","vdom-thunk":"^1.7.2","virtual-dom":"0.0.8","virtual-hyperscript":"^2.2.0"},"devDependencies":{"browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"casperjs ./test/casper/count.js && casperjs ./test/casper/reset.js && casperjs ./test/casper/shared.js","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc && npm run field-reset && npm run geometry","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","field-reset":"node bin/browserify-editor.js examples/field-reset.js | indexhtmlify > examples/field-reset.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","geometry":"browserify examples/geometry/browser.js | indexhtmlify > examples/geometry/index.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@3.1.4","_shasum":"3a781910ea96e2ff55cb9af112536376b5d6abaa","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"dist":{"shasum":"3a781910ea96e2ff55cb9af112536376b5d6abaa","tarball":"https://registry.npmjs.org/mercury/-/mercury-3.1.4.tgz","integrity":"sha512-/X9/yZ+bTXFJZvjKb6gIYSWj2e6kQoIF3GB2GnebVCx84ZKLM9Eh0LZugDBwCBFVdXCxErIxeWzD6aumA3KP4w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBOHT+AXTjS6kf2dC7Zpve9sxnuQ6grBsDmY7eYL+mZhAiAr8L0CAyQoVUJr44+NtgPtYae/RNB3lupJ2PWKK4nDig=="}]},"directories":{}},"3.1.5":{"name":"mercury","version":"3.1.5","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.1.0","geval":"^2.1.1","main-loop":"^1.7.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^2.0.0","value-event":"^1.3.0","vdom-thunk":"^1.7.2","virtual-dom":"0.0.8","virtual-hyperscript":"^2.2.0"},"devDependencies":{"browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"casperjs ./test/casper/count.js && casperjs ./test/casper/reset.js && casperjs ./test/casper/shared.js","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc && npm run field-reset && npm run geometry","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","field-reset":"node bin/browserify-editor.js examples/field-reset.js | indexhtmlify > examples/field-reset.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","react-ballmer":"node bin/browserify-editor.js examples/react-ballmer.js | indexhtmlify > examples/react-ballmer.html","geometry":"browserify examples/geometry/browser.js | indexhtmlify > examples/geometry/index.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@3.1.5","dist":{"shasum":"ae66d0638f71f21e7957a0d4e02a18d05aacd8a6","tarball":"https://registry.npmjs.org/mercury/-/mercury-3.1.5.tgz","integrity":"sha512-+Bi1ClUaUfUrollOxKSfLEN7CBlEw4V7MNva185rpFdHEc2mRx8sGRnQy3ZBrIByd4B5CYvXduim75x4QR4SPQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC/EW6iCL4jHDQBEw9o/asBy8L0yJbudKzqYN3j2W6LpgIhAJY0HYIR6zj9Ybxr+QE5pcY+UZDMoC8x5yBKWeJ5eyjD"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"directories":{}},"3.1.6":{"name":"mercury","version":"3.1.6","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.1.1","geval":"^2.1.1","main-loop":"^1.7.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^2.0.0","value-event":"^1.3.1","vdom-thunk":"^1.7.2","virtual-dom":"0.0.8","virtual-hyperscript":"^2.2.0"},"devDependencies":{"browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"casperjs ./test/casper/count.js && casperjs ./test/casper/reset.js && casperjs ./test/casper/shared.js","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc && npm run field-reset && npm run geometry","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","field-reset":"node bin/browserify-editor.js examples/field-reset.js | indexhtmlify > examples/field-reset.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","react-ballmer":"node bin/browserify-editor.js examples/react-ballmer.js | indexhtmlify > examples/react-ballmer.html","geometry":"browserify examples/geometry/browser.js | indexhtmlify > examples/geometry/index.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@3.1.6","_shasum":"9316be966e99540916ab346059cee27a26061320","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"dist":{"shasum":"9316be966e99540916ab346059cee27a26061320","tarball":"https://registry.npmjs.org/mercury/-/mercury-3.1.6.tgz","integrity":"sha512-HWcf932EuucTBE3SjTwynaBk3T9tfVGuzgyJUbNan3ift1Otp7KsJJw5W1zAQvthvyBSotyZ8SQiuEE/3tvjWQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHFzBKSLcbVynPDA8rmV9mXWhEO+wUXCqFz8Vz+F1wa6AiBpfAfWDZ2Fb4vM1fc99eQq95PiIC886elEa8tsgPXEXQ=="}]},"directories":{}},"3.1.7":{"name":"mercury","version":"3.1.7","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.2.1","geval":"^2.1.1","main-loop":"^1.7.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^2.0.0","value-event":"^1.3.3","vdom-thunk":"^1.7.2","virtual-dom":"0.0.8","virtual-hyperscript":"^2.2.0"},"devDependencies":{"browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","raf":"^0.1.3","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"casperjs ./test/casper/count.js && casperjs ./test/casper/reset.js && casperjs ./test/casper/shared.js","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc && npm run field-reset && npm run geometry","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","field-reset":"node bin/browserify-editor.js examples/field-reset.js | indexhtmlify > examples/field-reset.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","react-ballmer":"node bin/browserify-editor.js examples/react-ballmer.js | indexhtmlify > examples/react-ballmer.html","geometry":"browserify examples/geometry/browser.js | indexhtmlify > examples/geometry/index.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@3.1.7","_shasum":"2bc8096d7bcdc9120814c1c9404e2692befbbdc4","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"dist":{"shasum":"2bc8096d7bcdc9120814c1c9404e2692befbbdc4","tarball":"https://registry.npmjs.org/mercury/-/mercury-3.1.7.tgz","integrity":"sha512-w225GUt4knUFJHtGNIVROvrVGwy4tW5C4QlzScfEpLmavjjB3msu2vFVO7WGU6ZZZttkGxQvZesBI1UuSn7S/g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDNUvGrphkh1AJr5cl2U6TCDqbTN0xHs2zhp3xOei9g+gIgewBNRUrKS7Jl0JBiG6eVtNVnCg3jKZ1EBoSsYd3zm0A="}]},"directories":{}},"3.1.8":{"name":"mercury","version":"3.1.8","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.2.1","geval":"^2.1.1","main-loop":"^1.7.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^2.0.0","value-event":"^1.3.4","vdom-thunk":"^1.7.2","virtual-dom":"0.0.8","virtual-hyperscript":"^2.2.0"},"devDependencies":{"browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","raf":"^0.1.3","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"casperjs ./test/casper/count.js && casperjs ./test/casper/reset.js && casperjs ./test/casper/shared.js","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc && npm run field-reset && npm run geometry","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","field-reset":"node bin/browserify-editor.js examples/field-reset.js | indexhtmlify > examples/field-reset.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","react-ballmer":"node bin/browserify-editor.js examples/react-ballmer.js | indexhtmlify > examples/react-ballmer.html","geometry":"browserify examples/geometry/browser.js | indexhtmlify > examples/geometry/index.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@3.1.8","_shasum":"e693840749cf7ff1a8905e2d7381f346bac2af22","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"dist":{"shasum":"e693840749cf7ff1a8905e2d7381f346bac2af22","tarball":"https://registry.npmjs.org/mercury/-/mercury-3.1.8.tgz","integrity":"sha512-6p8zCq9Avofmnrkq4hniPmrRxroKZROKuZ9iBy1ZQgYLVZxz0F8PtgEH6dMqhG1MHfYJ2TzTrMQcGMcOs8vkfQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCpeZE5Liw5oU38n/59z6IDLhdYfxtTsK7wgOkkrsXn3gIhALuj0VFrr1CpSRp8MGTjX9k1fOoLAjc/aSa4l288TmM2"}]},"directories":{}},"3.2.0":{"name":"mercury","version":"3.2.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.2.1","geval":"^2.1.1","main-loop":"^1.7.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^2.0.0","value-event":"^1.3.4","vdom-thunk":"^1.7.2","virtual-dom":"0.0.8","virtual-hyperscript":"^2.2.0"},"devDependencies":{"browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","raf":"^0.1.3","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"casperjs ./test/casper/count.js && casperjs ./test/casper/reset.js && casperjs ./test/casper/shared.js","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc && npm run field-reset && npm run geometry","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","field-reset":"node bin/browserify-editor.js examples/field-reset.js | indexhtmlify > examples/field-reset.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","react-ballmer":"node bin/browserify-editor.js examples/react-ballmer.js | indexhtmlify > examples/react-ballmer.html","geometry":"browserify examples/geometry/browser.js | indexhtmlify > examples/geometry/index.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@3.2.0","_shasum":"514c6bf2a48463e0bfc5a3b26caa63a84a60547f","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"dist":{"shasum":"514c6bf2a48463e0bfc5a3b26caa63a84a60547f","tarball":"https://registry.npmjs.org/mercury/-/mercury-3.2.0.tgz","integrity":"sha512-h0sJhori/cONy6L3IXB3QDKH/nfQJYbGRIfYJQf5HMyebqIlrlDm37Nkbfl3WwgWmAdC6jJZGnQyzDXx+1+HDA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCQA0mtmSsxdYcUDaTLTd3ldQPNP0lAZnBSyq2cH6Di/AIgepOQWgM2hpNOLGTD3saEiDm3Gts974spQMS0jlJgEJw="}]},"directories":{}},"3.2.1":{"name":"mercury","version":"3.2.1","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.2.1","geval":"^2.1.1","main-loop":"^1.7.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^2.0.0","value-event":"^1.3.4","vdom-thunk":"^2.0.0","virtual-dom":"0.0.8","virtual-hyperscript":"^2.2.0"},"devDependencies":{"browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"^1.1.1","javascript-editor":"^0.2.1","raf":"^0.1.3","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"casperjs ./test/casper/count.js && casperjs ./test/casper/reset.js && casperjs ./test/casper/shared.js","build":"npm run count && npm run bmi-counter && npm run shared-state && npm run todomvc && npm run field-reset && npm run geometry","count":"node bin/browserify-editor.js examples/count.js | indexhtmlify > examples/count.html","field-reset":"node bin/browserify-editor.js examples/field-reset.js | indexhtmlify > examples/field-reset.html","bmi-counter":"node bin/browserify-editor.js examples/bmi-counter.js | indexhtmlify > examples/bmi-counter.html","shared-state":"node bin/browserify-editor.js examples/shared-state.js | indexhtmlify > examples/shared-state.html","react-ballmer":"node bin/browserify-editor.js examples/react-ballmer.js | indexhtmlify > examples/react-ballmer.html","geometry":"browserify examples/geometry/browser.js | indexhtmlify > examples/geometry/index.html","todomvc":"browserify examples/todomvc/browser.js | indexhtmlify > examples/todomvc/index.html"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@3.2.1","_shasum":"9d312fdd5582de043cce9d6d2969f1f8b30f19eb","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"dist":{"shasum":"9d312fdd5582de043cce9d6d2969f1f8b30f19eb","tarball":"https://registry.npmjs.org/mercury/-/mercury-3.2.1.tgz","integrity":"sha512-vuYv3dYoA+vmPLfQ7nmrOoKC2qyZqLF/OrJst/AArEAS4WVWWdlLrTXru9aULwgUm/AyY49yqcG4qhjYsgAGFw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBKcjn/Y8xH3yAdgWJgUT38kLDPr0eu/fdJl8Di/g0rVAiBE+uTSkZS944W4j+7aghMl8mDhRwY8ZywfMoXmuWhL1w=="}]},"directories":{}},"3.2.2":{"name":"mercury","version":"3.2.2","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.3.0","geval":"^2.1.1","global":"^4.2.1","hash-router":"^0.4.0","main-loop":"^1.7.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^2.0.0","st":"^0.4.1","value-event":"^1.3.4","vdom-thunk":"^2.0.0","virtual-dom":"0.0.8","virtual-hyperscript":"^2.2.0"},"devDependencies":{"browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","javascript-editor":"^0.2.1","jshint":"^2.5.0","marked":"^0.3.2","next-tick":"^0.2.2","process":"^0.7.0","raf":"^0.1.3","routes-router":"^1.5.4","run-parallel":"^1.0.0","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"npm run jshint","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"browserify --standalone mercury index.js > dist/mercury.js"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@3.2.2","_shasum":"a163b3269aa656aa1dade1d81aacc7ab7e459463","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"dist":{"shasum":"a163b3269aa656aa1dade1d81aacc7ab7e459463","tarball":"https://registry.npmjs.org/mercury/-/mercury-3.2.2.tgz","integrity":"sha512-N1xiJ4UkEEcHR372jV/1hvmRYUyIdaDX5VHjnr1MraPqKHrKf0xX+RZDANecC8tKwrq8X2vwMJ0O0diw9r8lTg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC16AQ0985GnowIuSQBVBSyVAdlwFgjRPfOzDy+LaE1NQIhAKfB8H03LumVK1Hpg6hAv2u5GTA8O/TODacFTllx501U"}]},"directories":{}},"3.2.3":{"name":"mercury","version":"3.2.3","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.3.0","geval":"^2.1.1","global":"^4.2.1","hash-router":"^0.4.0","main-loop":"^1.7.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^2.0.0","st":"^0.4.1","value-event":"^1.3.4","vdom-thunk":"^2.0.0","virtual-dom":"0.0.8","virtual-hyperscript":"^2.3.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","javascript-editor":"^0.2.1","jshint":"^2.5.0","marked":"^0.3.2","mercury-jsxify":"^0.14.0","next-tick":"^0.2.2","process":"^0.7.0","raf":"^0.1.3","routes-router":"^1.5.4","run-parallel":"^1.0.0","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"npm run jshint","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"browserify --standalone mercury index.js > dist/mercury.js"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@3.2.3","_shasum":"0c019ab3659274f275a34cc0c0f0c1bdff0d9e8d","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"0c019ab3659274f275a34cc0c0f0c1bdff0d9e8d","tarball":"https://registry.npmjs.org/mercury/-/mercury-3.2.3.tgz","integrity":"sha512-E5zroVKPm87RXoWpyYNBllTvRsYpCah9fc95s34lUijtUgV4cwe13+elr87c1GJ+8f4vRjDCz0H6J/veWMRAKA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCiZC1yKIAGkOD4NxocShe1QihgOuM40VwT3I1MZS6jBgIgAMPN0xobbYu+jmVEscFgFuRdKpvook4hUnTHr06E6Oo="}]},"directories":{}},"3.2.4":{"name":"mercury","version":"3.2.4","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.3.0","geval":"^2.1.1","global":"^4.2.1","hash-router":"^0.4.0","main-loop":"^1.7.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-hash":"^2.0.0","st":"^0.4.1","value-event":"^1.3.4","vdom-thunk":"^2.0.0","virtual-dom":"0.0.8","virtual-hyperscript":"^2.4.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^3.0.0","hash-router":"^0.3.4","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","javascript-editor":"^0.2.1","jshint":"^2.5.0","marked":"^0.3.2","mercury-jsxify":"^0.14.0","next-tick":"^0.2.2","process":"^0.7.0","raf":"^0.1.3","routes-router":"^1.5.4","run-parallel":"^1.0.0","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"npm run jshint","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@3.2.4","_shasum":"eb6122ade6b42c398e4e6eec7a22acef7ce095ce","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"eb6122ade6b42c398e4e6eec7a22acef7ce095ce","tarball":"https://registry.npmjs.org/mercury/-/mercury-3.2.4.tgz","integrity":"sha512-cLlNbTP43Wnrg/a0KKQxSeTNmWM+ii9DMsAMqf8ZawOiQRFdu7R3pu5reogLtoKTNznObK0Pen72gJnJc40zHA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCMvfllap3+u2V3PgosPWFSnheCJ6MOGbdaaBBelAfepgIge3jF+VoDtARusjx/2KKA+AgoQuXyG/pUKVHDCPO1hJY="}]},"directories":{}},"4.0.0":{"name":"mercury","version":"4.0.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.3.0","geval":"^2.1.1","global":"^4.2.1","hash-router":"^0.4.0","main-loop":"^1.7.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-struct":"^3.1.0","st":"^0.4.1","value-event":"^1.3.4","vdom-thunk":"^2.0.0","virtual-dom":"0.0.8","virtual-hyperscript":"^3.0.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^3.0.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","javascript-editor":"^0.2.1","jshint":"^2.5.0","marked":"^0.3.2","mercury-jsxify":"^0.14.0","next-tick":"^0.2.2","process":"^0.7.0","raf":"^0.1.3","rimraf":"^2.2.8","routes-router":"^1.5.4","run-parallel":"^1.0.0","run-series":"^1.0.2","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"npm run jshint","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@4.0.0","_shasum":"5bd73a58d054a558849935de112e584f51e0c918","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"5bd73a58d054a558849935de112e584f51e0c918","tarball":"https://registry.npmjs.org/mercury/-/mercury-4.0.0.tgz","integrity":"sha512-7fg4di5Sp79BNN2fUywfm6XjQI9rzu5fgG+jbvD0TQSBtJMbf6EhSu4AuEZaPzgOykOp7NW+LiuddizhniwKIQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEkQgHeL6NVMiQ0n+G0/gMmh/rbMWM5d0WQe9q0cJE/IAiEAybjOi+qDMrLQ4GlAOiJXBW/xMhdJ0gQBAgYdywxu2Ms="}]},"directories":{}},"4.1.0":{"name":"mercury","version":"4.1.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.3.0","geval":"^2.1.1","main-loop":"^1.7.0","observ":"^0.1.5","observ-array":"^1.0.3","observ-struct":"^3.1.0","value-event":"^1.3.4","vdom-thunk":"^2.0.0","virtual-dom":"0.0.8","virtual-hyperscript":"^3.0.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","javascript-editor":"^0.2.1","jshint":"^2.5.0","marked":"^0.3.2","mercury-jsxify":"^0.14.0","next-tick":"^0.2.2","process":"^0.7.0","raf":"^0.1.3","rimraf":"^2.2.8","routes-router":"^1.5.4","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"npm run jshint","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@4.1.0","_shasum":"221c858b48c7b990bc1b99dc7d40e94aa4d33072","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"221c858b48c7b990bc1b99dc7d40e94aa4d33072","tarball":"https://registry.npmjs.org/mercury/-/mercury-4.1.0.tgz","integrity":"sha512-QkGNu1LLo+OfadLXW1P+mptX6eJUCR4f/u8L9cuS1AjXA6ZOlKLPcmLZggNVP462ANZvdAXiZSu7nWkmiNB/ZA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEcRKcKHRNaY8iHBuE48Ww1bbFPxGv3KGtSS2FXb7iSkAiEA6NGAKQIxEBLgJNa0sMaJe5F1Gyr8aLq8eIwol2kH42Y="}]},"directories":{}},"4.2.0":{"name":"mercury","version":"4.2.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.3.0","geval":"^2.1.1","main-loop":"^1.7.0","observ":"^0.2.0","observ-array":"^1.0.3","observ-struct":"^3.1.0","value-event":"^1.3.4","vdom-thunk":"^2.0.0","virtual-dom":"0.0.8","virtual-hyperscript":"^3.0.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","javascript-editor":"^0.2.1","jshint":"^2.5.0","marked":"^0.3.2","mercury-jsxify":"^0.14.0","next-tick":"^0.2.2","process":"^0.7.0","raf":"^0.1.3","rimraf":"^2.2.8","routes-router":"^1.5.4","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"npm run jshint","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"da524a22e8f8ba05057ef5e3830dbd89ee1eb306","_id":"mercury@4.2.0","_shasum":"0442d3e6476eecf9b27180372f674822c86610cd","_from":".","_npmVersion":"1.4.12","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"0442d3e6476eecf9b27180372f674822c86610cd","tarball":"https://registry.npmjs.org/mercury/-/mercury-4.2.0.tgz","integrity":"sha512-+W4QhjAfUEiS4+8t/D+W3I1qT/3rhA6zy0O3BUhJsJ+pHKSvA3d26veZ7N6TwGsFfbSQG6+TpAXlGhOj1N4ZRg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHnZm8GJ5lEXxoVWkVJG1PmW7IzE09zjXt1eB1HAz4ZhAiB8IYXxb2S9+H6/OzB4L8/6+/Sle0yVOwknl1XlQbFKpQ=="}]},"directories":{}},"4.3.0":{"name":"mercury","version":"4.3.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^7.3.0","geval":"^2.1.1","main-loop":"^1.7.0","observ":"^0.2.0","observ-array":"^1.0.3","observ-struct":"^3.1.0","observ-varhash":"^0.0.2","value-event":"^1.3.4","vdom-thunk":"^2.0.0","virtual-dom":"0.0.8","virtual-hyperscript":"^3.0.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","javascript-editor":"^0.2.1","jshint":"^2.5.0","marked":"^0.3.2","mercury-jsxify":"^0.14.0","next-tick":"^0.2.2","process":"^0.7.0","raf":"^0.1.3","rimraf":"^2.2.8","routes-router":"^1.5.4","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"npm run jshint","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@4.3.0","_shasum":"dc2b91da3c3b35fadcb798b3d06b6ee554d73fb7","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"dc2b91da3c3b35fadcb798b3d06b6ee554d73fb7","tarball":"https://registry.npmjs.org/mercury/-/mercury-4.3.0.tgz","integrity":"sha512-Ppi3uFLaU0Rs/t7RaHnri0KSdR6F3gSIwdMZjBqk3HES6zm94QRdEWqLNXEEAL4+vdOJBj1ps0ACDGQMcaszkw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCk+2HXojplOcizZTqAXj6E9NWc4qiz2V4c+3qlY2G+BgIgda75ePvVjcviey7LmweLJGN4k9LfCZ0j0MfW9lsBhtk="}]},"directories":{}},"5.0.1":{"name":"mercury","version":"5.0.1","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^8.0.1","geval":"^2.1.1","main-loop":"^1.7.0","observ":"^0.2.0","observ-array":"^1.0.3","observ-struct":"^3.1.0","observ-varhash":"0.0.2","value-event":"^1.3.4","vdom-thunk":"^2.0.0","virtual-dom":"0.0.8","virtual-hyperscript":"^3.0.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","javascript-editor":"^0.2.1","jshint":"^2.5.0","marked":"^0.3.2","mercury-jsxify":"^0.14.0","next-tick":"^0.2.2","process":"^0.7.0","raf":"^0.1.3","rimraf":"^2.2.8","routes-router":"^1.5.4","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"npm run jshint","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","prepublish":"npm run dist && git add dist/mercury.js && git commit -m 'dist'"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@5.0.1","_shasum":"fea83e7cc1bb5fed3b0c7231474e8b07b1ca92bf","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"fea83e7cc1bb5fed3b0c7231474e8b07b1ca92bf","tarball":"https://registry.npmjs.org/mercury/-/mercury-5.0.1.tgz","integrity":"sha512-Jm+knf6QnEqHgzPQwpSZPYILRf0EKFGo53nwBDnqrG7X6JDLi+W8oQ6wTQpTDWjC9JjdXGB3LFJw1ewotE5B5g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGE4gBx7PGBNUfWTPRDpuPCXG7m5C8r6LK14KnKiGbzfAiEAnLbndouWOf1xaDIVY9h+6MTtlctEYxCMt8SLXsCK5pY="}]},"directories":{}},"5.0.2":{"name":"mercury","version":"5.0.2","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^8.0.1","geval":"^2.1.1","main-loop":"^1.7.0","observ":"^0.2.0","observ-array":"^1.0.3","observ-struct":"^3.1.0","observ-varhash":"^0.1.1","value-event":"^1.3.4","vdom-thunk":"^2.0.0","virtual-dom":"0.0.8","virtual-hyperscript":"^3.0.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","casperjs":"^1.1.0-beta3","cuid":"^1.2.1","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","javascript-editor":"^0.2.1","jshint":"^2.5.0","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.7.0","next-tick":"^0.2.2","process":"^0.7.0","raf":"^0.1.3","rimraf":"^2.2.8","routes-router":"^1.5.4","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tape":"^2.12.3","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"npm run jshint && node test/synthetic-events.js","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","prepublish":"npm run dist && git add dist/mercury.js && git commit -m 'dist'"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@5.0.2","_shasum":"0f8d6a94ee857f90a79e4f20fce8d8bae2c46b3a","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"0f8d6a94ee857f90a79e4f20fce8d8bae2c46b3a","tarball":"https://registry.npmjs.org/mercury/-/mercury-5.0.2.tgz","integrity":"sha512-+tF009K/jL1cPdEcyp/lgeu6Q4x3RXoCBqu5dfyVOUPi9pQ/w1IzxcbtS8mk3usBmpZ+Kp9HB59ulfUZ0jSN8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIARz7Ut2CiuR6alW2Pmu6BmaskeuOq3zvw2prc7meTN0AiA7JZzWv8zDRGIQ5WaZF/MYBmgQO7zb2TYVkPWehW7U6g=="}]},"directories":{}},"5.1.0":{"name":"mercury","version":"5.1.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^9.0.0","geval":"^2.1.1","main-loop":"^1.9.0","node-hook":"^0.1.0","observ":"^0.2.0","observ-array":"^1.0.3","observ-struct":"^3.1.0","observ-varhash":"^0.1.3","value-event":"^1.3.4","vdom-thunk":"^2.0.0","virtual-dom":"0.0.8","virtual-hyperscript":"^3.0.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","cuid":"^1.2.1","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","jshint":"^2.5.0","json-globals":"^0.2.1","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.7.0","next-tick":"^0.2.2","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","routes-router":"^1.5.4","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.1","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"npm run jshint && node test/index.js | tap-spec","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@5.1.0","_shasum":"308584867c12c0428acc0ac56c2ec90a476dd091","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"308584867c12c0428acc0ac56c2ec90a476dd091","tarball":"https://registry.npmjs.org/mercury/-/mercury-5.1.0.tgz","integrity":"sha512-rCaSMNLbOJKtLtgLHcM910cCiUCjlVpx+vPDJc/2AV8C3vhzNtjxtJmAVd4807NE0TSFiVMwCvHrj9toHl3axw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHt7NGV5gIJxThcX7kXTBOKHyLFbmdjH7NbAUZHLDtyVAiB2A5Jzv7toyAxWFzfI2GdXUYBDMtNABWIYp5MWWHCIAQ=="}]},"directories":{}},"5.2.0":{"name":"mercury","version":"5.2.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^9.0.0","geval":"^2.1.1","main-loop":"^1.9.0","node-hook":"^0.1.0","observ":"^0.2.0","observ-array":"^1.0.3","observ-struct":"^3.1.0","observ-varhash":"^0.1.3","value-event":"^1.3.4","vdom-thunk":"^2.0.0","virtual-dom":"0.0.8","virtual-hyperscript":"^3.0.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","cuid":"^1.2.1","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","jshint":"^2.5.0","json-globals":"^0.2.1","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.7.0","next-tick":"^0.2.2","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","routes-router":"^1.5.4","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.1","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"node test/index.js | tap-spec","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@5.2.0","_shasum":"7769ba4275b624ae4b3a46def0c54e0708ed3e2a","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"7769ba4275b624ae4b3a46def0c54e0708ed3e2a","tarball":"https://registry.npmjs.org/mercury/-/mercury-5.2.0.tgz","integrity":"sha512-YypyZLHPV7gFtO3aClY2sKm1vMKkgNBUD7RLutV+9d8BtkiUAQr26r2JIj2w5V955c0/HVHXhITz3vSF+6WWPg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBBsAHKEhmmlMh7sv5BYCDqtxWza0MC6tYdWlBfSf/+DAiEAgIr+j4Cb51EAmM0R8YeVXpdtYC2fH7RJOZGRa2u5Fb8="}]},"directories":{}},"5.2.1":{"name":"mercury","version":"5.2.1","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^9.0.0","geval":"^2.1.1","main-loop":"^1.9.0","node-hook":"^0.1.0","observ":"^0.2.0","observ-array":"^1.0.3","observ-struct":"^3.1.0","observ-varhash":"^0.1.3","value-event":"^1.3.4","vdom-thunk":"^2.0.0","virtual-dom":"0.0.8","virtual-hyperscript":"^3.0.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","cuid":"^1.2.1","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","jshint":"^2.5.0","json-globals":"^0.2.1","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.7.0","next-tick":"^0.2.2","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","routes-router":"^1.5.4","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.1","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","xtend":"^3.0.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"node test/index.js | tap-spec","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@5.2.1","_shasum":"cdb5c84bfba70d2ea34efe5b70dc147a33c46850","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"cdb5c84bfba70d2ea34efe5b70dc147a33c46850","tarball":"https://registry.npmjs.org/mercury/-/mercury-5.2.1.tgz","integrity":"sha512-lSsN5WYghQXJf8HLx08VU0q2IqHmeHMHg0D9rXBmCexAt5ubqUFqw5tP7b93g8mbNdcsrdWpXU7rapsJpSsE0Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDY0d0pGHbvB3njanSWhXVO2SbO6+7hve6Mu95G4ARqEwIgbe/HcSYEytVEr7hhnZ8LGZ762fLv77xsJJ9pRlL20jY="}]},"directories":{}},"6.0.0":{"name":"mercury","version":"6.0.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^9.0.0","geval":"^2.1.1","main-loop":"^2.3.0","node-hook":"^0.1.0","observ":"^0.2.0","observ-array":"^1.0.3","observ-struct":"^4.1.0","observ-varhash":"^0.1.3","value-event":"^1.3.4","vdom-thunk":"^3.0.0","virtual-hyperscript":"^4.4.0","vtree":"0.0.16","vdom":"0.0.16"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","jshint":"^2.5.0","json-globals":"^0.2.1","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","next-tick":"^0.2.2","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","routes-router":"^1.5.4","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.1","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","xtend":"^3.0.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"push":"git fetch --all && git rebase origin/master && npm run build && git add --all && git commit --all --amend --no-edit && git push origin gh-pages -f","jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/9..latest","firefox/26..latest","firefox/nightly","chrome/31..latest","chrome/canary","opera/18..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@6.0.0","_shasum":"ae97241ee9a26b82610b291dda8e02d525731ca7","_from":".","_npmVersion":"1.4.10","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"ae97241ee9a26b82610b291dda8e02d525731ca7","tarball":"https://registry.npmjs.org/mercury/-/mercury-6.0.0.tgz","integrity":"sha512-3GEzJkN+uoSgGzIRR28XQj7K5DRY/fDUwcbRAcS7hOn5RqoN66Cysh8XQ4ywXU8n8ufRFutf6XZ9TKKrJb73iA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC/BCdao5dN/61OSgcA+3flPyXZFg0sYHnxU/Ig+vNQ6gIhAKrMTlyJ/gVM/frDlPvaj2zABjZfW4O3ZcMbzKTLg/cH"}]},"directories":{}},"6.0.1":{"name":"mercury","version":"6.0.1","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^9.0.0","geval":"^2.1.1","main-loop":"^2.3.0","node-hook":"^0.1.0","observ":"^0.2.0","observ-array":"^1.0.3","observ-struct":"^4.1.0","observ-varhash":"^0.1.3","value-event":"^2.1.0","vdom":"0.0.16","vdom-thunk":"^3.0.0","virtual-hyperscript":"^4.4.0","vtree":"0.0.16"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","jshint":"^2.5.0","json-globals":"^0.2.1","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","next-tick":"^0.2.2","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","routes-router":"^1.5.4","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.1","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","xtend":"^3.0.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/9..latest","firefox/26..latest","firefox/nightly","chrome/31..latest","chrome/canary","opera/18..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@6.0.1","_shasum":"48ff70b08b39f252957d54bd6f1de018c391ae3f","_from":".","_npmVersion":"1.4.10","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"48ff70b08b39f252957d54bd6f1de018c391ae3f","tarball":"https://registry.npmjs.org/mercury/-/mercury-6.0.1.tgz","integrity":"sha512-0ClIANN7KQydikx1UqrEZ9Z6XnhsIDoxwTTiHcZXkO6J9xXkMjOYYCmGAF4TQZUEk6bKKRInnhFaFfePeeUdiQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFa9jEbAZewtrJdfeawr7Vqro91soa3PdwNsOXsDSokqAiAiYMftJeGVQdB9pssf3DbQgswxfBHuFEcrfdCgTSmliw=="}]},"directories":{}},"6.0.2":{"name":"mercury","version":"6.0.2","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^9.0.0","geval":"^2.1.1","main-loop":"^2.3.0","node-hook":"^0.1.0","observ":"^0.2.0","observ-array":"^1.0.3","observ-struct":"^4.1.0","observ-varhash":"^0.2.0","value-event":"^2.2.0","vdom":"0.0.16","vdom-thunk":"^3.0.0","virtual-hyperscript":"^4.4.0","vtree":"0.0.16"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","jshint":"^2.5.0","json-globals":"^0.2.1","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","next-tick":"^0.2.2","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","routes-router":"^1.5.4","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.1","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","xtend":"^3.0.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/9..latest","firefox/26..latest","firefox/nightly","chrome/31..latest","chrome/canary","opera/18..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"7a36389eabfcb1142f0824a1757c11a0525d2b86","_id":"mercury@6.0.2","_shasum":"5d4cdbee91c6f17c6b44b33fe19804382b6d406a","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"5d4cdbee91c6f17c6b44b33fe19804382b6d406a","tarball":"https://registry.npmjs.org/mercury/-/mercury-6.0.2.tgz","integrity":"sha512-elhCfutjTCf86quIf9C53ihc2f8QvaboEdovZQf6Qcjk8jUinuV2L0KF16p401iKBkNv2UEjjY4I0qtcr6URTg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICu1zWhrTFtRMs2jmc7If1D0IiR4sFmDLP0/kWfpBrrvAiBWVBpnZSw1ljZlnWS+AIEehl32VlnzdFtOrWj8GlK0wg=="}]},"directories":{}},"6.1.0":{"name":"mercury","version":"6.1.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^9.2.2","geval":"^2.1.1","main-loop":"^2.3.0","node-hook":"^0.1.0","observ":"^0.2.0","observ-array":"^2.0.0","observ-struct":"^4.1.0","observ-varhash":"^0.2.0","value-event":"^2.3.0","vdom":"0.0.16","vdom-thunk":"^3.0.0","virtual-hyperscript":"^4.5.0","vtree":"0.0.16"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","jshint":"^2.5.0","json-globals":"^0.2.1","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","next-tick":"^0.2.2","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","routes-router":"^1.5.4","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.1","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","xtend":"^3.0.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/9..latest","firefox/26..latest","firefox/nightly","chrome/31..latest","chrome/canary","opera/18..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"2128549fabad900e81d4d6907ff673ffd1a12ee5","_id":"mercury@6.1.0","_shasum":"f7524606cc4964c40201298d240d169fcc1bf14a","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"f7524606cc4964c40201298d240d169fcc1bf14a","tarball":"https://registry.npmjs.org/mercury/-/mercury-6.1.0.tgz","integrity":"sha512-uJ3Hdx44OusJ2mwycBwoTJqKvC3kPMK9Ex6whXFK/tFurwslcKwvWqaAOIr7h3ykrjboHCelHEpLMA8H07u5Ag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDqzZFChPE+7U1QelmHnsZTSYH55t0i6e+IIl3r/tKepAIhAIp/fVVRadpYUmtOPLSLxDc9ZcAD+g2g/jpOGvWWhL9K"}]},"directories":{}},"6.1.1":{"name":"mercury","version":"6.1.1","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^9.2.2","geval":"^2.1.1","main-loop":"^2.3.0","node-hook":"^0.1.0","observ":"^0.2.0","observ-array":"^2.0.0","observ-struct":"^4.1.0","observ-varhash":"^0.2.0","value-event":"^2.3.0","vdom":"0.0.16","vdom-thunk":"^3.0.0","virtual-hyperscript":"^4.5.0","vtree":"0.0.16"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","jshint":"^2.5.0","json-globals":"^0.2.1","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","next-tick":"^0.2.2","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","routes-router":"^1.5.4","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.1","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","xtend":"^3.0.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/9..latest","firefox/26..latest","firefox/nightly","chrome/31..latest","chrome/canary","opera/18..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"1c88e897aeb98e36b287bb54c575da8f580b46d1","_id":"mercury@6.1.1","_shasum":"96562c0c90e46cae2a9f3ea9937841109f933a5d","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"96562c0c90e46cae2a9f3ea9937841109f933a5d","tarball":"https://registry.npmjs.org/mercury/-/mercury-6.1.1.tgz","integrity":"sha512-Q0w9BKsEb41BVppHWQuChmx2o6nstdZ8BzfNM7H2utWSMc1oKezQjCzHRMd8mUVK98zsEwuwAB8o3Ab1U/Bx4A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFdP7MXy6pA83/TsBZW5aQgIWANkEhSWh+xmQAt1TiP8AiEAmmspTTFGYMgv8uBOca3YoSFUUXfDrJBoz6f3MHgGnwM="}]},"directories":{}},"7.0.0":{"name":"mercury","version":"7.0.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^9.2.2","geval":"^2.1.1","main-loop":"^2.3.0","node-hook":"^0.1.0","observ":"^0.2.0","observ-array":"^2.0.0","observ-struct":"^5.0.1","observ-varhash":"^0.2.0","value-event":"^3.1.1","vdom":"0.0.16","vdom-thunk":"^3.0.0","virtual-hyperscript":"^4.5.0","vtree":"0.0.16"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","jshint":"^2.5.0","json-globals":"^0.2.1","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","next-tick":"^0.2.2","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","routes-router":"^1.5.4","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.1","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","xtend":"^3.0.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/9..latest","firefox/26..latest","firefox/nightly","chrome/31..latest","chrome/canary","opera/18..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"d27a64b61c9bedbecca091407897f0b3c3a6d2dc","_id":"mercury@7.0.0","_shasum":"1b99f09ed8bce647d631580e7b9657631d014979","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"1b99f09ed8bce647d631580e7b9657631d014979","tarball":"https://registry.npmjs.org/mercury/-/mercury-7.0.0.tgz","integrity":"sha512-DfqIQkbvEZKPdbThMhl0gP9FgYo1cwAM2y6a+UiKN7bYzKcdeM9YJ+b5/qHI3jx5UrpPkX6QhyrA/I6yeBuImg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDdkzlPqnj5unAIZAoJsSX1IoFFRim97FDHatGrrm1TtgIhAJq/z1kt69WssPvx66NB8+dP/DPmofeJIKQuhjW/mwJ2"}]},"directories":{}},"8.0.0":{"name":"mercury","version":"8.0.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^10.0.0","geval":"^2.1.1","main-loop":"^2.3.0","node-hook":"^0.1.0","observ":"^0.2.0","observ-array":"^2.0.0","observ-struct":"^5.0.1","observ-varhash":"^0.2.0","value-event":"^3.2.0","vdom":"0.0.16","vdom-thunk":"^3.0.0","virtual-hyperscript":"^4.5.0","vtree":"0.0.16"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","jshint":"^2.5.0","json-globals":"^0.2.1","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","next-tick":"^0.2.2","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","routes-router":"^1.5.4","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.1","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","xtend":"^3.0.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/9..latest","firefox/26..latest","firefox/nightly","chrome/31..latest","chrome/canary","opera/18..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"a2dc52ba799a6d41dc63bf8d361c3a97cc249529","_id":"mercury@8.0.0","_shasum":"88a740891a78517db37d6478265d4d8aecc96823","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"88a740891a78517db37d6478265d4d8aecc96823","tarball":"https://registry.npmjs.org/mercury/-/mercury-8.0.0.tgz","integrity":"sha512-sKbGI6MP4YvmywoFLJIOYmm+iysanpNDOe9GItZH+rqUqgYQnJTrOrPn3cEtsyn4rDVrljWfJyOPbJHMtiR3CA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEzB1bwXfPRPi4fX7oMFVDTXmExJltUUCGgpkwqIEf37AiAvP1r0tNb/j9cwptzPzbM3rFoDdXKzWoteI9QPmbvl9w=="}]},"directories":{}},"9.1.0":{"name":"mercury","version":"9.1.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^10.0.0","geval":"^2.1.1","main-loop":"git://github.com/raynos/main-loop#master","observ":"^0.2.0","observ-array":"^2.0.0","observ-struct":"^5.0.1","observ-varhash":"^0.2.0","value-event":"^3.2.0","vdom":"git://github.com/raynos/vdom#hooks","vdom-thunk":"^3.0.0","virtual-hyperscript":"git://github.com/raynos/virtual-hyperscript#master","vtree":"git://github.com/raynos/vtree#hooks"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","jshint":"^2.5.0","json-globals":"^0.2.1","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","node-hook":"^0.1.0","next-tick":"^0.2.2","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","routes-router":"^1.5.4","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","xtend":"^3.0.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"jshint":"jshint . --verbose","disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","test":"node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/9..latest","firefox/26..latest","firefox/nightly","chrome/31..latest","chrome/canary","opera/18..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"f8163296738010ae95970e9dd680b8c1d63b1c04","_id":"mercury@9.1.0","_shasum":"6d4d7a5ce53d38335f705bd44be0c05161c851ad","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"6d4d7a5ce53d38335f705bd44be0c05161c851ad","tarball":"https://registry.npmjs.org/mercury/-/mercury-9.1.0.tgz","integrity":"sha512-SXd1PYwCOF0vTn4PghBR4M8MtCD426plFkVofVZ0K6jJxY18c0Dan/jOMAC97GL49nrC6Lq7zO4VUO2Nh5Ko5A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGD3W5HDux6PcWjo/9vnusQWXUiMrOncEYNu/Q/0u+SeAiEAzGzpUTibCLe6iRrEHgCPoX3lng/XI2Ih5voswRR2hHI="}]},"directories":{}},"10.0.0":{"name":"mercury","version":"10.0.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index.js","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^12.0.0","geval":"^2.1.1","main-loop":"git://github.com/raynos/main-loop#master","observ":"^0.2.0","observ-array":"^2.0.0","observ-struct":"^5.0.1","observ-varhash":"^0.2.0","value-event":"^4.0.0","vdom":"git://github.com/raynos/vdom#hooks","vdom-thunk":"^3.0.0","virtual-hyperscript":"git://github.com/raynos/virtual-hyperscript#master","vtree":"git://github.com/raynos/vtree#hooks"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","json-globals":"^0.2.1","lint-trap":"git://github.com/Raynos/lint-trap","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","next-tick":"^0.2.2","node-hook":"^0.1.0","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","routes-router":"^1.5.4","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.5","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","xtend":"^3.0.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","lint":"lint-trap","test":"npm run lint && node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/9..latest","firefox/26..latest","firefox/nightly","chrome/31..latest","chrome/canary","opera/18..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"3064e64cebdfaacab1b33ffbed53aa130bd21746","_id":"mercury@10.0.0","_shasum":"5d86a3b386d4720df4e410ae098bdc17f8182061","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"5d86a3b386d4720df4e410ae098bdc17f8182061","tarball":"https://registry.npmjs.org/mercury/-/mercury-10.0.0.tgz","integrity":"sha512-omNxHMk9yb2u1DdWia3ffcrtrl4aeVRrhcPI17Klf27LRfdwQusQ61biddomQtCUatNzl5KG2xGJjHxJhZuKRw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCE0pFqc056+56ZelBEjh7yswGHL/UNZBVgg7i692Z+PwIhAPt1HX7e1y6H8Lu/BHuVGvHiqfcKEhY8ppsCiNvR3AGh"}]},"directories":{}},"10.0.1":{"name":"mercury","version":"10.0.1","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index.js","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^12.0.0","geval":"^2.1.1","main-loop":"git://github.com/raynos/main-loop#master","observ":"^0.2.0","observ-array":"^2.0.0","observ-struct":"^5.0.1","observ-varhash":"^0.2.0","value-event":"^4.0.0","vdom":"git://github.com/raynos/vdom#hooks","vdom-thunk":"^3.0.0","virtual-hyperscript":"git://github.com/raynos/virtual-hyperscript#master","vtree":"git://github.com/raynos/vtree#hooks","xtend":"^4.0.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","json-globals":"^0.2.1","lint-trap":"git://github.com/Raynos/lint-trap","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","next-tick":"^0.2.2","node-hook":"^0.1.0","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","routes-router":"^1.5.4","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.5","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","xtend":"^3.0.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","lint":"lint-trap","test":"npm run lint && node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/9..latest","firefox/26..latest","firefox/nightly","chrome/31..latest","chrome/canary","opera/18..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"b7c2f81b7e56c61fb6019aa600c31cd8f2234cf4","_id":"mercury@10.0.1","_shasum":"804b9a792e993c9736b3959c6b310dd151d125ee","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"804b9a792e993c9736b3959c6b310dd151d125ee","tarball":"https://registry.npmjs.org/mercury/-/mercury-10.0.1.tgz","integrity":"sha512-gTDsbsDXuMen7CNio1sONB8gXZ4hPynawW/S+0TZw4Jp4Ly8jVJIrQCMe6wUx+Uyw0r7VYx45N54wtpboN/eRQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAyGHKiWjaaq0Dg3dHNdnS3Tv8Z3MYRkzDoJo7lqMrNBAiA6CM6CMG2hZoUirxKc/2ASnHkgzxk0dGz2fz3mBOQGgw=="}]},"directories":{}},"10.1.0":{"name":"mercury","version":"10.1.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index.js","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^12.0.0","geval":"^2.1.1","main-loop":"git://github.com/raynos/main-loop#master","observ":"^0.2.0","observ-array":"^2.0.0","observ-struct":"^5.0.1","observ-varhash":"git://github.com/Raynos/observ-varhash#raynos","value-event":"^4.1.0","vdom":"git://github.com/raynos/vdom#hooks","vdom-thunk":"^3.0.0","virtual-hyperscript":"git://github.com/raynos/virtual-hyperscript#master","vtree":"git://github.com/raynos/vtree#hooks","xtend":"^4.0.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","disc":"^1.3.0","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","json-globals":"^0.2.1","lint-trap":"git://github.com/Raynos/lint-trap","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","next-tick":"^0.2.2","node-hook":"^0.1.0","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","route-map":"^0.1.0","routes-router":"^1.5.4","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.5","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","xtend":"^3.0.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","lint":"lint-trap","test":"npm run lint && node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/9..latest","firefox/26..latest","firefox/nightly","chrome/31..latest","chrome/canary","opera/18..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@10.1.0","_shasum":"e075c41bd91e9e802f76be3e5ee44bce05d3e9b8","_from":".","_npmVersion":"1.4.10","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"e075c41bd91e9e802f76be3e5ee44bce05d3e9b8","tarball":"https://registry.npmjs.org/mercury/-/mercury-10.1.0.tgz","integrity":"sha512-jDUkufcGZbdWNzbqtshZ/l+tFKCHmGKjOxuqnhbNLdhZKlvy8Bf41W6rEIqCBQh4O2w4CgfXZbduGl8WRO4sfQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCzPq4bEYV/q38m+fqG6/E6hb3ZMY6eJY8iNUozTlzQGAIhAJz81HL13EGIK2jWLC0Asyi0NG4oxDM/csCRFwPbokSY"}]},"directories":{}},"11.0.0":{"name":"mercury","version":"11.0.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index.js","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^12.0.0","geval":"^2.1.1","main-loop":"^3.0.0","observ":"^0.2.0","observ-array":"^3.1.0","observ-struct":"^5.0.1","observ-varhash":"^1.0.0","value-event":"^4.1.0","vdom-thunk":"^3.0.0","virtual-dom":"0.0.23","xtend":"^4.0.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","disc":"^1.3.0","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","json-globals":"^0.2.1","lint-trap":"git://github.com/Raynos/lint-trap","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","next-tick":"^0.2.2","node-hook":"^0.1.0","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","route-map":"^0.1.0","routes-router":"^1.5.4","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.5","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","weakmap-shim":"^1.1.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","lint":"lint-trap","test":"npm run lint && node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/9..latest","firefox/26..latest","firefox/nightly","chrome/31..latest","chrome/canary","opera/18..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"mercury@11.0.0","_shasum":"7b1f17dcbbf79a69b7e38f3eabc63b215f056173","_from":".","_npmVersion":"1.4.10","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"7b1f17dcbbf79a69b7e38f3eabc63b215f056173","tarball":"https://registry.npmjs.org/mercury/-/mercury-11.0.0.tgz","integrity":"sha512-u5clJGp4klyIK6HCV25b5MMfeZEBwe8bneCUCftJWhIvssQ1QW8jkmfUxU5mkQt3ICRPZZU66vAk6tOet+2sMg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEuePlT6G/YvnySyNwGfh6NOHT/RV996Hpb4KY7ZlO8IAiEAybJuS9KOQ9IHCelqlYc/BlxQUYOBGHagt8NMaqbwXQs="}]},"directories":{}},"11.1.0":{"name":"mercury","version":"11.1.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index.js","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^12.0.0","geval":"^2.1.1","main-loop":"^3.0.0","observ":"^0.2.0","observ-array":"^3.1.0","observ-struct":"^5.0.1","observ-varhash":"^1.0.2","value-event":"^4.1.0","vdom-thunk":"^3.0.0","virtual-dom":"0.0.24","xtend":"^4.0.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","disc":"^1.3.0","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","json-globals":"^0.2.1","lint-trap":"git://github.com/Raynos/lint-trap","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","next-tick":"^0.2.2","node-hook":"^0.1.0","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","route-map":"^0.1.0","routes-router":"^1.5.4","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.5","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","weakmap-shim":"^1.1.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","lint":"lint-trap","test":"npm run lint && node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/9..latest","firefox/26..latest","firefox/nightly","chrome/31..latest","chrome/canary","opera/18..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"6c74d9c15eb1c883b45c2186573054000ee7674e","_id":"mercury@11.1.0","_shasum":"839130687d98df28fed79ad47374f51ac5003f5e","_from":".","_npmVersion":"2.1.12","_nodeVersion":"0.10.26","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"839130687d98df28fed79ad47374f51ac5003f5e","tarball":"https://registry.npmjs.org/mercury/-/mercury-11.1.0.tgz","integrity":"sha512-kxwvtHxnVrDQx43cgJyxwrpevdW8DXYB4PNe07ZCypk3vAuprQhE7y8aYJw4n42oYBLpsTp+AvU5i13OF7kJGw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDnhQeFuRUGgoyFNfI6fz3ArJ8LnFcvmuKbQsocgiYXuAIgG0THXtfbdOvG8iN5grdcfDQGZR/CDf9PnzoLa+JYiNg="}]},"directories":{}},"12.0.0":{"name":"mercury","version":"12.0.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index.js","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^12.0.0","geval":"^2.1.1","main-loop":"^3.0.0","observ":"^0.2.0","observ-array":"^3.1.0","observ-struct":"^5.0.1","observ-varhash":"^1.0.2","value-event":"^4.1.0","vdom-thunk":"^3.0.0","virtual-dom":"0.0.24","xtend":"^4.0.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","disc":"^1.3.0","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","json-globals":"^0.2.1","lint-trap":"git://github.com/Raynos/lint-trap","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","next-tick":"^0.2.2","node-hook":"^0.1.0","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","route-map":"^0.1.0","routes-router":"^1.5.4","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.5","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","weakmap-shim":"^1.1.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","lint":"lint-trap","test":"npm run lint && node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/9..latest","firefox/26..latest","firefox/nightly","chrome/31..latest","chrome/canary","opera/18..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"26057459989a10e4f4b8d7c189aaacf7e584b924","_id":"mercury@12.0.0","_shasum":"80316140266878f4a6508c5461f74f43ef995066","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"80316140266878f4a6508c5461f74f43ef995066","tarball":"https://registry.npmjs.org/mercury/-/mercury-12.0.0.tgz","integrity":"sha512-WS+/7n3uJSgZvMQ1Pk+Wt854wUdhey3TkYZh9X8QnUAj44OYNJT43sVds+3docvzxnghlJe7k0lNr18JTeTdyg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDD/Zi59bNPhTqUyIi/7Y2iiyYbDFnLrZh2l20EEpCJkAIhAM+cNar0P9xb9Cw2VYDwxmByvSjaccGR6aOc/ru6dN0V"}]},"directories":{}},"13.0.0":{"name":"mercury","version":"13.0.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index.js","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^13.0.1","geval":"^2.1.1","main-loop":"^3.0.0","observ":"^0.2.0","observ-array":"^3.1.0","observ-struct":"^5.0.1","observ-varhash":"^1.0.2","value-event":"^5.0.0","vdom-thunk":"^3.0.0","virtual-dom":"^1.3.0","xtend":"^4.0.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","disc":"^1.3.0","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","immutable":"^3.6.2","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","json-globals":"^0.2.1","lint-trap":"git://github.com/Raynos/lint-trap","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","next-tick":"^0.2.2","node-hook":"^0.1.0","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","route-map":"^0.1.0","routes-router":"^1.5.4","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.5","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","weakmap-shim":"^1.1.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","lint":"lint-trap","test":"npm run lint && node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/9..latest","firefox/26..latest","firefox/nightly","chrome/31..latest","chrome/canary","opera/18..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"eb8b5424910af5e877fae0dd3ee89a36797c92fa","_id":"mercury@13.0.0","_shasum":"b646eb17aa62f48152078d05297956bab55431c0","_from":".","_npmVersion":"2.3.0","_nodeVersion":"1.0.4","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"b646eb17aa62f48152078d05297956bab55431c0","tarball":"https://registry.npmjs.org/mercury/-/mercury-13.0.0.tgz","integrity":"sha512-EDKegUp3/gPj5YgVGaddPfo5MytjpAz9lVhUNRQGe7abIVbOcqEaw9JOhtSlzTScXydVcGlBf0q+CzcDJQkOuQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFi112eW9UHkVeIBhzedaR01FBfmjqXprcD27mnmUffVAiBWz35rp8zk9fSIlBa+4w9PJnaxfXZemUAdvhfOm0hwrQ=="}]},"directories":{}},"14.0.0":{"name":"mercury","version":"14.0.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index.js","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^13.0.1","geval":"^2.1.1","main-loop":"^3.1.0","observ":"^0.2.0","observ-array":"^3.1.0","observ-struct":"^5.0.1","observ-varhash":"^1.0.2","value-event":"^5.0.0","vdom-thunk":"^3.0.0","virtual-dom":"^1.3.0","xtend":"^4.0.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","disc":"^1.3.0","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","immutable":"^3.6.2","indexhtmlify":"git://github.com/Raynos/indexhtmlify#v1.1.1-module2","istanbul":"^0.2.16","javascript-editor":"^0.2.1","json-globals":"^0.2.1","lint-trap":"git://github.com/Raynos/lint-trap","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","next-tick":"^0.2.2","node-hook":"^0.1.0","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"git://github.com/chenglou/rcss#424fc1ac17cdc2860736f73722e8135be96e1ba6","require-modify":"^0.1.0","rimraf":"^2.2.8","route-map":"^0.1.0","routes-router":"^1.5.4","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-virtualize":"0.0.5","virtual-dom-stringify":"^0.2.0","vtree-select":"^1.0.1","weakmap-shim":"^1.1.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && xdg-open disc.html","lint":"lint-trap","test":"npm run lint && node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish"},"testling":{"files":"test/index.js","browsers":["ie/9..latest","firefox/26..latest","firefox/nightly","chrome/31..latest","chrome/canary","opera/18..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"085b610ce8d2a9bed88d44e0580c38ffa55f79b6","_id":"mercury@14.0.0","_shasum":"483dd4774a9d387e9569dbd84b3bb998e3789d93","_from":".","_npmVersion":"2.3.0","_nodeVersion":"1.0.4","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"483dd4774a9d387e9569dbd84b3bb998e3789d93","tarball":"https://registry.npmjs.org/mercury/-/mercury-14.0.0.tgz","integrity":"sha512-VpZFxKTVQN/W8hHfyXU1/b7Dz8Fe4xn53PqoQrqPzYBKLSODt13ev5oWyerKxtSvuWMfZMc/jt9AnncaDmkuvA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDz7JdvaUCJDRb44/l/13p0JJUg5lfa6jUhUAznlGq3xgIhAJ4hPqiRcqXz3zyLr250hrAbAlrMI1ZoKWYcCFrjOjRx"}]},"directories":{}},"14.1.0":{"name":"mercury","version":"14.1.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index.js","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^13.0.1","geval":"^2.1.1","main-loop":"^3.1.0","observ":"^0.2.0","observ-array":"^3.1.0","observ-struct":"^5.0.1","observ-varhash":"^1.0.2","value-event":"^5.0.0","vdom-thunk":"^3.0.0","virtual-dom":"^2.1.1","xtend":"^4.0.0","http-hash-router":"~1.1.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","disc":"^1.3.0","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","immutable":"^3.6.2","indexhtmlify":"^1.2.0","istanbul":"^0.2.16","javascript-editor":"^0.2.1","jquery":"^2.1.4","json-globals":"^0.2.1","lint-trap":"^1.0.1","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","next-tick":"^0.2.2","node-hook":"^0.1.0","opn":"^1.0.1","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"^0.1.5","require-modify":"^0.1.0","rimraf":"^2.2.8","route-map":"^0.1.0","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events.git","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-to-html":"~1.2.5","vdom-virtualize":"0.0.5","vtree-select":"^1.0.1","weakmap-shim":"^1.1.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && opn disc.html","lint":"lint-trap","test":"npm run lint && node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && opn coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish","modules-docs":"node bin/modules-docs.js"},"gitHead":"15512903702a4b496a98c3526595ca91acac68db","_id":"mercury@14.1.0","_shasum":"9789a5b59ac2faa98fe4e9a7d9f7207ff3814acb","_from":".","_npmVersion":"2.8.2","_nodeVersion":"0.10.32","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"mattesch","email":"matt@mattesch.info"}],"dist":{"shasum":"9789a5b59ac2faa98fe4e9a7d9f7207ff3814acb","tarball":"https://registry.npmjs.org/mercury/-/mercury-14.1.0.tgz","integrity":"sha512-8pagsFXbUKYE23w0pGYSPQpKncDMHwuAFbuaLv7dB9DKf2Hakintae0VkNRciXww+p76FBeNPdWLo33HsG0/ig==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDrMjd79j+Kzi18dKEZx+7mzqrYeBfepnqW19wY0tmcYAiA6xIz3lYT6RH6ogE4b+6o8358b3deUE2DO52FU0VI3cw=="}]},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/mercury-14.1.0.tgz_1454450656956_0.688366120448336"},"directories":{}},"14.2.0":{"name":"mercury","version":"14.2.0","description":"A truly modular frontend framework","keywords":["framework","frontend","virtual","react","modular","web"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"main":"index.js","homepage":"https://github.com/Raynos/mercury","contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"dependencies":{"dom-delegator":"^13.0.1","geval":"^2.1.1","main-loop":"^3.1.0","observ":"^0.2.0","observ-array":"^3.1.0","observ-struct":"^5.0.1","observ-varhash":"^1.0.2","value-event":"^5.0.0","vdom-thunk":"^3.0.0","virtual-dom":"^2.1.1","xtend":"^4.0.0","http-hash-router":"~1.1.0"},"devDependencies":{"backbone":"^1.1.2","browserify":"^3.38.0","callify":"^0.2.0","coveralls":"^2.11.1","cuid":"^1.2.1","disc":"^1.3.0","function-bind":"^0.1.0","global":"^4.2.1","hash-router":"^0.4.0","immutable":"^3.6.2","indexhtmlify":"^1.2.0","istanbul":"^0.2.16","javascript-editor":"^1.0.0","jquery":"^2.1.4","json-globals":"^0.2.1","lint-trap":"^1.0.1","marked":"^0.3.2","mercury-jsxify":"^0.14.0","min-document":"^2.9.0","next-tick":"^0.2.2","node-hook":"^0.1.0","opn":"^1.0.1","pre-commit":"0.0.7","process":"^0.7.0","raf":"^2.0.1","rcss":"^0.1.5","require-modify":"^0.1.0","rimraf":"^2.2.8","route-map":"^0.1.0","run-browser":"^1.3.1","run-parallel":"^1.0.0","run-series":"^1.0.2","st":"^0.4.1","synthetic-dom-events":"git://github.com/Raynos/synthetic-dom-events.git","tap-spec":"^0.2.0","tape":"^2.13.2","valid-email":"0.0.1","vdom-to-html":"~2.2.0","vdom-virtualize":"0.0.5","vtree-select":"^1.0.1","weakmap-shim":"^1.1.0","zuul":"^1.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/mercury/raw/master/LICENSE"}],"scripts":{"disc":"browserify index.js --full-paths | discify > disc.html && opn disc.html","lint":"lint-trap","test":"npm run lint && node test/index.js | tap-spec","travis-test":"npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js","phantom":"run-browser test/index.js -b | tap-spec","browser":"run-browser test/index.js","cover":"istanbul cover --report html --print detail ./test/index.js","view-cover":"istanbul report html && opn coverage/index.html","build":"node bin/build.js","examples":"node bin/example-server.js","dist":"node bin/dist.js","dist-publish":"npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish","modules-docs":"node bin/modules-docs.js"},"gitHead":"262b58d37a0bb8c521086e6690d19b7fd831d1ef","_id":"mercury@14.2.0","_nodeVersion":"12.8.1","_npmVersion":"6.14.5","dist":{"integrity":"sha512-zL8MgXl7pWVciG13CpHj7CWrX8id96FCHTcF/bmkm+Cqhjo5J3UEmkD8W+FND/IjeFHcutPuqfsJEa9dLUaIgA==","shasum":"76353030ce272eb8f68bd721dd2ac4502c773e9e","tarball":"https://registry.npmjs.org/mercury/-/mercury-14.2.0.tgz","fileCount":107,"unpackedSize":330471,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe6IEnCRA9TVsSAnZWagAAQTYP/1rLHO0rNswtLeVFGdN5\natyal7wPQj2RPs5HMfpInYpdzdkH6ls1mdco5Xym/clR0AQk0PpgUSZ5xUa8\nUSeMqEwBHXDfBSfKi3cYnvL8+fpCtfDb2IWH32qsTvbfh6ZB5qJFm73nThxG\nBKzuW40oumf5bKQ4F1OnJAPgHhR+AoJ4g8c1YoqRuTPAqRKdVWpB9FgoslAL\nx6fpg/G2FnbvUIdTC4i+TNrgnvmw84tBIaNlPSbFNSkhVKREY3KKRp8H4rxc\n1KNFf3CR4CN5JONkFOP54tAGbMk3LpwXMRp3dSGVbo8aAEX09g+2rLRlWaun\nNxwRsbuUhn+oGbBupXkLGX0eJfsCLAL/hkMWsKrr9gR8jN/VkVgle1RSW70/\nKplYpzOqjNg4Cbp02peiFFa2mdH+VzZXW1+uN1EYR/hQXK1hvC3DIF4b43G6\nlnnBPe+8+on8s0WQQBfNLaeyPV1yifSAwqaBS97rYONmh87+VMt3MmVzbY16\nibQahKddqoR73ndvYSj7R9st22sRWfBDIVT03pRrOikPsD5BlXRGtheAN7le\nSeRi7a4CFphVdr8Fx2YMLtQf9Kx6jAznQsBN/alFPVz7ikMhgGwsSQyEA1Kw\nouE9rInNzKKfkEyOWFUbm7sA86u0Cq8i1tzIkKBeMemZQ1FbZPckGPrh6IVC\nLvCR\r\n=sh+k\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDpunyfVrMGNrlTNs19hG3aFTmtSzwIcEZ9tKvYJF29aAiAhbT+IIp97gN7w5ian83b5mtGralrOdugwYI2GR1LY8w=="}]},"maintainers":[{"name":"mattesch","email":"matt@mattesch.info"},{"name":"raynos","email":"raynos2@gmail.com"}],"_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mercury_14.2.0_1592295718654_0.7274712686654397"},"_hasShrinkwrap":false}},"homepage":"https://github.com/Raynos/mercury","keywords":["framework","frontend","virtual","react","modular","web"],"repository":{"type":"git","url":"git://github.com/Raynos/mercury.git"},"contributors":[{"name":"Raynos"},{"name":"Matt-Esch"},{"name":"neonstalwart"},{"name":"parshap"},{"name":"nrw"}],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"bugs":{"url":"https://github.com/Raynos/mercury/issues","email":"raynos2@gmail.com"},"readmeFilename":"README.md","users":{"rifaqat":true,"pickledonion":true,"axelav":true,"danielnaab":true,"shanewholloway":true,"theheros":true,"bsnote":true,"timdp":true,"guidoschmidt":true,"tcrowe":true,"nickeltobias":true,"pkhotpanya":true,"flumpus-dev":true}}