{"maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"dist-tags":{"latest":"9.1.0","next":"9.0.12-alpha.1"},"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"description":"An extremely fast, React-like JavaScript library for building modern user interfaces","readme":"<p align=\"center\"><a href=\"https://infernojs.org/\" target=\"_blank\"><img width=\"150\" alt=\"Inferno\" title=\"Inferno\" src=\"https://user-images.githubusercontent.com/2021355/36063342-626d7ea8-0e84-11e8-84e1-f22bb3b8c4d5.png\"/></a></p>\n\n[![Build Status](https://github.com/infernojs/inferno/workflows/CI/badge.svg)](https://github.com/infernojs/inferno/actions)\n[![Coverage Status](https://img.shields.io/coveralls/infernojs/inferno/master.svg?style=flat-square)](https://coveralls.io/github/infernojs/inferno?branch=master)\n[![MIT](https://img.shields.io/npm/l/inferno.svg?style=flat-square)](https://github.com/infernojs/inferno/blob/master/LICENSE.md)\n[![NPM](https://img.shields.io/npm/v/inferno.svg?style=flat-square)](https://www.npmjs.com/package/inferno)\n[![npm downloads](https://img.shields.io/npm/dm/inferno.svg?style=flat-square)](https://www.npmjs.org/package/inferno)\n[![Discord](https://img.shields.io/discord/825669396823015496.svg?style=flat-square&label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/SUKuhgaBpF)\n[![gzip size](http://img.badgesize.io/https://unpkg.com/inferno/dist/inferno.min.js?compression=gzip)](https://unpkg.com/inferno/dist/inferno.min.js)\n[![Backers on Open Collective](https://opencollective.com/inferno/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/inferno/sponsors/badge.svg)](#sponsors)\n\nInferno is an insanely fast, React-like library for building high-performance user interfaces on both the client and server.\n\n## Description\n\nThe main objective of the InfernoJS project is to provide the fastest possible **runtime** performance for web applications. Inferno excels at rendering real time data views or large DOM trees.\n\nThe performance is achieved through multiple optimizations, for example:\n\n- Inferno's own JSX compilers creates monomorphic `createVNode` calls, instead of `createElement` calls.\n  Optimizing runtime performance of the application.\n  - [SWC plugin inferno](https://github.com/infernojs/swc-plugin-inferno) is a plugin for [SWC](https://swc.rs/). It can compile TSX and JSX\n  - [Babel plugin inferno](https://github.com/infernojs/babel-plugin-inferno) is a plugin for [BabelJs](https://babeljs.io/). It can compile JSX.\n  - [TS plugin inferno](https://github.com/infernojs/ts-plugin-inferno) is a plugin for [TSC](https://www.typescriptlang.org/). It can compile TSX.\n- Inferno's diff process uses bitwise flags to memoize the shape of objects\n- Child nodes are normalized only when needed\n- Special JSX flags can be used during compile time to optimize runtime performance at application level\n- Many micro optimizations\n\n## Features\n\n- Component driven + one-way data flow architecture\n- React-like API, concepts and component lifecycle events\n- Partial synthetic event system, normalizing events for better cross browser support\n- Inferno's [`linkEvent`](https://github.com/infernojs/inferno/blob/master/README.md#linkevent-package-inferno) feature removes the need to use arrow functions or binding event callbacks\n- Isomorphic rendering on both client and server with `inferno-server`\n- Unlike React and Preact, Inferno has lifecycle events on functional components\n- Unlike Preact and other React-like libraries, Inferno has controlled components for input/select/textarea elements\n- Components can be rendered outside their current html hierarchy using `createPortal` - API\n- Support for [older browsers](https://github.com/infernojs/inferno#browser-support) without any polyfills\n- defaultHooks for Functional components, this way re-defining lifecycle events per usage can be avoided\n- Inferno supports setting styles using string `<div style=\"background-color: red\"></div>` or using object literal syntax `<div style={{\"background-color\": \"red\"}}></div>`. For camelCase syntax support see [`inferno-compat`](https://github.com/infernojs/inferno/tree/master/packages/inferno-compat).\n- Fragments (v6)\n- createRef and forwardRef APIs (v6)\n- componentDidAppear, componentWillDisappear and componentWillMove (v8) - class and function component callbacks to ease animation work, see [inferno-animation](https://github.com/infernojs/inferno/tree/master/packages/inferno-animation) package\n\n## Runtime requirements\n\nInferno v9 requires following features to be present in the executing runtime:\n\n- `Promise`\n- `String.prototype.includes()`\n- `String.prototype.startsWith()`\n- `Array.prototype.includes()`\n- `Object.spread()`\n\n## Browser support\n\nSince version 4 we have started running our test suite **without** any polyfills.\nInferno is now part of [Saucelabs](https://saucelabs.com/) open source program and we use their service for executing the tests.\n\nInfernoJS is actively tested with browsers listed below, however it may run well on older browsers as well.\nThis is due to limited support of browser versions in recent testing frameworks. https://github.com/jasmine/jasmine/blob/main/release_notes/5.0.0.md\n\n[![Browser Test Status](https://app.saucelabs.com/browser-matrix/Havunen.svg)](https://app.saucelabs.com/open_sauce/user/Havunen/tests/vdc)\n\n## Migration guides\n\n- [Inferno v4](https://github.com/infernojs/inferno/blob/master/documentation/v4-migration.md)\n- [Inferno v6](https://github.com/infernojs/inferno/blob/master/documentation/v6-migration.md)\n\n## Benchmarks\n\nLive examples at [https://infernojs.github.io/inferno](https://infernojs.github.io/inferno)\n\n- [UI Bench](https://localvoid.github.io/uibench/)\n- [dbmonster](https://infernojs.github.io/inferno/dbmonster/)\n- [JS Web Frameworks Benchmark (current)](https://krausest.github.io/js-framework-benchmark/current.html)\n- [Isomorphic-UI-Benchmark](https://github.com/marko-js/isomorphic-ui-benchmarks)\n- [1k Components](https://infernojs.github.io/inferno/1kcomponents/)\n\n## Code Example\n\nLet's start with some code. As you can see, Inferno intentionally keeps the same design ideas as React regarding components: one-way data flow and separation of concerns.\n\nIn these examples, JSX is used via the [Inferno JSX Babel Plugin](https://github.com/infernojs/babel-plugin-inferno) to provide a simple way to express Inferno virtual DOM. You do not need to use JSX, it's completely **optional**, you can use [hyperscript](https://github.com/infernojs/inferno/tree/master/packages/inferno-hyperscript) or [createElement](https://github.com/infernojs/inferno/tree/master/packages/inferno-create-element) (like React does).\nKeep in mind that compile time optimizations are available only for JSX.\n\n```jsx\nimport { render } from 'inferno';\n\nconst message = 'Hello world';\n\nrender(<MyComponent message={message} />, document.getElementById('app'));\n```\n\nFurthermore, Inferno also uses ES6 components like React:\n\n```jsx\nimport { render, Component } from 'inferno';\n\nclass MyComponent extends Component {\n  constructor(props) {\n    super(props);\n    this.state = {\n      counter: 0,\n    };\n  }\n  render() {\n    return (\n      <div>\n        <h1>Header!</h1>\n        <span>Counter is at: {this.state.counter}</span>\n      </div>\n    );\n  }\n}\n\nrender(<MyComponent />, document.getElementById('app'));\n```\n\nBecause performance is an important aspect of this library, we want to show you how to optimize your application even further.\nIn the example below we optimize diffing process by using JSX **$HasVNodeChildren** and **$HasTextChildren** to predefine children shape compile time.\nIn the MyComponent render method there is a div that contains JSX expression `node` as its content. Due to dynamic nature of Javascript\nthat variable `node` could be anything and Inferno needs to go through the normalization process to make sure there are no nested arrays or other invalid data.\nInferno offers a feature called ChildFlags for application developers to pre-define the shape of vNode's child node. In this example case\nit is using `$HasVNodeChildren` to tell the JSX compiler, that this vNode contains only single element or component vNode.\nNow inferno will not go into the normalization process runtime, but trusts the developer decision about the shape of the object and correctness of data.\nIf this contract is not kept and `node` variable contains invalid value for the pre-defined shape (fe. `null`), then application would crash runtime.\nThere is also span-element in the same render method, which content is set dynamically through `_getText()` method. There `$HasTextChildren` child-flag\nfits nicely, because the content of that given \"span\" is never anything else than text.\nAll the available child flags are documented [here](https://infernojs.org/docs/guides/optimizations).\n\n```jsx\nimport { createTextVNode, render, Component } from 'inferno';\n\nclass MyComponent extends Component {\n  constructor(props) {\n    super(props);\n    this.state = {\n      counter: 0,\n    };\n  }\n\n  _getText() {\n    return 'Hello!';\n  }\n\n  render() {\n    const node =\n      this.state.counter > 0 ? (\n        <div>0</div>\n      ) : (\n        <span $HasTextChildren>{this._getText()}</span>\n      );\n\n    return (\n      <div>\n        <h1>Header!</h1>\n        <div $HasVNodeChildren>{node}</div>\n      </div>\n    );\n  }\n}\n\nrender(<MyComponent />, document.getElementById('app'));\n```\n\n### Tear down\n\nTo tear down inferno application you need to render null on root element.\nRendering `null` will trigger unmount lifecycle hooks for whole vDOM tree and remove global event listeners.\nIt is important to unmount unused vNode trees to free browser memory.\n\n```jsx\nimport { createTextVNode, render, Component } from 'inferno';\n\nconst rootElement = document.getElementById('app');\n\n// Start the application\nrender(<ExampleComponent />, rootElement);\n\n// Tear down\nrender(null, rootElement);\n```\n\n### More Examples\n\nIf you have built something using Inferno you can add them here:\n\n- [**Simple Clock** (@JSFiddle)](https://jsfiddle.net/4bha7kcg/)\n- [**Simple JS Counter** (@github/scorsi)](https://github.com/scorsi/simple-counter-inferno-cerebral-fusebox): SSR Inferno (view) + Cerebral (state manager) + FuseBox (build system/bundler)\n- [**Online interface to TMDb movie database** (@codesandbox.io)](https://codesandbox.io/s/9zjo5yx8po): Inferno + [Inferno hyperscript](https://github.com/infernojs/inferno) (view) + [Superagent](https://github.com/visionmedia/superagent) (network requests) + Web component ([custom elements v1](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements)) + [state-transducer](https://github.com/brucou/state-transducer)\n  (state machine library)\n- [**Lemmy - a self-hostable reddit alternative** (front end in Inferno)](https://github.com/dessalines/lemmy)\n\n## Getting Started\n\nThe easiest way to get started with Inferno is by using [Create Inferno App](https://github.com/infernojs/create-inferno-app).\n\nAlternatively, you can try any of the following:\n\n- the [Inferno Boilerplate](https://github.com/infernojs/inferno-boilerplate) for a very simple setup.\n- for a more advanced example demonstrating how Inferno might be used, we recommend trying out [Inferno Starter Project](https://github.com/nightwolfz/inferno-starter) by [nightwolfz](https://github.com/nightwolfz/).\n- for using Inferno to build a mobile app, try [Inferno Mobile Starter Project](https://github.com/Rudy-Zidan/inferno-mobile) by [Rudy-Zidan](https://github.com/Rudy-Zidan).\n- for [TypeScript](https://www.typescriptlang.org/) support and bundling, check out [ts-plugin-inferno](https://github.com/infernojs/ts-plugin-inferno), or [inferno-typescript-example](https://github.com/infernojs/inferno-typescript-example).\n- for an example of how to use Inferno in [codesandbox](https://codesandbox.io/): https://codesandbox.io/s/znmyj24w4p\n- for using [parcel and typescript](https://github.com/jayy-lmao/inferno-parcel-ts)\n\nCore package:\n\n```sh\nnpm install --save inferno\n```\n\nAddons:\n\n```sh\n# server-side rendering\nnpm install --save inferno-server\n# routing\nnpm install --save inferno-router\n```\n\nPre-bundled files for browser consumption can be found on [our cdnjs](https://cdnjs.com/libraries/inferno):\n\nOr on jsDelivr:\n\n```\nhttps://cdn.jsdelivr.net/npm/inferno@latest/dist/inferno.min.js\n```\n\nOr on unpkg.com:\n\n```\nhttps://unpkg.com/inferno@latest/dist/inferno.min.js\n```\n\n### Creating Virtual DOM\n\n#### JSX:\n\n```sh\nnpm install --save-dev babel-plugin-inferno\n```\n\n#### Hyperscript:\n\n```sh\nnpm install --save inferno-hyperscript\n```\n\n#### createElement:\n\n```sh\nnpm install --save inferno-create-element\n```\n\n### Compatibility with existing React apps\n\n```sh\nnpm install --save-dev inferno-compat\n```\n\nNote: Make sure you read more about [`inferno-compat`](https://github.com/infernojs/inferno/tree/master/packages/inferno-compat) before using it.\n\n## Third-party state libraries\n\nInferno now has bindings available for some of the major state management libraries out there:\n\n- Redux via [`inferno-redux`](https://github.com/infernojs/inferno/tree/dev/packages/inferno-redux)\n- MobX via [`inferno-mobx`](https://github.com/infernojs/inferno/tree/dev/packages/inferno-mobx)\n- Cerebral via [`@cerebral/inferno`](https://github.com/cerebral/cerebral/tree/master/packages/node_modules/@cerebral/inferno)\n\n## JSX\n\nInferno has its own [JSX Babel plugin](https://github.com/trueadm/babel-plugin-inferno).\n\n## Differences from React\n\n- Inferno doesn't have a fully synthetic event system like React does. Inferno has a partially synthetic event system, instead opting to only delegate certain events (such as `onClick`).\n- Inferno doesn't support React Native. Inferno was only designed for the browser/server with the DOM in mind.\n- Inferno doesn't support legacy string refs, use `createRef` or callback `ref` API\n- Inferno provides lifecycle events on functional components. This is a major win for people who prefer lightweight components rather than ES2015 classes.\n\n## Differences from Preact\n\n- Inferno has a partial synthetic event system, resulting in better performance via delegation of certain events.\n- Inferno is _much_ faster than Preact in rendering, updating and removing elements from the DOM. Inferno diffs against virtual DOM, rather than the real DOM (except when loading from server-side rendered content), which means it can make drastic improvements. Unfortunately, diffing against the real DOM has a 30-40% overhead cost in operations.\n- Inferno fully supports controlled components for `input`/`select`/`textarea` elements. This prevents lots of edgecases where the virtual DOM is not the source of truth (it should always be). Preact pushes the source of truth to the DOM itself.\n- Inferno provides lifecycle events on functional components. This is a major win for people who prefer lightweight components rather than ES2015 classes.\n\n## Event System\n\nLike React, Inferno also uses a light-weight synthetic event system in certain places (although both event systems differ massively). Inferno's event system provides highly efficient delegation and an event helper called [`linkEvent`](https://github.com/infernojs/inferno/blob/master/README.md#linkevent-package-inferno).\n\nOne major difference between Inferno and React is that Inferno does not rename events or change how they work by default. Inferno only specifies that events should be camel cased, rather than lower case. Lower case events will bypass\nInferno's event system in favour of using the native event system supplied by the browser. For example, when detecting changes on an `<input>` element, in React you'd use `onChange`, with Inferno you'd use `onInput` instead (the\nnative DOM event is `oninput`).\n\nAvailable synthetic events are:\n\n- `onClick`\n- `onDblClick`\n- `onFocusIn`\n- `onFocusOut`\n- `onKeyDown`\n- `onKeyPress`\n- `onKeyUp`\n- `onMouseDown`\n- `onMouseMove`\n- `onMouseUp`\n- `onTouchEnd`\n- `onTouchMove`\n- `onTouchStart`\n\n### `linkEvent` (package: `inferno`)\n\n`linkEvent()` is a helper function that allows attachment of `props`/`state`/`context` or other data to events without needing to `bind()` them or use arrow functions/closures. This is extremely useful when dealing with events in functional components. Below is an example:\n\n```jsx\nimport { linkEvent } from 'inferno';\n\nfunction handleClick(props, event) {\n  props.validateValue(event.target.value);\n}\n\nfunction MyComponent(props) {\n  return <div><input type=\"text\" onClick={ linkEvent(props, handleClick) } /><div>;\n}\n```\n\nThis is an example of using it with ES2015 classes:\n\n```jsx\nimport { linkEvent, Component } from 'inferno';\n\nfunction handleClick(instance, event) {\n  instance.setState({ data: event.target.value });\n}\n\nclass MyComponent extends Component {\n  render () {\n    return <div><input type=\"text\" onClick={ linkEvent(this, handleClick) } /><div>;\n  }\n}\n```\n\n`linkEvent()` offers better performance than binding an event in a class constructor and using arrow functions, so use it where possible.\n\n## Controlled Components\n\nIn HTML, form elements such as `<input>`, `<textarea>`, and `<select>` typically maintain their own state and update it based on user input.\nIn Inferno, mutable state is typically kept in the state property of components, and only updated with `setState()`.\n\nWe can combine the two by making the Inferno state be the \"single source of truth\". Then the Inferno component that renders a form also\ncontrols what happens in that form on subsequent user input. An input form element whose value is controlled by\nInferno in this way is called a \"controlled component\".\n\n## Inferno Top-Level API\n\n### `render` (package: `inferno`)\n\n```javascript\nimport { render } from 'inferno';\n\nrender(<div />, document.getElementById('app'));\n```\n\nRender a virtual node into the DOM in the supplied container given the supplied virtual DOM. If the virtual node was previously rendered\ninto the container, this will perform an update on it and only mutate the DOM as necessary, to reflect the latest Inferno virtual node.\n\nWarning: If the container element is not empty before rendering, the content of the container will be overwritten on the initial render.\n\n### `createRenderer` (package: `inferno`)\n\n`createRenderer` creates an alternative render function with a signature matching that of the first argument passed to a reduce/scan function. This allows for easier integration with reactive programming libraries, like [RxJS](https://github.com/ReactiveX/rxjs) and [Most](https://github.com/cujojs/most).\n\n```javascript\nimport { createRenderer } from 'inferno';\nimport { scan, map } from 'most';\n\nconst renderer = createRenderer();\n\n// NOTE: vNodes$ represents a stream of virtual DOM node updates\nscan(renderer, document.getElementById('app'), vNodes$);\n```\n\nSee [inferno-most-fp-demo](https://github.com/joshburgess/inferno-most-fp-demo) for an example of how to build an app architecture around this.\n\n### `createElement` (package: `inferno-create-element`)\n\nCreates an Inferno VNode using a similar API to that found with React's `createElement()`\n\n```javascript\nimport { Component, render } from 'inferno';\nimport { createElement } from 'inferno-create-element';\n\nclass BasicComponent extends Component {\n  render() {\n    return createElement(\n      'div',\n      {\n        className: 'basic',\n      },\n      createElement(\n        'span',\n        {\n          className: this.props.name,\n        },\n        'The title is ',\n        this.props.title,\n      ),\n    );\n  }\n}\n\nrender(\n  createElement(BasicComponent, { title: 'abc' }),\n  document.getElementById('app'),\n);\n```\n\n### `Component` (package: `inferno`)\n\n**Class component:**\n\n```javascript\nimport { Component } from 'inferno';\n\nclass MyComponent extends Component {\n  render() {\n    return <div>My Component</div>;\n  }\n}\n```\n\nThis is the base class for Inferno Components when they're defined using ES6 classes.\n\n**Functional component:**\n\n```javascript\nconst MyComponent = ({ name, age }) => (\n  <span>\n    My name is: {name} and my age is: {age}\n  </span>\n);\n```\n\nAnother way of using defaultHooks.\n\n```javascript\nexport function Static() {\n  return <div>1</div>;\n}\n\nStatic.defaultHooks = {\n  onComponentShouldUpdate() {\n    return false;\n  },\n};\n```\n\nDefault props\n\n```jsx\nexport function MyFunctionalComponent({ value }) {\n  return <div>{value}</div>;\n}\n\nMyFunctionalComponent.defaultProps = {\n  value: 10,\n};\n```\n\nFunctional components are first-class functions where their first argument is the `props` passed through from their parent.\n\n### `createVNode` (package: `inferno`)\n\n```js\nimport { createVNode } from 'inferno';\n\ncreateVNode(\n  flags,\n  type,\n  [className],\n  [...children],\n  [childFlags],\n  [props],\n  [key],\n  [ref],\n);\n```\n\ncreateVNode is used to create html element's virtual node object. Typically `createElement()` (package: `inferno-create-element`), `h()` (package: `inferno-hyperscript`) or JSX are used to create\n`VNode`s for Inferno, but under the hood they all use `createVNode()`. Below is an example of `createVNode` usage:\n\n```javascript\nimport { VNodeFlags, ChildFlags } from 'inferno-vnode-flags';\nimport { createVNode, createTextVNode, render } from 'inferno';\n\nconst vNode = createVNode(\n  VNodeFlags.HtmlElement,\n  'div',\n  'example',\n  createTextVNode('Hello world!'),\n  ChildFlags.HasVNodeChildren,\n);\n\n// <div class=\"example\">Hello world!</div>\n\nrender(vNode, container);\n```\n\n`createVNode` arguments explained:\n\n`flags`: (number) is a value from [`VNodeFlags`](https://github.com/infernojs/inferno/tree/master/packages/inferno-vnode-flags), this is a numerical value that tells Inferno what the VNode describes on the page.\n\n`type`: (string) is tagName for element for example 'div'\n\n`className`: (string) is the class attribute ( it is separated from props because it is the most commonly used property )\n\n`children`: (vNode[]|vNode) is one or array of vNodes to be added as children for this vNode\n\n`childFlags`: (number) is a value from [`ChildFlags`](https://github.com/infernojs/inferno/tree/master/packages/inferno-vnode-flags), this tells inferno shape of the children so normalization process can be skipped.\n\n`props`: (Object) is object containing all other properties. fe: `{onClick: method, 'data-attribute': 'Hello Community!}`\n\n`key`: (string|number) unique key within this vNodes siblings to identify it during keyed algorithm.\n\n`ref`: (function) callback which is called when DOM node is added/removed from DOM.\n\n### `createComponentVNode` (package: 'inferno')\n\n```js\nimport { createComponentVNode } from 'inferno';\n\ncreateComponentVNode(flags, type, [props], [key], [ref]);\n```\n\ncreateComponentVNode is used for creating vNode for Class/Functional Component.\n\nExample:\n\n```javascript\nimport { VNodeFlags, ChildFlags } from 'inferno-vnode-flags';\nimport {\n  createVNode,\n  createTextVNode,\n  createComponentVNode,\n  render,\n} from 'inferno';\n\nfunction MyComponent(props, context) {\n  return createVNode(\n    VNodeFlags.HtmlElement,\n    'div',\n    'example',\n    createTextVNode(props.greeting),\n    ChildFlags.HasVNodeChildren,\n  );\n}\n\nconst vNode = createComponentVNode(\n  VNodeFlags.ComponentFunction,\n  MyComponent,\n  {\n    greeting: 'Hello Community!',\n  },\n  null,\n  {\n    onComponentDidMount() {\n      console.log('example of did mount hook!');\n    },\n  },\n);\n\n// <div class=\"example\">Hello Community!</div>\n\nrender(vNode, container);\n```\n\n`createComponentVNode` arguments explained:\n\n`flags`: (number) is a value from [`VNodeFlags`](https://github.com/infernojs/inferno/tree/master/packages/inferno-vnode-flags), this is a numerical value that tells Inferno what the VNode describes on the page.\n\n`type`: (Function/Class) is the class or function prototype for Component\n\n`props`: (Object) properties passed to Component, can be anything\n\n`key`: (string|number) unique key within this vNodes siblings to identify it during keyed algorithm.\n\n`ref`: (Function|Object) this property is object for Functional Components defining all its lifecycle methods. For class Components this is function callback for ref.\n\n### `createTextVNode` (package: 'inferno')\n\ncreateTextVNode is used for creating vNode for text nodes.\n\n`createTextVNode` arguments explained:\ntext: (string) is a value for text node to be created.\nkey: (string|number) unique key within this vNodes siblings to identify it during keyed algorithm.\n\n```js\nimport { createTextVNode } from 'inferno';\n\ncreateTextVNode(text, key);\n```\n\n### `cloneVNode` (package: `inferno-clone-vnode`)\n\nThis package has same API as React.cloneElement\n\n```javascript\nimport { cloneVNode } from 'inferno-clone-vnode';\n\ncloneVNode(vNode, [props], [...children]);\n```\n\nClone and return a new Inferno `VNode` using a `VNode` as the starting point. The resulting `VNode` will have the original `VNode`'s props with the new props merged in shallowly. New children will replace existing children. key and ref from the original `VNode` will be preserved.\n\n`cloneVNode()` is almost equivalent to:\n\n```jsx\n<VNode.type {...VNode.props} {...props}>\n  {children}\n</VNode.type>\n```\n\nAn example of using `cloneVNode`:\n\n```javascript\nimport { createVNode, render } from 'inferno';\nimport { cloneVNode } from 'inferno-clone-vnode';\nimport { VNodeFlags } from 'inferno-vnode-flags';\n\nconst vNode = createVNode(\n  VNodeFlags.HtmlElement,\n  'div',\n  'example',\n  'Hello world!',\n);\nconst newVNode = cloneVNode(vNode, { id: 'new' }); // we are adding an id prop to the VNode\n\nrender(newVNode, container);\n```\n\nIf you're using JSX:\n\n```jsx\nimport { render } from 'inferno';\nimport { cloneVNode } from 'inferno-clone-vnode';\n\nconst vNode = <div className=\"example\">Hello world</div>;\nconst newVNode = cloneVNode(vNode, { id: 'new' }); // we are adding an id prop to the VNode\n\nrender(newVNode, container);\n```\n\n### `createPortal` (package: 'inferno')\n\nHTML:\n\n```html\n<div id=\"root\"></div>\n<div id=\"outside\"></div>\n```\n\nJavascript:\n\n```jsx\nconst { render, Component, version, createPortal } from 'inferno';\n\nfunction Outsider(props) {\n\treturn <div>{`Hello ${props.name}!`}</div>;\n}\n\nconst outsideDiv = document.getElementById('outside');\nconst rootDiv = document.getElementById('root');\n\nfunction App() {\n\treturn (\n  \t    <div>\n    \t    Main view\n            ...\n            {createPortal(<Outsider name=\"Inferno\" />, outsideDiv)}\n        </div>\n    );\n}\n\n\n// render an instance of Clock into <body>:\nrender(<App />, rootDiv);\n```\n\nResults into:\n\n```html\n<div id=\"root\">\n  <div>Main view ...</div>\n</div>\n<div id=\"outside\">\n  <div>Hello Inferno!</div>\n</div>\n```\n\nCool, huh? Updates (props/context) will flow into \"Outsider\" component from the App component the same way as any other Component.\nFor inspiration on how to use it click [here](https://hackernoon.com/using-a-react-16-portal-to-do-something-cool-2a2d627b0202)!\n\n### `createRef` (package: `inferno`)\n\ncreateRef API provides shorter syntax than callback ref when timing of element is not needed.\n\n```jsx\nimport { Component, render, createRef } from 'inferno';\n\nclass Foobar extends Component {\n  constructor(props) {\n    super(props);\n\n    // Store reference somewhere\n    this.element = createRef(); // Returns object {current: null}\n  }\n\n  render() {\n    return (\n      <div>\n        <span id=\"span\" ref={this.element}>\n          Ok\n        </span>\n      </div>\n    );\n  }\n}\n\nrender(<Foobar />, container);\n```\n\n### `createFragment` (package: `inferno`)\n\ncreateFragment is the native way to createFragment vNode. `createFragment(children: any, childFlags: ChildFlags, key?: string | number | null)`\n\n`createFragment` arguments explained:\n\n`children`: (Array) Content of fragment vNode, typically array of VNodes\n\n`childFlags`: (number) is a value from [`ChildFlags`](https://github.com/infernojs/inferno/tree/master/packages/inferno-vnode-flags), this tells inferno shape of the children so normalization process can be skipped.\n\n`key`: (string|number) unique key within this vNodes siblings to identify it during keyed algorithm.\n\nAlternative ways to create fragment vNode are:\n\n- Using JSX `<> ... </>`, `<Fragment> .... </Fragment>` or `<Inferno.Fragment> ... </Inferno.Fragment>`\n- Using createElement API `createElement(Inferno.Fragment, {key: 'test'}, ...children)`\n- Using hyperscript API `h(Inferno.Fragment, {key: 'test'}, children)`\n\nIn the below example both fragments are identical except they have different key\n\n```jsx\nimport { Fragment, render, createFragment } from 'inferno';\nimport { ChildFlags } from 'inferno-vnode-flags';\n\nfunction Foobar() {\n  return (\n    <div $HasKeyedChildren>\n      {createFragment(\n        [<div>Ok</div>, <span>1</span>],\n        ChildFlags.HasNonKeyedChildren,\n        'key1',\n      )}\n      <Fragment key=\"key2\">\n        <div>Ok</div>\n        <span>1</span>\n      </Fragment>\n    </div>\n  );\n}\n\nrender(<Foobar />, container);\n```\n\n### `forwardRef` (package: `inferno`)\n\nforwardRef is a new mechanism to \"forward\" ref inside a functional Component.\nIt can be useful if you have simple functional Components and you want to create reference to a specific element inside it.\n\n```jsx\nimport { forwardRef, Component, render } from 'inferno';\n\nconst FancyButton = forwardRef((props, ref) => (\n  <button ref={ref} className=\"FancyButton\">\n    {props.children}\n  </button>\n));\n\nclass Hello extends Component {\n  render() {\n    return (\n      <FancyButton\n        ref={(btn) => {\n          if (btn) {\n            // btn variable is the button rendered from FancyButton\n          }\n        }}\n      >\n        Click me!\n      </FancyButton>\n    );\n  }\n}\n\nrender(<Hello />, container);\n```\n\n### `hydrate` (package: `inferno-hydrate`)\n\n```javascript\nimport { hydrate } from 'inferno-hydrate';\n\nhydrate(<div />, document.getElementById('app'));\n```\n\nSame as `render()`, but is used to hydrate a container whose HTML contents were rendered by `inferno-server`. Inferno will attempt to attach event listeners to the existing markup.\n\n### `findDOMNode` (package: `inferno-extras`)\n\nThis feature has been moved from inferno to inferno-compat in v6. No options are needed anymore.\n\nNote: we recommend using a `ref` callback on a component to find its instance, rather than using `findDOMNode()`. `findDOMNode()` cannot be used on functional components.\n\nIf a component has been mounted into the DOM, this returns the corresponding native browser DOM element. This method is useful for reading values out of the DOM, such as form field values and performing DOM measurements.\nIn most cases, you can attach a ref to the DOM node and avoid using `findDOMNode()` at all. When render returns null or false, `findDOMNode()` returns null.\nIf Component has rendered fragment it returns the first element.\n\n### Inferno Flags (package: inferno-vnode-flags)\n\n**VNodeFlags:**\n\n- `VNodeFlags.HtmlElement`\n- `VNodeFlags.ComponentUnknown`\n- `VNodeFlags.ComponentClass`\n- `VNodeFlags.ComponentFunction`\n- `VNodeFlags.Text`\n- `VNodeFlags.SvgElement`\n- `VNodeFlags.InputElement`\n- `VNodeFlags.TextareaElement`\n- `VNodeFlags.SelectElement`\n- `VNodeFlags.Portal`\n- `VNodeFlags.ReCreate` (JSX **$ReCreate**) always re-creates the vNode\n- `VNodeFlags.ContentEditable`\n- `VNodeFlags.Fragment`\n- `VNodeFlags.InUse`\n- `VnodeFlags.ForwardRef`\n- `VNodeFlags.Normalized`\n\n**VNodeFlags Masks:**\n\n- `VNodeFlags.ForwardRefComponent` Functional component wrapped in forward ref\n- `VNodeFlags.FormElement` - Is form element\n- `VNodeFlags.Element` - Is vNode element\n- `VNodeFlags.Component` - Is vNode Component\n- `VNodeFlags.DOMRef` - Bit set when vNode holds DOM reference\n- `VNodeFlags.InUseOrNormalized` - VNode is used somewhere else or came from normalization process\n- `VNodeFlags.ClearInUseNormalized` - Opposite mask of InUse or Normalized\n\n**ChildFlags**\n\n- `ChildFlags.UnknownChildren` needs Normalization\n- `ChildFlags.HasInvalidChildren` is invalid (null, undefined, false, true)\n- `ChildFlags.HasVNodeChildren` (JSX **$HasVNodeChildren**) is single vNode (Element/Component)\n- `ChildFlags.HasNonKeyedChildren` (JSX **$HasNonKeyedChildren**) is Array of vNodes non keyed (no nesting, no holes)\n- `ChildFlags.HasKeyedChildren` (JSX **$HasKeyedChildren**) is Array of vNodes keyed (no nesting, no holes)\n- `ChildFlags.HasTextChildren` (JSX **$HasTextChildren**) vNode contains only text\n\n**ChildFlags Masks**\n\n- `ChildFlags.MultipleChildren` Is Array\n\n### `renderToString` (package: `inferno-server`)\n\n```javascript\nimport { renderToString } from 'inferno-server';\n\nconst string = renderToString(<div />);\n```\n\nRender a virtual node into an HTML string, given the supplied virtual DOM.\n\n## Functional component lifecycle events\n\n| Name                       | Triggered when                                                 | Arguments to callback      |\n| -------------------------- | -------------------------------------------------------------- | -------------------------- |\n| `onComponentWillMount`     | a functional component is about to mount                       |                            |\n| `onComponentDidMount`      | a functional component has mounted successfully                | `domNode`                  |\n| `onComponentShouldUpdate`  | a functional component has been triggered to update            | `lastProps, nextProps`     |\n| `onComponentWillUpdate`    | a functional component is about to perform an update           | `lastProps, nextProps`     |\n| `onComponentDidUpdate`     | a functional component has performed an update                 | `lastProps, nextProps`     |\n| `onComponentWillUnmount`   | a functional component is about to be unmounted                | `domNode`                  |\n| `onComponentDidAppear`     | a functional component has mounted and is ready for animations | `domNode, props`           |\n| `onComponentWillDisappear` | a functional component is unmounted before DOM node is removed | `domNode, props, callback` |\n\nonComponentWillDisappear has special type of argument \"callback\" which needs to be called when component is ready to be removed from the DOM. fe. after animations are finished.\n\n## Class component lifecycle events\n\nAll these Component lifecycle methods ( including `render` and `setState - callback`) are called with Component instance context. You don't need to \"bind\" these methods.\n\n| Name                              | Triggered when                                                                        | Arguments to callback            |\n| --------------------------------- | ------------------------------------------------------------------------------------- | -------------------------------- |\n| `componentDidMount`               | component has been mounted successfully                                               |                                  |\n| `componentWillMount`              | component is about to mount                                                           |                                  |\n| `componentWillReceiveProps`       | before render when component updates                                                  | `nextProps, context`             |\n| `shouldComponentUpdate`           | component has been triggered to update                                                | `nextProps, nextState`           |\n| `componentWillUpdate`             | component is about to perform an update                                               | `nextProps, nextState, context`  |\n| `componentDidUpdate`              | component has performed an update                                                     | `lastProps, lastState, snapshot` |\n| `componentWillUnmount`            | component is about to be unmounted                                                    |                                  |\n| `getChildContext`                 | before render method, return value object is combined to sub tree context             |                                  |\n| `getSnapshotBeforeUpdate`         | before component updates, return value is sent to componentDidUpdate as 3rd parameter | `lastProps, lastState`           |\n| `static getDerivedStateFromProps` | before render method                                                                  | `nextProps, state`               |\n| `componentDidAppear`              | component has mounted and is ready for animations                                     | `domNode`                        |\n| `componentWillDisappear`          | component is unmounted before DOM node is removed                                     | `domNode, callback`              |\n\ncomponentWillDisappear has special type of argument \"callback\" which needs to be called when component is ready to be removed from the DOM. fe. after animations are finished.\n\n### Using functional lifecycle events\n\nFunctional lifecycle events must be explicitly assigned via props onto a functional component like shown below:\n\n```javascript\nimport { render } from 'inferno';\n\nfunction mounted(domNode) {\n  // [domNode] will be available for DOM nodes and components (if the component has mounted to the DOM)\n}\n\nfunction FunctionalComponent({ props }) {\n  return <div>Hello world</div>;\n}\n\nrender(\n  <FunctionalComponent onComponentDidMount={mounted} />,\n  document.getElementById('app'),\n);\n```\n\nPlease note: class components (ES2015 classes) from `inferno` **do not** support the same lifecycle events (they have their own lifecycle events that work as methods on the class itself).\n\n## Development vs Production modes\n\nBy default, Inferno will run in development mode. Development mode provides extra checks and better error messages at the cost of slower performance and larger code to parse.\nWhen using Inferno in a production environment, it is highly recommended that you turn off development mode.\n\n### Running Inferno on Node JS\n\nEnsure the environment variable `process.env.NODE_ENV` is set to `production`.\n\n## Application bundling\n\nWhen building your application bundle, ensure `process.env.NODE_ENV` is replaced with string`\"development\"` or `\"production\"` based on the workflow.\nIt is recommended to use [ts-plugin-inferno](https://github.com/infernojs/ts-plugin-inferno) for typescript TSX compilation and [babel-plugin-infeno](https://github.com/infernojs/babel-plugin-inferno) for javascript JSX compilation.\n\nWhen building for development, you may want to use `inferno.dev.mjs` for v9 or newer and `inferno.dev.esm.js` for older than v9. That bundle file contains ES6 exports for better tree-shaking support, improved error messages and added validation to help fixing possible issues during development.\nThe file is found from `package.json` - `dev:module` entry point and the files are physically located in `node_modules/inferno/dist/` folder.\nRemember that it is not recommended to use that file in production due to slower performance. For production usage use `node_modules/inferno/dist/inferno.mjs` -file for v9 or newer and `node_modules/inferno/dist/inferno.esm.js` -file for older than v9.\n\nExample of **Webpack** configuration:\n\n```js\nconst path = require('path');\nconst infernoTsx = require('ts-plugin-inferno').default;\n\n... webpack config ...\n\n    module: {\n        rules: [\n            {\n                test: /\\.js$/, // Add \"jsx\" if your application uses `jsx` file extensions\n                exclude: /node_modules/,\n                use: [{\n                    loader: 'babel-loader',\n                    options: {\n                        plugins: [\n                            // Compile javascript JSX syntax using inferno's own plugin\n                            ['babel-plugin-inferno', {imports: true}]\n                        ]\n                    }\n                }]\n            },\n            {\n                test: /\\.ts+(|x)$/, // Compile ts and tsx extensions\n                exclude: /node_modules/,\n                use: [{\n                    loader: 'ts-loader',\n                    options: {\n                        getCustomTransformers: () => ({\n                            // inferno custom TSX plugin\n                            after: [infernoTsx()]\n                        }),\n                        compilerOptions: {\n                            /* typescript compiler options */\n                        }\n                    }\n                }]\n            }\n        ]\n    },\n    resolve: {\n        extensions: ['.js', '.ts', '.tsx'],\n        alias: {\n            // This maps import \"inferno\" to es6 module entry based on workflow\n            inferno: path.resolve(__dirname, 'node_modules/inferno/dist', isProduction ? 'index.dev.mjs' : 'index.mjs')\n        }\n    },\n    plugins: [\n        new webpack.DefinePlugin({\n            'process.env': {\n                'NODE_ENV':  JSON.stringify(isProduction ? 'production' : 'development')\n            }\n        })\n    ]\n```\n\nExample of **Rollup** configuration:\n\n```js\nconst path = require('path');\nconst alias = require('@rollup/plugin-alias');\nconst {babel} = require('@rollup/plugin-babel');\nconst replace = require('@rollup/plugin-replace');\nconst typescript = require('rollup-plugin-typescript2');\nconst transformInferno = require('ts-plugin-inferno').default;\n\n... Rollup config ...\n{\n    input: /* entry file */,\n    plugins: [\n            alias({\n                resolve: ['.js'],\n                entries: [\n                    // This maps import \"inferno\" to es6 module entry based on workflow\n                    {find: 'inferno', replacement: path.resolve(__dirname, 'node_modules/inferno/dist', isProduction ? 'index.dev.mjs' : 'index.mjs')}\n                ]\n            }),\n            typescript({\n                include: ['*.ts+(|x)', '**/*.ts+(|x)'],\n                transformers: [\n                    () => ({\n                        after: [transformInferno()]\n                    })\n                ],\n                tsconfig: 'tsconfig.json',\n                tsconfigOverride: {\n                    /* typescript compiler options */\n                }\n            }),\n            babel({\n                babelrc: false,\n                sourceMaps: isDeploy,\n                plugins: [\n                    // Compile javascript JSX syntax using inferno's own plugin\n                    ['babel-plugin-inferno', {imports: true}]\n                ],\n                babelHelpers: 'bundled'\n            })\n    ]\n}\n```\n\n### Custom namespaces\n\nInferno always wants to deliver great performance. In order to do so, it has to make intelligent assumptions about the state of the DOM and the elements available to mutate. Custom namespaces conflict with this idea and change the schema of how different elements and attributes might work, so Inferno makes no attempt to support namespaces. Instead, SVG namespaces are automatically applied to elements and attributes based on their `tag name`.\n\n## Development\n\nIf you want to contribute code, fork this project and submit a PR from your fork. To run browser tests you need to build the repos. A complete rebuild of the repos can take >5 mins.\n\n```sh\n$ git clone git@github.com:infernojs/inferno.git\n$ cd inferno && npm i\n$ npm run test:node\n$ npm run build\n$ npm run test:browser\n```\n\nIf you only want to run the browser tests when coding, use the following to reduce turnaround by 50-80%:\n\n```sh\n$ npm run quick-test:browser # Compiles all packages and runs browser tests\n$ npm run quick-test:browser-inferno # Only compiles the inferno package and runs browser tests\n$ npm run quick-test:browser-debug # Compiles all packages and runs browser tests with \"debug\"\n```\n\n## Community\n\nThere is an InfernoJS Discord. You can join via [https://discord.gg/SUKuhgaBpF](https://discord.gg/SUKuhgaBpF).\n\n### Contributors\n\nThis project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)].\n<a href=\"https://github.com/infernojs/inferno/graphs/contributors\"><img src=\"https://opencollective.com/inferno/contributors.svg?width=890\" /></a>\n\n### Backers\n\nThank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/inferno#backer)]\n\n<a href=\"https://opencollective.com/inferno#backers\" target=\"_blank\"><img src=\"https://opencollective.com/inferno/backers.svg?width=890\"></a>\n\n### Sponsors\n\nSupport this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/inferno#sponsor)]\n\n<a href=\"https://opencollective.com/inferno/sponsor/0/website\" target=\"_blank\"><img src=\"https://opencollective.com/inferno/sponsor/0/avatar.svg\"></a>\n<a href=\"https://opencollective.com/inferno/sponsor/1/website\" target=\"_blank\"><img src=\"https://opencollective.com/inferno/sponsor/1/avatar.svg\"></a>\n<a href=\"https://opencollective.com/inferno/sponsor/2/website\" target=\"_blank\"><img src=\"https://opencollective.com/inferno/sponsor/2/avatar.svg\"></a>\n<a href=\"https://opencollective.com/inferno/sponsor/3/website\" target=\"_blank\"><img src=\"https://opencollective.com/inferno/sponsor/3/avatar.svg\"></a>\n<a href=\"https://opencollective.com/inferno/sponsor/4/website\" target=\"_blank\"><img src=\"https://opencollective.com/inferno/sponsor/4/avatar.svg\"></a>\n<a href=\"https://opencollective.com/inferno/sponsor/5/website\" target=\"_blank\"><img src=\"https://opencollective.com/inferno/sponsor/5/avatar.svg\"></a>\n<a href=\"https://opencollective.com/inferno/sponsor/6/website\" target=\"_blank\"><img src=\"https://opencollective.com/inferno/sponsor/6/avatar.svg\"></a>\n<a href=\"https://opencollective.com/inferno/sponsor/7/website\" target=\"_blank\"><img src=\"https://opencollective.com/inferno/sponsor/7/avatar.svg\"></a>\n<a href=\"https://opencollective.com/inferno/sponsor/8/website\" target=\"_blank\"><img src=\"https://opencollective.com/inferno/sponsor/8/avatar.svg\"></a>\n<a href=\"https://opencollective.com/inferno/sponsor/9/website\" target=\"_blank\"><img src=\"https://opencollective.com/inferno/sponsor/9/avatar.svg\"></a>\n","repository":{"type":"git","url":"git+https://github.com/infernojs/inferno.git","directory":"packages/inferno"},"users":{"dralc":true,"eerne":true,"rioli":true,"svjard":true,"havunen":true,"sangdth":true,"liximomo":true,"rubiadias":true,"spences10":true,"daniellink":true,"langri-sha":true,"adrienhobbs":true,"arkanciscan":true,"corygibbons":true,"thomas.miele":true,"lassevolkmann":true,"shanewholloway":true},"bugs":{"url":"https://github.com/infernojs/inferno/issues"},"license":"MIT","versions":{"0.1.2":{"name":"inferno","version":"0.1.2","author":{"name":"Dominic Gannaway"},"license":"ISC","_id":"inferno@0.1.2","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/InfernoJS#readme","bugs":{"url":"https://github.com/trueadm/InfernoJS/issues"},"dist":{"shasum":"bd00b286b5968d7c3e7c7058ee98694eed2c95fc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.1.2.tgz","integrity":"sha512-lXGBU85TT1Vhlk8mk67Jm9BjS+3tRzdYafKYcLjVIljIBDxfx0Wr0/FJJgbPReXDO8L+BJVmaXRfqjPLXEykYA==","signatures":[{"sig":"MEUCICjM5wEUAJdNrpKqWTP02gXIM/rMm/F/x3sjGufrybywAiEA8JZQGl0z3Ml/LU7WxnWKqEfrFaAKHwfgUc5l+yTLtw4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"bd00b286b5968d7c3e7c7058ee98694eed2c95fc","gitHead":"5f1a76e2d1eaf9430b626638e41d06b59413a9d6","scripts":{"test":"echo \"Error: no test specified\" && exit 1","preinstall":"npm install -g grunt-cli"},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+ssh://git@github.com/trueadm/InfernoJS.git","type":"git"},"_npmVersion":"2.11.2","description":"A framework for building lightning fast user interfaces","directories":{},"_nodeVersion":"0.12.6","dependencies":{"t7":"~0.2.0"},"devDependencies":{"grunt":"^0.4.5","grunt-babel":"^5.0.1","grunt-browserify":"^3.8.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-uglify":"^0.9.1"}},"0.1.3":{"name":"inferno","version":"0.1.3","author":{"name":"Dominic Gannaway"},"license":"ISC","_id":"inferno@0.1.3","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/InfernoJS#readme","bugs":{"url":"https://github.com/trueadm/InfernoJS/issues"},"dist":{"shasum":"2820d2d28e9b30f4f1d1c5a8ea8cad12094a32a9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.1.3.tgz","integrity":"sha512-G0aMTXN61kkl+Yx/3gisy3euBybgeBjIfkzt5gk/9K4IOBn2dyD8cuy9uBNINUpRJW+zz9B/oIWsm44wnBBzqg==","signatures":[{"sig":"MEYCIQDjvmycwgd2sZZnHVR4WTIHsnJHG6hL+Rk/7zQyotkc9gIhALJ1scWE6lgGnGv/Nt9g2OA1pGega8s9pt8pPUzjZTNK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"2820d2d28e9b30f4f1d1c5a8ea8cad12094a32a9","gitHead":"7de6c3f8e3701506ad3e52a60a86ebc9bff15320","scripts":{"test":"echo \"Error: no test specified\" && exit 1","preinstall":"npm install -g grunt-cli"},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+ssh://git@github.com/trueadm/InfernoJS.git","type":"git"},"_npmVersion":"2.11.2","description":"A framework for building lightning fast user interfaces","directories":{},"_nodeVersion":"0.12.6","dependencies":{"t7":"~0.2.0"},"devDependencies":{"grunt":"^0.4.5","grunt-babel":"^5.0.1","grunt-browserify":"^3.8.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-uglify":"^0.9.1"}},"0.1.4":{"name":"inferno","version":"0.1.4","author":{"name":"Dominic Gannaway"},"license":"ISC","_id":"inferno@0.1.4","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/InfernoJS#readme","bugs":{"url":"https://github.com/trueadm/InfernoJS/issues"},"dist":{"shasum":"a76cc0ad24ffbb2beb3598026bfb6abe245627f8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.1.4.tgz","integrity":"sha512-EarDOuF3jBYqJ1KBj50tNJintSUFUPLAOcek54BZJTJXtBznbWw/+kEoPrPFvNVEd3kXtnfNoQ/DXc5CHDzkLw==","signatures":[{"sig":"MEUCIFKelXnJiRrEu+wxV55T1nK8287egj6Umf7AAmpDfVJcAiEAxS9lIjpTpZySCHYTJeaBmau4FkWOnyunHZpAd+LLKK8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"a76cc0ad24ffbb2beb3598026bfb6abe245627f8","gitHead":"8f739a611ae906923cc11f748b2ade40d123baf5","scripts":{"test":"echo \"Error: no test specified\" && exit 1","preinstall":"npm install -g grunt-cli"},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+ssh://git@github.com/trueadm/InfernoJS.git","type":"git"},"_npmVersion":"2.11.2","description":"A framework for building lightning fast user interfaces","directories":{},"_nodeVersion":"0.12.6","dependencies":{"t7":"~0.2.0"},"devDependencies":{"grunt":"^0.4.5","grunt-babel":"^5.0.1","grunt-browserify":"^3.8.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-uglify":"^0.9.1"}},"0.1.6":{"name":"inferno","version":"0.1.6","author":{"name":"Dominic Gannaway"},"license":"ISC","_id":"inferno@0.1.6","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/InfernoJS#readme","bugs":{"url":"https://github.com/trueadm/InfernoJS/issues"},"dist":{"shasum":"9c66c4707757f622dd64f40663cab7afa6f94db7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.1.6.tgz","integrity":"sha512-8SknpIkzM5ivk2EOi2Wrxo6MHZCsGVwgEf+kzArDq70nYEYPEdfpM9XBpV6gUgeYy5QfASZe2Rh68CkTNYwS6Q==","signatures":[{"sig":"MEUCIE3/Hr3QlWXn5dGQB7T/uz+PxYPB/4RV2sxO+T4WSxKDAiEAuQ5KiLn0fG1KkQAJ/4Pio3tjyr89C4ATDHoFTXSjuSM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"9c66c4707757f622dd64f40663cab7afa6f94db7","gitHead":"c1adbe33132f2afed4f9658c7888f34524e77cd4","scripts":{"test":"echo \"Error: no test specified\" && exit 1","preinstall":"npm install -g grunt-cli"},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+ssh://git@github.com/trueadm/InfernoJS.git","type":"git"},"_npmVersion":"2.11.2","description":"A framework for building lightning fast user interfaces","directories":{},"_nodeVersion":"0.12.6","dependencies":{"t7":"~0.2.0"},"devDependencies":{"grunt":"^0.4.5","grunt-babel":"^5.0.1","grunt-browserify":"^3.8.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-uglify":"^0.9.1"}},"0.1.7":{"name":"inferno","version":"0.1.7","author":{"name":"Dominic Gannaway"},"license":"ISC","_id":"inferno@0.1.7","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/InfernoJS#readme","bugs":{"url":"https://github.com/trueadm/InfernoJS/issues"},"dist":{"shasum":"ba6f4122eb51ff4148f0bf30ea91b9627a6dea2b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.1.7.tgz","integrity":"sha512-1nr67J3vOTCwaoX6TX3zf+oAI8GeoBhjyHA+4cendgIYZ3LIwbCYVcRwH0WarARydzZpaHRuHNDcCiHJ+gibfw==","signatures":[{"sig":"MEYCIQCjJ3jI8BSbdIvKdDpONYWQnWmsZmAnUcuED8TTqS99oAIhAIvjcVDiZKvBqPuF3lgu0AOgjFgPhv87UDCc13b7YEin","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"ba6f4122eb51ff4148f0bf30ea91b9627a6dea2b","gitHead":"1b10fea5dea6e00ea9903743d6e5258a4f6433a0","scripts":{"test":"echo \"Error: no test specified\" && exit 1","preinstall":"npm install -g grunt-cli"},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+ssh://git@github.com/trueadm/InfernoJS.git","type":"git"},"_npmVersion":"2.11.2","description":"A framework for building lightning fast user interfaces","directories":{},"_nodeVersion":"0.12.6","dependencies":{"t7":"~0.2.0"},"devDependencies":{"grunt":"^0.4.5","grunt-babel":"^5.0.1","grunt-browserify":"^3.8.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-uglify":"^0.9.1"}},"0.1.9":{"name":"inferno","version":"0.1.9","author":{"name":"Dominic Gannaway"},"license":"ISC","_id":"inferno@0.1.9","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"6c8f9fa455029cf71a32d60a65c588e27822d69b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.1.9.tgz","integrity":"sha512-qISOi1JidXwsPzs+04iDb08l2bzzWGbzsDuGEN235lHA/BHEWCTDl3egFHWXOEUd/QoAuebz0NDmaeP05ooqhA==","signatures":[{"sig":"MEUCIGhLsRZ7DM9BRPewxxXGcr1dauDM5edwFud/4oWTJjiLAiEAgxCm08CuHrsFMKw1zFq3VmhuoVQFQn9xqDAQYc4Fs4A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"6c8f9fa455029cf71a32d60a65c588e27822d69b","gitHead":"d3c92c94a128b7792d1ebbc5a41102d28bf62fa1","scripts":{"test":"echo \"Error: no test specified\" && exit 1","preinstall":"npm install -g grunt-cli"},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+ssh://git@github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"2.11.2","description":"A framework for building lightning fast user interfaces","directories":{},"_nodeVersion":"0.12.6","dependencies":{"t7":"~0.2.0"},"devDependencies":{"grunt":"^0.4.5","grunt-babel":"^5.0.1","grunt-browserify":"^3.8.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-uglify":"^0.9.1"}},"0.1.10":{"name":"inferno","version":"0.1.10","author":{"name":"Dominic Gannaway"},"license":"ISC","_id":"inferno@0.1.10","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"d0d7d958a1c0c8d5638f10540511700468b00421","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.1.10.tgz","integrity":"sha512-jLEUQCK84RJ2xJQw1npfbcX+yze9l0lGAZSKzrbY79nbGdymcbNCWONhKW8MPkHnrUkcF5U3Vvzuac43wvMCqg==","signatures":[{"sig":"MEQCIG8qwv0fNndT/c3n086uUWOK/iEcobWpJpDqjH9wdKMkAiAnurb3Zd6FTSr2q/6rG4H4EcDxMFVo+I7+8OyM5k+Frg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"d0d7d958a1c0c8d5638f10540511700468b00421","gitHead":"73b1cbfbce8f87fdf85e6049fd0111c751a21204","scripts":{"test":"echo \"Error: no test specified\" && exit 1","preinstall":"npm install -g grunt-cli"},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+ssh://git@github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"2.11.2","description":"A framework for building lightning fast user interfaces","directories":{},"_nodeVersion":"0.12.6","dependencies":{"t7":"~0.2.0"},"devDependencies":{"grunt":"^0.4.5","grunt-babel":"^5.0.1","grunt-browserify":"^3.8.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-uglify":"^0.9.1"}},"0.1.11":{"name":"inferno","version":"0.1.11","author":{"name":"Dominic Gannaway"},"license":"ISC","_id":"inferno@0.1.11","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"b94e521f5c4f349b74b0b606236f57e7213fc26c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.1.11.tgz","integrity":"sha512-eXAy252ILFB++x2HG9F3kcU/owveqMA5k06ryFiGITgFZnydFEWBBQZY4VHNq/p11qFmSWnZKYgeW/HoTFDj9A==","signatures":[{"sig":"MEUCIGYh3ZoH7pPJK1T2jbWoEmGz+qdYy1PrNitKNSn+hq6qAiEAhZSZ1H1Nqn9azIemklyxcWPTc8GCEJOvP2rrAy0eSH0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"b94e521f5c4f349b74b0b606236f57e7213fc26c","gitHead":"9b1b9028ed13d75949cc09c1d4ff6ee6ce862a44","scripts":{"test":"echo \"Error: no test specified\" && exit 1","preinstall":"npm install -g grunt-cli"},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+ssh://git@github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"2.11.2","description":"A framework for building lightning fast user interfaces","directories":{},"_nodeVersion":"0.12.6","dependencies":{"t7":"~0.2.0"},"devDependencies":{"grunt":"^0.4.5","grunt-babel":"^5.0.1","grunt-browserify":"^3.8.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-uglify":"^0.9.1"}},"0.4.0":{"name":"inferno","version":"0.4.0","keywords":["es2015"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.4.0","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"d9005412ec0549940594eede1823b42ad6e19740","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.4.0.tgz","integrity":"sha512-0sxM5lCa2SNp7wdw4NefqDPPNmWGArQE3CBt7gkB17bQ3bczu9VWXSnV3RphKYJMLSnhM7Zsvrxh7ECbQ/fcLw==","signatures":[{"sig":"MEUCIQDEolfGBB+IyRDTOYNO64B7znaub7mLTcS8zeExh0MhfwIgWp43Bxgg0ebLZJHgSBhP/OqVSCt3Tkyys46eGGP6dUg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/inferno.min.js","_from":".","files":["dist","src"],"_shasum":"d9005412ec0549940594eede1823b42ad6e19740","gitHead":"dc855eeb69cee1059436ac4241c28626a4ffa7d5","scripts":{"test":"npm run test:server && npm run test:browser","build":"mkdirp dist && node config/rollup.config.js","clean":"rm -rf coverage && rm -rf dist","browser":"webpack-dev-server --quiet --config config/webpack.dev.conf.js --host 0.0.0.0","lint:fix":"eslint --fix ./src/**/*.js","packages":"npm list --depth=0","preversion":"[[ -z $(git status --porcelain) ]] && npm run build && git add -A dist && git commit -m 'Build lib'","lint:server":"eslint ./test/server/**/*.js","lint:shared":"eslint ./test/shared/**/*.js","lint:source":"eslint ./src/**/*.js","package:dev":"ncu -p -u","postpublish":"git push origin master --follow-tags","test:server":"mocha --opts config/mocha.opts","lint:browser":"eslint ./test/browser/**/*.js","package:prod":"ncu -u","test:browser":"karma start config/karma.conf.js --single-run","watch:server":"npm run test:server -- --watch","package:check":"ncu","package:purge":"rm -rf node_modules","watch:browser":"karma start --auto-watch --no-single-run","package:upgrade":"ncu -u","package:reinstall":"npm run package:purge && npm install"},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+ssh://git@github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"src/index.js","_nodeVersion":"5.0.0","dependencies":{"mkdirp":"^0.5.1","babel-core":"^6.3.21","pre-commit":"^1.1.2","babel-plugin-inferno":"^0.2.0","karma-chrome-launcher":"^0.2.2","babel-plugin-syntax-jsx":"^6.3.13","babel-plugin-syntax-object-rest-spread":"^6.3.13","babel-plugin-transform-object-rest-spread":"^6.3.13"},"devDependencies":{"karma":"^0.13.15","mocha":"^2.3.4","eslint":"^1.10.3","rollup":"^0.21.2","webpack":"^1.12.9","babel-cli":"^6.3.17","uglify-js":"^2.6.1","karma-mocha":"^0.2.1","babel-eslint":"^5.0.0-beta6","babel-loader":"^6.2.0","mocha-loader":"^0.7.1","eslint-loader":"^1.1.1","karma-webpack":"^1.7.0","karma-coverage":"^0.5.3","karma-coveralls":"^1.1.2","karma-sinon-chai":"^1.1.0","npm-check-updates":"^2.5.4","rollup-plugin-npm":"^1.1.0","webpack-dev-server":"^1.14.0","babel-preset-es2015":"^6.3.13","mocha-lcov-reporter":"^1.0.0","rollup-plugin-babel":"^2.2.0","babel-plugin-inferno":"^0.2.4","babel-preset-stage-0":"^6.3.13","karma-mocha-reporter":"^1.1.3","rollup-plugin-replace":"^1.1.0","karma-sourcemap-loader":"^0.3.6","babel-preset-es2015-rollup":"^1.0.0","istanbul-instrumenter-loader":"^0.1.3"}},"0.4.3":{"name":"inferno","version":"0.4.3","keywords":["es2015"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.4.3","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"7e1da25bdeee50e0dee960b600e4cea15dd4d44d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.4.3.tgz","integrity":"sha512-hzJlHb1LiIuKJNPtkEWG55knDe3zE1bAJVR6JH4d2vQ8rpYRKqSOiMysajVvkref9weDfABwpEdwahyA4hwI8Q==","signatures":[{"sig":"MEQCIDrXGtDLu5wcwazNdudDv79TXMD4dMao2gz88mpSsZ8NAiBiz71UDz1CX++Tc08kZ+yZEZYIlrVnoySrTyLvZN0fFg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/inferno.min.js","_from":".","files":["dist","src"],"_shasum":"7e1da25bdeee50e0dee960b600e4cea15dd4d44d","gitHead":"fa01faf2616bd5381225469be65350c1359e6482","scripts":{"lint":"eslint src/ test/shared test/server test/browser","test":"npm run test:server && npm run test:browser","build":"npm run clean && mkdirp dist && babel-node config/rollup.config.js","clean":"rimraf coverage/ dist/","browser":"webpack-dev-server --quiet --config config/webpack.dev.conf.js --host 0.0.0.0","lint:fix":"eslint --fix ./src","packages":"npm list --depth=0","preversion":"[[ -z $(git status --porcelain) ]] && npm run build && git add -A dist && git commit -m 'Build lib'","lint:server":"eslint ./test/server","lint:shared":"eslint ./test/shared","lint:source":"eslint ./src","package:dev":"ncu -p -u","postpublish":"git push origin master --follow-tags","test:server":"mocha --opts config/mocha.opts","lint:browser":"eslint ./test/browser","package:prod":"ncu -u","test:browser":"karma start config/karma.conf.js --single-run","watch:server":"npm run test:server -- --watch","check_env:mac":"node check_env.js","check_env:win":"set NODE_ENV=development && node check_env.js","coverage:node":"babel-node node_modules/isparta/bin/isparta cover node_modules/mocha/bin/_mocha --report lcovonly -- -R spec ./test/node/**/*.js","package:check":"ncu","package:purge":"rm -rf node_modules","watch:browser":"karma start --auto-watch --no-single-run","package:upgrade":"ncu -u","package:reinstall":"npm run package:purge && npm install"},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","pre-commit":["lint:source","test"],"repository":{"url":"git+ssh://git@github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"src/index.js","_nodeVersion":"5.0.0","dependencies":{"dotenv":"^1.2.0","mkdirp":"^0.5.1","rimraf":"^2.5.0","babel-core":"^6.3.26","pre-commit":"^1.1.2","zen-observable":"^0.1.9","babel-plugin-inferno":"^0.2.4","karma-chrome-launcher":"^0.2.2","babel-plugin-syntax-jsx":"^6.3.13","babel-plugin-syntax-object-rest-spread":"^6.3.13","babel-plugin-transform-object-rest-spread":"^6.3.13"},"devDependencies":{"chai":"^3.4.1","karma":"^0.13.15","mocha":"^2.3.4","sinon":"^1.17.2","eslint":"^1.10.3","rollup":"^0.22.0","isparta":"^4.0.0","webpack":"^1.12.9","babel-cli":"^6.3.17","uglify-js":"^2.6.1","babel-core":"^6.3.26","karma-mocha":"^0.2.1","babel-eslint":"^5.0.0-beta6","babel-loader":"^6.2.0","mocha-loader":"^0.7.1","eslint-loader":"^1.1.1","karma-webpack":"^1.7.0","karma-coverage":"^0.5.3","karma-coveralls":"^1.1.2","karma-sinon-chai":"^1.1.0","npm-check-updates":"^2.5.4","rollup-plugin-npm":"^1.1.0","webpack-dev-server":"^1.14.0","babel-preset-es2015":"^6.3.13","mocha-lcov-reporter":"^1.0.0","rollup-plugin-babel":"^2.2.0","babel-plugin-inferno":"^0.2.6","babel-preset-stage-0":"^6.3.13","karma-mocha-reporter":"^1.1.3","rollup-plugin-replace":"^1.1.0","karma-sourcemap-loader":"^0.3.6","rollup-plugin-commonjs":"^2.0.0","babel-plugin-syntax-jsx":"^6.3.13","babel-preset-es2015-rollup":"^1.0.0","isparta-instrumenter-loader":"^1.0.0","babel-plugin-syntax-object-rest-spread":"^6.3.13","babel-plugin-transform-object-rest-spread":"^6.3.13"}},"0.4.4":{"name":"inferno","version":"0.4.4","keywords":["es2015"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.4.4","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"9b5f70e70f3477f939dbe776ba91eb9374346ab3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.4.4.tgz","integrity":"sha512-BCCmCKAAfXRwgfGfoOxH+F0DhWR9epX9UUpNDZa7ooToGkE97hxjsvFdoCbTXPXha3rGQmSweWUKYo2XdVeCwg==","signatures":[{"sig":"MEQCIDdpePe13evrKxkYBMqt7tm7p6CIMSy9TETDTHII70hQAiBm+u3GIN+3mRHRg6HNzuA1WrhDTf7OeN6SQot3MJ3ZLw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/inferno.min.js","_from":".","files":["dist","src"],"_shasum":"9b5f70e70f3477f939dbe776ba91eb9374346ab3","gitHead":"b1ba04923f860bd1b657c81668ed0401f987e02f","scripts":{"lint":"eslint src/ test/shared test/server test/browser","test":"npm run test:server && npm run test:browser","build":"npm run clean && mkdirp dist && babel-node config/rollup.config.js","clean":"rimraf coverage/ dist/","browser":"webpack-dev-server --quiet --config config/webpack.dev.conf.js --host 0.0.0.0","lint:fix":"eslint --fix ./src","packages":"npm list --depth=0","preversion":"[[ -z $(git status --porcelain) ]] && npm run build && git add -A dist && git commit -m 'Build lib'","lint:server":"eslint ./test/server","lint:shared":"eslint ./test/shared","lint:source":"eslint ./src","package:dev":"ncu -p -u","postpublish":"git push origin master --follow-tags","test:server":"mocha --opts config/mocha.opts","lint:browser":"eslint ./test/browser","package:prod":"ncu -u","test:browser":"karma start config/karma.conf.js --single-run","watch:server":"npm run test:server -- --watch","check_env:mac":"node check_env.js","check_env:win":"set NODE_ENV=development && node check_env.js","coverage:node":"babel-node node_modules/isparta/bin/isparta cover node_modules/mocha/bin/_mocha --report lcovonly -- -R spec ./test/node/**/*.js","package:check":"ncu","package:purge":"rm -rf node_modules","watch:browser":"karma start --auto-watch --no-single-run","package:upgrade":"ncu -u","package:reinstall":"npm run package:purge && npm install"},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","pre-commit":["lint:source","test"],"repository":{"url":"git+ssh://git@github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"src/index.js","_nodeVersion":"5.0.0","dependencies":{"dotenv":"^1.2.0","mkdirp":"^0.5.1","rimraf":"^2.5.0","babel-core":"^6.3.26","pre-commit":"^1.1.2","zen-observable":"^0.1.9","babel-plugin-inferno":"^0.2.4","karma-chrome-launcher":"^0.2.2","babel-plugin-syntax-jsx":"^6.3.13","babel-plugin-syntax-object-rest-spread":"^6.3.13","babel-plugin-transform-object-rest-spread":"^6.3.13"},"devDependencies":{"chai":"^3.4.1","karma":"^0.13.15","mocha":"^2.3.4","sinon":"^1.17.2","eslint":"^1.10.3","rollup":"^0.22.0","isparta":"^4.0.0","webpack":"^1.12.9","babel-cli":"^6.3.17","uglify-js":"^2.6.1","babel-core":"^6.3.26","karma-mocha":"^0.2.1","babel-eslint":"^5.0.0-beta6","babel-loader":"^6.2.0","mocha-loader":"^0.7.1","eslint-loader":"^1.1.1","karma-webpack":"^1.7.0","karma-coverage":"^0.5.3","karma-coveralls":"^1.1.2","karma-sinon-chai":"^1.1.0","npm-check-updates":"^2.5.4","rollup-plugin-npm":"^1.1.0","webpack-dev-server":"^1.14.0","babel-preset-es2015":"^6.3.13","mocha-lcov-reporter":"^1.0.0","rollup-plugin-babel":"^2.2.0","babel-plugin-inferno":"^0.2.6","babel-preset-stage-0":"^6.3.13","karma-mocha-reporter":"^1.1.3","rollup-plugin-replace":"^1.1.0","karma-sourcemap-loader":"^0.3.6","rollup-plugin-commonjs":"^2.0.0","babel-plugin-syntax-jsx":"^6.3.13","babel-preset-es2015-rollup":"^1.0.0","isparta-instrumenter-loader":"^1.0.0","babel-plugin-syntax-object-rest-spread":"^6.3.13","babel-plugin-transform-object-rest-spread":"^6.3.13"}},"0.4.5":{"name":"inferno","version":"0.4.5","keywords":["es2015"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.4.5","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"7f569acb77a1fd8c4e5450e9a9d50c5fdc76af98","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.4.5.tgz","integrity":"sha512-cMgldOcvgyEr47Zh8Ig/P1HQ+lzI44pIoMWBneyKikMOP9ztMQLn/BZjNyyXz/2cvZnbFOeKbcn8kZIV3vSxNQ==","signatures":[{"sig":"MEQCIFVI34mnCoz4uzMZz4KxUrbKL1rZR9iuNEJwDl5lwVnHAiAPXc2h+Iu7FaXzDA1wS7/+CSx8NYfxWGG8z9A41FVDyQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/inferno.min.js","_from":".","files":["dist","src"],"_shasum":"7f569acb77a1fd8c4e5450e9a9d50c5fdc76af98","gitHead":"6bd78eb959633498a68a915a2dbbb6521eb47b15","scripts":{"lint":"eslint src/ test/shared test/server test/browser","test":"npm run test:server && npm run test:browser","build":"npm run clean && mkdirp dist && babel-node config/rollup.config.js","clean":"rimraf coverage/ dist/","browser":"webpack-dev-server --quiet --config config/webpack.dev.conf.js --host 0.0.0.0","lint:fix":"eslint --fix ./src","packages":"npm list --depth=0","preversion":"[[ -z $(git status --porcelain) ]] && npm run build && git add -A dist && git commit -m 'Build lib'","lint:server":"eslint ./test/server","lint:shared":"eslint ./test/shared","lint:source":"eslint ./src","package:dev":"ncu -p -u","postpublish":"git push origin master --follow-tags","test:server":"mocha --opts config/mocha.opts","lint:browser":"eslint ./test/browser","package:prod":"ncu -u","test:browser":"karma start config/karma.conf.js --single-run","watch:server":"npm run test:server -- --watch","check_env:mac":"node check_env.js","check_env:win":"set NODE_ENV=development && node check_env.js","coverage:node":"babel-node node_modules/isparta/bin/isparta cover node_modules/mocha/bin/_mocha --report lcovonly -- -R spec ./test/node/**/*.js","package:check":"ncu","package:purge":"rm -rf node_modules","watch:browser":"karma start --auto-watch --no-single-run","package:upgrade":"ncu -u","package:reinstall":"npm run package:purge && npm install"},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","pre-commit":["lint:source","test"],"repository":{"url":"git+ssh://git@github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"src/index.js","_nodeVersion":"5.0.0","dependencies":{"dotenv":"^1.2.0","mkdirp":"^0.5.1","rimraf":"^2.5.0","babel-core":"^6.3.26","pre-commit":"^1.1.2","zen-observable":"^0.1.9","babel-plugin-inferno":"^0.2.4","karma-chrome-launcher":"^0.2.2","babel-plugin-syntax-jsx":"^6.3.13","babel-plugin-syntax-object-rest-spread":"^6.3.13","babel-plugin-transform-object-rest-spread":"^6.3.13"},"devDependencies":{"chai":"^3.4.1","karma":"^0.13.15","mocha":"^2.3.4","sinon":"^1.17.2","eslint":"^1.10.3","rollup":"^0.22.0","isparta":"^4.0.0","webpack":"^1.12.9","babel-cli":"^6.3.17","uglify-js":"^2.6.1","babel-core":"^6.3.26","karma-mocha":"^0.2.1","babel-eslint":"^5.0.0-beta6","babel-loader":"^6.2.0","mocha-loader":"^0.7.1","eslint-loader":"^1.1.1","karma-webpack":"^1.7.0","karma-coverage":"^0.5.3","karma-coveralls":"^1.1.2","karma-sinon-chai":"^1.1.0","npm-check-updates":"^2.5.4","rollup-plugin-npm":"^1.1.0","webpack-dev-server":"^1.14.0","babel-preset-es2015":"^6.3.13","mocha-lcov-reporter":"^1.0.0","rollup-plugin-babel":"^2.2.0","babel-plugin-inferno":"^0.2.9","babel-preset-stage-0":"^6.3.13","karma-mocha-reporter":"^1.1.3","rollup-plugin-replace":"^1.1.0","karma-sourcemap-loader":"^0.3.6","rollup-plugin-commonjs":"^2.1.0","babel-plugin-syntax-jsx":"^6.3.13","babel-preset-es2015-rollup":"^1.0.0","isparta-instrumenter-loader":"^1.0.0","babel-plugin-syntax-object-rest-spread":"^6.3.13","babel-plugin-transform-object-rest-spread":"^6.3.13"}},"0.5.5":{"name":"inferno","version":"0.5.5","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.5.5","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"49cb4ab188bbd204eb54c80e45c2ddc2e9eb5637","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.5.5.tgz","integrity":"sha512-CbiqB8GJ007sZ7pa0ljCJLht7DJqW0RHuJBOPBhJZh2e3+kWlVdmlTbUvbs/TF0qez0sz57KYur/XHQmf3kFyw==","signatures":[{"sig":"MEQCIARg1uFEzGoV6c7JmPJOy9vdzZXzmz8iIstRQdGxblIKAiA+LBBCFXpwpOjDcvdjPcUshFHg6E5bD2xMpDNsbk4iIw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"../../dist/inferno.min.js","_from":".","_shasum":"49cb4ab188bbd204eb54c80e45c2ddc2e9eb5637","scripts":{"build":"npm run build:prod && npm run build:dev","clean":"rimraf ../../coverage/ ../../dist/","build:dev":"node ../../config/rollup.config.js dev ../../dist src inferno Inferno","build:prod":"node ../../config/rollup.config.js prod ../../dist src inferno Inferno"},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"https://github.com/trueadm/inferno/tree/master/packages/inferno","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"src/index.js","_nodeVersion":"5.0.0","dependencies":{"mkdirp":"^0.5.1","rimraf":"^2.5.0","babel-core":"^6.3.26"},"devDependencies":{"rollup":"^0.24.0","babel-cli":"^6.4.0","babel-register":"^6.3.13","rollup-plugin-npm":"^1.2.1","babel-preset-es2015":"^6.3.13","rollup-plugin-babel":"^2.3.8","babel-preset-stage-0":"^6.3.13","rollup-plugin-replace":"^1.1.0","babel-preset-es2015-rollup":"^1.0.0"}},"0.5.6":{"name":"inferno","version":"0.5.6","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.5.6","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"109792936f5de5f77932cc149b8fb6321cd81d31","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.5.6.tgz","integrity":"sha512-xI6fsDzDv4ISRaglR+BdZTOml9uw2TV54HzdoFcLEmL9oBEeacMIP6ZKI7dhtBwaNihKIupI04B4iVGvKUlYgQ==","signatures":[{"sig":"MEYCIQDJBB34kmoDge1RO93MihkEQ0nyh4qNiLw1IOfayaz5twIhAKSEwYzKIpP9SLVtM+w+q3vQTxO5u93XJJwmLikhSSca","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"../../dist/inferno.min.js","_from":".","_shasum":"109792936f5de5f77932cc149b8fb6321cd81d31","scripts":{"build":"npm run build:prod && npm run build:dev","clean":"rimraf ../../coverage/ ../../dist/","build:dev":"node ../../config/rollup.config.js dev ../../dist src inferno Inferno","build:prod":"node ../../config/rollup.config.js prod ../../dist src inferno Inferno"},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"https://github.com/trueadm/inferno/tree/master/packages/inferno","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"src/index.js","_nodeVersion":"5.0.0","dependencies":{"mkdirp":"^0.5.1","rimraf":"^2.5.0","babel-core":"^6.3.26"},"devDependencies":{"rollup":"^0.24.0","babel-cli":"^6.4.0","babel-register":"^6.3.13","rollup-plugin-npm":"^1.2.1","babel-preset-es2015":"^6.3.13","rollup-plugin-babel":"^2.3.8","babel-preset-stage-0":"^6.3.13","rollup-plugin-replace":"^1.1.0","babel-preset-es2015-rollup":"^1.0.0"}},"0.5.7":{"name":"inferno","version":"0.5.7","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.5.7","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"24a895c7999ce3dc8d91434a9a3d5aefc1e14fee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.5.7.tgz","integrity":"sha512-LrP27myxL5tUc1ye0UlVfHenKek8UE0OA1YhBkPDRViy/qw+vsIUoi/Lci5TorDbyChDD0xtaS/IA42fc8vcyQ==","signatures":[{"sig":"MEUCIGpyshASeO8QImp2bnY4DwPAHiiLdv2QrvkNPdk5q9oLAiEAxbdojWYCcl+/0N0VAwK0KElERZB63J5dBJ95ffselCo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"../../dist/inferno.min.js","_from":".","_shasum":"24a895c7999ce3dc8d91434a9a3d5aefc1e14fee","scripts":{"build":"npm run build:prod && npm run build:dev","clean":"rimraf ../../coverage/ ../../dist/","build:dev":"node ../../config/rollup.config.js dev ../../dist src inferno Inferno","build:prod":"node ../../config/rollup.config.js prod ../../dist src inferno Inferno"},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"https://github.com/trueadm/inferno/tree/master/packages/inferno","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"src/index.js","_nodeVersion":"5.0.0","dependencies":{"mkdirp":"^0.5.1","rimraf":"^2.5.0","babel-core":"^6.3.26"},"devDependencies":{"rollup":"^0.24.0","babel-cli":"^6.4.0","babel-register":"^6.3.13","rollup-plugin-npm":"^1.2.1","babel-preset-es2015":"^6.3.13","rollup-plugin-babel":"^2.3.8","babel-preset-stage-0":"^6.3.13","rollup-plugin-replace":"^1.1.0","babel-preset-es2015-rollup":"^1.0.0"}},"0.5.8":{"name":"inferno","version":"0.5.8","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.5.8","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"97e268e6a56de8e2ba23c7854eac6286b30ca81a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.5.8.tgz","integrity":"sha512-JDGhK4WMrS3OKh9g6hL9TuhfwrfIX9QmIto4UcrRmP3FM5Ocu+hJO24L/nNen8eJPxnuKsK9vhQTKx/kTbs8rQ==","signatures":[{"sig":"MEUCIDtlRqCafziH1Dk69hHWBkYchz4Pa5fQsYiTx8EWnUQbAiEAxjocBOi2a/7HyyOcVBsOe4eV357kxZyU4CQAsx7wnN4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/inferno.min.js","_from":".","_shasum":"97e268e6a56de8e2ba23c7854eac6286b30ca81a","scripts":{"build":"npm run build:prod && npm run build:dev","clean":"rimraf ../../coverage/ ../../dist/","build:dev":"node ../../config/rollup.config.js dev ../../dist src inferno Inferno","build:prod":"node ../../config/rollup.config.js prod ../../dist src inferno Inferno"},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"src/index.js","_nodeVersion":"5.0.0","dependencies":{"mkdirp":"^0.5.1","rimraf":"^2.5.0","babel-core":"^6.3.26"},"devDependencies":{"rollup":"^0.24.0","babel-cli":"^6.4.0","babel-register":"^6.3.13","rollup-plugin-npm":"^1.2.1","babel-preset-es2015":"^6.3.13","rollup-plugin-babel":"^2.3.8","babel-preset-stage-0":"^6.3.13","rollup-plugin-replace":"^1.1.0","babel-preset-es2015-rollup":"^1.0.0"}},"0.5.9":{"name":"inferno","version":"0.5.9","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.5.9","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"4054acb3a89e4eab400899367ed1178fd6bb1a13","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.5.9.tgz","integrity":"sha512-zwMBkcfM1uR3gIXbIZd9YTdmnkwTPcKM/t05NFpwE1pzQVaW1iBtVLQbcZ5HdUBMRP1/GWZvpSaJc44v5WPe3g==","signatures":[{"sig":"MEUCIG4XjFL+nrnl91ln+Ox366nmTxEfrHnAMfSey/Sjn785AiEAr9Qx7prAjNZlYxPVg9gpJRrbQXC8//xvSW2iGkKqL7A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/inferno.min.js","_from":".","_shasum":"4054acb3a89e4eab400899367ed1178fd6bb1a13","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"./src/index.js","_nodeVersion":"5.0.0","dependencies":{"mkdirp":"^0.5.1","rimraf":"^2.5.0","babel-core":"^6.3.26"},"devDependencies":{"rollup":"^0.24.0","babel-cli":"^6.4.0","babel-register":"^6.3.13","rollup-plugin-npm":"^1.2.1","babel-preset-es2015":"^6.3.13","rollup-plugin-babel":"^2.3.8","babel-preset-stage-0":"^6.3.13","rollup-plugin-replace":"^1.1.0","babel-preset-es2015-rollup":"^1.0.0"}},"0.5.10":{"name":"inferno","version":"0.5.10","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.5.10","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"c8babfdb192f82654fe10764c0847993ff2a0569","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.5.10.tgz","integrity":"sha512-menFOd0UBfO3rN1DFwzyOkJfQRqpB+PJCXHNS7MZYqqPpP95M+UFxPc97MH2mGRJ8x+1SrrB7a2xe0yP+VCRAQ==","signatures":[{"sig":"MEYCIQDZE4Wh13vMxp058G1AtZKSV76JATPDcX0zzZP3lRtmbQIhAJXyitYhOdprjR8E8yn4vXlS8iH8T74fSKnLb/F9+yJV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"c8babfdb192f82654fe10764c0847993ff2a0569","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"index.js","_nodeVersion":"5.0.0","dependencies":{"mkdirp":"^0.5.1","rimraf":"^2.5.0","babel-core":"^6.3.26"},"devDependencies":{"rollup":"^0.24.0","babel-cli":"^6.4.0","babel-register":"^6.3.13","rollup-plugin-npm":"^1.2.1","babel-preset-es2015":"^6.3.13","rollup-plugin-babel":"^2.3.8","babel-preset-stage-0":"^6.3.13","rollup-plugin-replace":"^1.1.0","babel-preset-es2015-rollup":"^1.0.0"}},"0.5.11":{"name":"inferno","version":"0.5.11","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.5.11","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"06e58533fea63901c995566e6956fb7afd296eb3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.5.11.tgz","integrity":"sha512-oKTNO2MgnktwRUfIJ5unGxVfY7f4dTPjerRODjfFFW8voZ0SsTm0J6gFNzBGIhXvpierLFpOFT7uw7W4YDlMkw==","signatures":[{"sig":"MEYCIQD5vOHvkLQgVx56BLXAf+xR9b4eL9tYW/BsGsC9g0D+ZQIhAOlx7lZPn08LFki/VoGNlv++RL7vLLe/igwa2vOsi8oY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","files":["LICENSE","dist/"],"_shasum":"06e58533fea63901c995566e6956fb7afd296eb3","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"index.js","_nodeVersion":"5.0.0","dependencies":{"mkdirp":"^0.5.1","rimraf":"^2.5.0","babel-core":"^6.3.26"},"devDependencies":{"rollup":"^0.24.0","babel-cli":"^6.4.0","babel-register":"^6.3.13","rollup-plugin-npm":"^1.2.1","babel-preset-es2015":"^6.3.13","rollup-plugin-babel":"^2.3.8","babel-preset-stage-0":"^6.3.13","rollup-plugin-replace":"^1.1.0","babel-preset-es2015-rollup":"^1.0.0"}},"0.5.12":{"name":"inferno","version":"0.5.12","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.5.12","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"f4c0794898c82609f42fbe0ed779c228af503451","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.5.12.tgz","integrity":"sha512-r9SLRupGaMr7UeCfsq/5hdptnfWLJi9N2C2z7dXGvremLBkaG4F4A7O4B19hWwOGECgJGLtR3ZkygparnC86nA==","signatures":[{"sig":"MEUCIQDzcgZEvKUUUNNqnjC+zWn6/9u4V2VhM01V5vCVJgra9wIgV2i999cYMiuf3ZQurhiTIamcl99By0f6aA+rlKI/Opg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","files":["LICENSE","dist/"],"_shasum":"f4c0794898c82609f42fbe0ed779c228af503451","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"inferno.js","_nodeVersion":"5.0.0","dependencies":{"mkdirp":"^0.5.1","rimraf":"^2.5.0","babel-core":"^6.3.26"},"devDependencies":{"rollup":"^0.24.0","babel-cli":"^6.4.0","babel-register":"^6.3.13","rollup-plugin-npm":"^1.2.1","babel-preset-es2015":"^6.3.13","rollup-plugin-babel":"^2.3.8","babel-preset-stage-0":"^6.3.13","rollup-plugin-replace":"^1.1.0","babel-preset-es2015-rollup":"^1.0.0"}},"0.5.13":{"name":"inferno","version":"0.5.13","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.5.13","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"188a9928ac1ce1c84da41d8c26f504318922c3e1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.5.13.tgz","integrity":"sha512-www7DfEiuhu/rY74Z6QgqDQWP1feBMeBBmD9hNJs87zt9j2CjBzvZZEIn9tPh98FkCZIg4h3h0xNe+ybeGIDig==","signatures":[{"sig":"MEQCICF0LX7fLfvY0h79ujOYj0x0QJJxc9sZH7E5mwPPjnwiAiBFxrFQZgwasks8YlSWxkbYOFvss2R0xos9QQhxqlvhDQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","files":["LICENSE","dist/"],"_shasum":"188a9928ac1ce1c84da41d8c26f504318922c3e1","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"inferno.js","_nodeVersion":"5.0.0","dependencies":{"mkdirp":"^0.5.1","rimraf":"^2.5.0","babel-core":"^6.3.26"},"devDependencies":{"rollup":"^0.24.0","babel-cli":"^6.4.0","babel-register":"^6.3.13","rollup-plugin-npm":"^1.2.1","babel-preset-es2015":"^6.3.13","rollup-plugin-babel":"^2.3.8","babel-preset-stage-0":"^6.3.13","rollup-plugin-replace":"^1.1.0","babel-preset-es2015-rollup":"^1.0.0"}},"0.5.16":{"name":"inferno","version":"0.5.16","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.5.16","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"345a233efe414cd5268692a26c3557f513bbda05","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.5.16.tgz","integrity":"sha512-L6mL7mRDRzFvt7I1cKGaln24mFw4GclYT/wiBmx+kKishNYLXcdgYU+aRlJqLM7xHHkAr7VMgTEs9ce1+D6ZWA==","signatures":[{"sig":"MEQCIH+fjKRKDtIuuTn9h9Ns7jeItXYymDnoAynhvr/YGWTiAiBfXd/fcpEkJT/fAcVNHop2prwyj8zGY50QRzr3dkno2Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","files":["LICENSE","dist/"],"_shasum":"345a233efe414cd5268692a26c3557f513bbda05","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.12","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"inferno.js","_nodeVersion":"5.4.1"},"0.5.17":{"name":"inferno","version":"0.5.17","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.5.17","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"4fef125b359b59eb6c1396dace4678de6b978be4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.5.17.tgz","integrity":"sha512-DOuxueuNB/2sMDMWiKHMO0WBTd7dI89PACbVHtSd2Eg4hySKoeDeECMZrZgiQ55Bg6TtDbEMrWUv1OGGUAvCxg==","signatures":[{"sig":"MEQCIG16lYVhOTVpdM2F8NFNBgTyV6ACH3B25CLCLnoME2MHAiAfONz64VCc/2PqZpwsjfCuzQ929WMP2t08pDZhLq/qxg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","files":["LICENSE","dist/"],"_shasum":"4fef125b359b59eb6c1396dace4678de6b978be4","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.12","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"inferno.js","_nodeVersion":"5.4.1"},"0.5.18":{"name":"inferno","version":"0.5.18","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.5.18","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"3997bd4dbb07eda4331f86ccead648454daa8d6e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.5.18.tgz","integrity":"sha512-d9Vx+ZNo8Jqm3wh5usW47hsfcN7UKZoZHwkSss0Hgmzvnw43VGwEKU4KshZ6+AVUiYNRqLc9oYPScZb4vMFmnw==","signatures":[{"sig":"MEQCICPOa73UWCjFNZ6R+ZC1SpZEWLcio0rR8wea9QbYhvmIAiA3PvZr6zIwk7A1CUpichdYzieI9qpZxUbLifp0HqDFfQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","files":["LICENSE","dist/"],"_shasum":"3997bd4dbb07eda4331f86ccead648454daa8d6e","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"inferno.js","_nodeVersion":"5.0.0"},"0.5.20":{"name":"inferno","version":"0.5.20","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.5.20","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"d26a4bf666ffa28386970f82e0959df1e6b32762","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.5.20.tgz","integrity":"sha512-2HDNtbDufb6k/frc/jKOtm/+Ds3VyNs+TLyDhyj7zNKuvcbuEfNhcYkWm0JdFt/Q17whowX0ImkiSc3YYIV10g==","signatures":[{"sig":"MEUCIFcOytNQFYtV0IaeW3KGi1YBOaE5FG4LY1GC8oYbuSARAiEA2c838Fcp9y5qK5shynrFhBoSH8ewuTgHKu6Ybae6tEw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","files":["LICENSE","dist/"],"_shasum":"d26a4bf666ffa28386970f82e0959df1e6b32762","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.12","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"dist/inferno.es2015.js","_nodeVersion":"5.4.1"},"0.5.21":{"name":"inferno","version":"0.5.21","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.5.21","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"2ea0615ba2dd08136f45a390e95487a365ce0e61","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.5.21.tgz","integrity":"sha512-UYXrtkNYBWORint0IHLNX2ACWYreCFG8rpKyUFC4SNqboPU+zyObM43TjYmC1TjUDoveKLcVkoL2x4xAEOGoWQ==","signatures":[{"sig":"MEUCIBa0uXFfEm1HsMwMiwdmJeEE+j/uEDv53MmYvgiLlg7hAiEA/Wts7ujJYeEUyvWWoi2Gdpx35LVMP0CuWn3EB8GBytE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","files":["LICENSE","dist/"],"_shasum":"2ea0615ba2dd08136f45a390e95487a365ce0e61","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"dist/inferno.es2015.js","_nodeVersion":"5.0.0"},"0.5.22":{"name":"inferno","version":"0.5.22","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.5.22","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"a00696bc5d485c25a5e482414201793aeec47c30","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.5.22.tgz","integrity":"sha512-Z0VCNzb30lTYIKvecKQJ54lB9PblCwNJqZ28+TC7btTzg0k+x7UL8ZOvnfVr4x6xFKuapsWQqb5jV44FsStOkg==","signatures":[{"sig":"MEQCIEn6NLt7pf3tXm5Tf/4SC6npKno+GrnrmxrLt/EbV+7+AiALmOZThMaL9CLC6erc5NQoyRRd8a0y6xAmD46lhHrQZg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","files":["LICENSE","dist/"],"_shasum":"a00696bc5d485c25a5e482414201793aeec47c30","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"dist/inferno.es2015.js","_nodeVersion":"5.0.0"},"0.6.0":{"name":"inferno","version":"0.6.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.6.0","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"8ac4b6f5c2ba04420911d4bb3199ae1552dba857","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.6.0.tgz","integrity":"sha512-+8bXJPPV2/ZIVE89tEMkYQbmQUAhhZ4/Y45ayw2KRycZsMSEalaAycZo3fhHKUI3vcfzrqPu/NfS7ZixdlbNKg==","signatures":[{"sig":"MEQCIDyCsv4FVlT11/VXKhXv7pZawD0rg7LQbcewF3Cgc4CDAiBCvxe93Q3pD4Hd4eYwY77rLMd3x/8lNXDmkZX2spY8Uw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","files":["LICENSE","dist/"],"_shasum":"8ac4b6f5c2ba04420911d4bb3199ae1552dba857","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"dist/inferno.es2015.js","_nodeVersion":"5.0.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.6.0.tgz_1459010594660_0.8142839570064098","host":"packages-12-west.internal.npmjs.com"}},"0.6.1":{"name":"inferno","version":"0.6.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.6.1","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"3a6078014e3c17ed5ab96deadf72898cdf685673","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.6.1.tgz","integrity":"sha512-eJ/pKR/229dclwMEXXFXKwnXZVUO3n1shu5dZM2UVBqClweXmnl7f/4m85kP6swAGK99kD8A0d/r3kBFVWD3mg==","signatures":[{"sig":"MEQCIBcEqOiGbIIpoiJyGE6onVkY8KtBw9OApcf/1AIMtmbGAiA8WZssUtLRUBhbzIC9q2clAtekPC/NY6FYcLLA+IuuLQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","files":["LICENSE","dist/"],"_shasum":"3a6078014e3c17ed5ab96deadf72898cdf685673","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"dist/inferno.es2015.js","_nodeVersion":"5.0.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.6.1.tgz_1459030400109_0.6101414558943361","host":"packages-12-west.internal.npmjs.com"}},"0.6.2":{"name":"inferno","version":"0.6.2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.6.2","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"713803d0ee510aae91b0a62661e567fb9f013942","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.6.2.tgz","integrity":"sha512-ZwxreB58BrwaFT0I0xf08RTPTXrdp0P0xaQ7AiWfvDtwOqoqO548ZOR1ATZ8fhKcHOI+4+A9eUALCb+W/4AC2A==","signatures":[{"sig":"MEUCIA/Y/fQi9DXS4BN3oAr64DaRXs0x7u4BbgklO/ZFSC12AiEA2xljk1Ap8khEfwrHJelj4FrrgICqjSsbyNwDgXcjM6w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","files":["LICENSE","dist/"],"_shasum":"713803d0ee510aae91b0a62661e567fb9f013942","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"dist/inferno.es2015.js","_nodeVersion":"5.0.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.6.2.tgz_1459034867674_0.09677719767205417","host":"packages-16-east.internal.npmjs.com"}},"0.6.3":{"name":"inferno","version":"0.6.3","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.6.3","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"5d8bac247a45220c7fc4133f704b6c7a9619ce72","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.6.3.tgz","integrity":"sha512-HrK0oLqU8sBE+1UuX2ethHMCulRkI07FdSe9God0bbP/pTrE4UBelM9dt4STOxbiAI3gFgzvKdtzQFzb7O2+hQ==","signatures":[{"sig":"MEUCIGFboGFYm3YCb1z9cKoOTPDptBRRTomO454g3FBLTUfQAiEAw7ra1lGP5PeDB+0rwX/WMsvabbiYCNH15KBn9y0xmyk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","files":["LICENSE","dist/"],"_shasum":"5d8bac247a45220c7fc4133f704b6c7a9619ce72","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"dist/inferno.es2015.js","_nodeVersion":"5.0.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.6.3.tgz_1459035573093_0.2003397608641535","host":"packages-16-east.internal.npmjs.com"}},"0.6.4":{"name":"inferno","version":"0.6.4","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.6.4","maintainers":[{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"0f8f1c941dd60c10cb78612cab3f6badee4ced4c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.6.4.tgz","integrity":"sha512-cSi4me4OuIr7iLi9qdzos8oqYCt7hvQ8oAClCNEro9x9Jjpl373f/7GqclXII2LcijvK+OVdaVrMqbjUwfQLIw==","signatures":[{"sig":"MEYCIQCnwz8FQKB4WXq1wbgqr5VotGckQ4+6xconmufHnkg5tAIhAIQ/Fyi+e8Nx2RNySoj5mx33nVUAvNqmLvrJ2nuREV9P","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","files":["LICENSE","dist/"],"_shasum":"0f8f1c941dd60c10cb78612cab3f6badee4ced4c","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.3.6","description":"A framework for building lightning fast user interfaces","directories":{},"jsnext:main":"dist/inferno.es2015.js","_nodeVersion":"5.0.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.6.4.tgz_1459036377750_0.8791856241878122","host":"packages-16-east.internal.npmjs.com"}},"0.7.0":{"name":"inferno","version":"0.7.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.7.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"6c622cad19014fc4831fbc4f49217682ddc460b6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.0.tgz","integrity":"sha512-3g3hd9AcDIP0KUeCYBpsavMoVeh8LAz976QXQ3T/w5SarQ9u5ySvsPDnzKgY9MVRwSS57RK2iVtbyXLVxGQ2Ag==","signatures":[{"sig":"MEQCIQCKJ6VvgmKqj7JhPTAcuryK8OFjODVl/EdIZIhUnJi2qQIfAwhfrodiSuEKkD3Q4MkWnMXdq9URkRhMd+t06N9+Sw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"6c622cad19014fc4831fbc4f49217682ddc460b6","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"jsnext:main":"dist/inferno.es2015.js","_nodeVersion":"5.10.1","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.0.tgz_1461270031902_0.21628578775562346","host":"packages-12-west.internal.npmjs.com"}},"0.7.1":{"name":"inferno","version":"0.7.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.7.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"002cdae767c2644be2cbda9fe2f2e2ce8b94bed6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.1.tgz","integrity":"sha512-fRJTzo0d1/fz1s+kY8GPyns3wVsuOSnVem8x0HhqwrdsYTFImXOFKLmQlkgqqR4Q4r22laaUXdGjtZOASD6lzA==","signatures":[{"sig":"MEUCIBuEWXrhTUtcdbojKCr+5xqUve0yv5zsu94FcFdBzMusAiEAs2wo1/Kd991MxMGPwnYy+5tUcv1v5Tf9bskkUn+fxVs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"002cdae767c2644be2cbda9fe2f2e2ce8b94bed6","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"jsnext:main":"dist/inferno.es2015.js","_nodeVersion":"5.10.1","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.1.tgz_1461441829080_0.25094679836183786","host":"packages-16-east.internal.npmjs.com"}},"0.7.2":{"name":"inferno","version":"0.7.2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.7.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"bd22aa6284b889de930249c59f21b1165d5b50f8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.2.tgz","integrity":"sha512-YirW2Ul1UKTWPKSWm3OvoOA+y4Cxn6qpDwajaDS/kKL+glZbnkfl+HLFFe62hRqXe/cTMhZRox5GeaBeiVHAcQ==","signatures":[{"sig":"MEQCICfjkuxX/+ZWZ9Z0kXcMTUX+omtrTRatOQgaDZcts1TaAiAmUn3o00L2e//ZU+kC5KyBnulULYjHgwL30hyqFD+MAg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"bd22aa6284b889de930249c59f21b1165d5b50f8","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"jsnext:main":"dist/inferno.es2015.js","_nodeVersion":"5.10.1","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.2.tgz_1461447430359_0.1260035615414381","host":"packages-16-east.internal.npmjs.com"}},"0.7.3":{"name":"inferno","version":"0.7.3","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.7.3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"689357ef8760848ebe764d66540a0b3897d37c07","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.3.tgz","integrity":"sha512-UjxbHO9p58uH6WhYnFj/S7ZFtPKzJgaxopatt3vdb5M+yIX+4mh7besqy03UkH1pW9S+//LxGYwSneT8OooucQ==","signatures":[{"sig":"MEYCIQDKoyvze/lReqT0UjejMtYWv+i/TH/0Z0RLHazdaW3E5wIhAMml1FarcUF3rexH7sGzAabIMjchoZ38MFb4MDT9n2/3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"689357ef8760848ebe764d66540a0b3897d37c07","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"jsnext:main":"dist/inferno.es2015.js","_nodeVersion":"5.10.1","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.3.tgz_1461448687355_0.0632444922812283","host":"packages-12-west.internal.npmjs.com"}},"0.7.4":{"name":"inferno","version":"0.7.4","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.7.4","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"f7084e283c9cf7a736b2d75d837584a98be521ee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.4.tgz","integrity":"sha512-xKA4V1NGGoPypmpdcmVHIOEU/W7dhKEs0hBxS+zBTETTCI+Krx/3zKHhVXme6J+UQo+wxvVqPC3vQrug3xmQcQ==","signatures":[{"sig":"MEUCIQCA4IJs+HxxOBbWQufjknEgWW2wMLUz/h6e18MTx94LXgIgTUoMpfsPDCWXELpjykO8N1BeqcXmw9lgzvF5ereeWe4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"f7084e283c9cf7a736b2d75d837584a98be521ee","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.6","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.0.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.4.tgz_1462048069303_0.6794832297600806","host":"packages-12-west.internal.npmjs.com"}},"0.7.5":{"name":"inferno","version":"0.7.5","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.7.5","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"186821385c15c1f17477ea0202643e7b72f0aa18","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.5.tgz","integrity":"sha512-TZ0T/THj3nhNP+OfXLXpIX++srpvXzjSPjGdNW7OUlcfT3i3vU5rVVk1Ebn7M9k4wsJWuvuGv8MZ9FCjKZQ05A==","signatures":[{"sig":"MEUCIDPYwDyh7/6GYgpsxlQz0LWFpGGpVUBO9XzEhNKgXds9AiEA8BbdBfHui6wzB6UDiR88FX80wFUxxPakbHBGdQn5gKQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"186821385c15c1f17477ea0202643e7b72f0aa18","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.6","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.0.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.5.tgz_1462048193678_0.35249376157298684","host":"packages-16-east.internal.npmjs.com"}},"0.7.6":{"name":"inferno","version":"0.7.6","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.7.6","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"a345d848d9c0be14eb81a22e604a69c916ccefc0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.6.tgz","integrity":"sha512-rkcfHqyF7+sqNTBByGZeqmG0sy8/ZBtRc9axZKeE601P5rU3E0D3XERq2VvA3xXAyVaUpmhb45w+pYQI0Rr7bA==","signatures":[{"sig":"MEUCIQDWVute+TBsgxdKQwa4D7ZUeYLRlymhEOOT30mS7DEasQIgfgR+xnqb3FIWSFnCqG0WnrmE7yN/mxY5p0eSybD3rjU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"a345d848d9c0be14eb81a22e604a69c916ccefc0","scripts":{},"_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.6","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.0.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.6.tgz_1462084980359_0.4637549000326544","host":"packages-16-east.internal.npmjs.com"}},"0.7.7":{"name":"inferno","version":"0.7.7","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.7.7","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"a24741416c25bfc58c234c3029b4fd10e9309e34","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.7.tgz","integrity":"sha512-nxHC1ta8qowk34IgXOVMF1yrAZksP5B03Ai0KIkOtcamgIAhAr6rifgBr4kcMUcM9wv3rK0jfi6aSSmfhGqTdg==","signatures":[{"sig":"MEUCIEee+O0dicVBtejrNFsXPHGu55/uty2LU48YDDlHpLZUAiEA5IA7gQlWm44Wgu2SwJRheffaaCnR8UiCoyKKDxQH8Gc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"a24741416c25bfc58c234c3029b4fd10e9309e34","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.6","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.0.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.7.tgz_1462653948087_0.031764312414452434","host":"packages-16-east.internal.npmjs.com"}},"0.7.8":{"name":"inferno","version":"0.7.8","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MPL-2.0","_id":"inferno@0.7.8","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"9c4596ddc8a53fce078ec60d2fc9be2f59423d83","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.8.tgz","integrity":"sha512-tZxcrN2B5kmuZdbVPARMDLBxl0wn7dbqaIBOViUAUi1O8k62z2qhL9OJi90JXlFSgHjgoG20O1O8vIuGA+cg9A==","signatures":[{"sig":"MEYCIQCLq8CUZcL5gatDp7TVFqKxaF354s0p649wz0ARShE2+QIhAMaaRdu69al0yz9LzH9bxeU03MzjqLldsDf83sCNGLE3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"9c4596ddc8a53fce078ec60d2fc9be2f59423d83","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.8.tgz_1464451286003_0.6428188614081591","host":"packages-16-east.internal.npmjs.com"}},"0.7.9":{"name":"inferno","version":"0.7.9","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.7.9","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"916d07a496a93f56a8695c340614d22c86b2137d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.9.tgz","integrity":"sha512-hPLUOmscIlrags1/tA6amyG5lGyPYzpmfDagdqFVVRaGMEJ3r6/J7Wovwxo/8NU1o8/xSo/YjYbZc0g/1Yhaxw==","signatures":[{"sig":"MEUCIEH7up+P5jKajDbSaeZve0WIqrOYZ9JNME7sjpGDdm5LAiEA9grb3eJkJXbaGz9JIUoGgBvWNJQ02TpqYR0Q9jXj5xA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"916d07a496a93f56a8695c340614d22c86b2137d","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.9.tgz_1465131658048_0.8494016169570386","host":"packages-12-west.internal.npmjs.com"}},"0.7.10":{"name":"inferno","version":"0.7.10","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.7.10","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"ddabcc2b488f8d31f8542d196cc515b9ec995bbe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.10.tgz","integrity":"sha512-zEdAaveBdQCzVpgnJm1fv/6UpZvm0VzM2CAY1qpUdObPxjhrcKIa5Lx9JvWGsx9Ueno3AMHKAkZ+ucRPGI5wqg==","signatures":[{"sig":"MEQCIDvWtxfydHsBW7wZ3XxKgzd0IdAgsSZGDOawAQGslqvKAiA0vVwzrCheYmkGB3/n6cJMZMx7VLart5Yxc5dxjqMYQw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"ddabcc2b488f8d31f8542d196cc515b9ec995bbe","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.10.tgz_1466889265939_0.7752379914745688","host":"packages-12-west.internal.npmjs.com"}},"0.7.11":{"name":"inferno","version":"0.7.11","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.7.11","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"01450e98c4aae4a9ccbaa6cd3a746e360f077828","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.11.tgz","integrity":"sha512-cyCW+88ku41/vD1x/ZvODSbywDH2MXPFMBaMeUSr0U2omXqtEKHKJZYFk/3wUclFcYhEnMdrQfQnvN774J9fuA==","signatures":[{"sig":"MEYCIQCLu7SOg7txqO6QJVltGBI6VB41uarNl62GgenkBkVc3wIhALx9LuaHmFRywL4iyrF0v9SJ6CNgj00/MxT25VxUyK9D","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"01450e98c4aae4a9ccbaa6cd3a746e360f077828","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.11.tgz_1467021369636_0.08845235081389546","host":"packages-12-west.internal.npmjs.com"}},"0.7.12":{"name":"inferno","version":"0.7.12","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.7.12","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"15e92dd47d827dd6e19b27780457b9a7d5f171dc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.12.tgz","integrity":"sha512-Ye6IA805DqyVp+UWXrU9D1on0Yr2ViSlgI7XtcHrvKOxRTUUa/UO0ORUV74n6kOrOx/Vb1qbOBgyYtJs91sujA==","signatures":[{"sig":"MEYCIQC3VeYBACtoOZl4JDrVtYSRbEg/Zibat2lJ6+E8nbaddAIhANXs58YPS+kB+CXUWcTyZ0LxHyFbezp7MGyBH266LgKk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"15e92dd47d827dd6e19b27780457b9a7d5f171dc","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.12.tgz_1467239948070_0.9087455028202385","host":"packages-16-east.internal.npmjs.com"}},"0.7.13":{"name":"inferno","version":"0.7.13","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.7.13","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"994cf87e7c5d5a414a413defef1ab99781acc6cf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.13.tgz","integrity":"sha512-QnN13o3gIIYD30nC2Wjy0UkxWOvhq9mUJttW8FCd1B6i0G8JtERkdpsHt/+wOTwh+99u6Hjmhh16HaX26lBW5Q==","signatures":[{"sig":"MEUCIQDsOFUox+C3Vz0O8hJGxiI0gLA2u0/ANsRRWjAYsoUp8wIgfNZIaf62o88+5bFJHp0gE8b2GlGL5zFrvSy7zPTbDdM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"994cf87e7c5d5a414a413defef1ab99781acc6cf","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.13.tgz_1467326843468_0.6827855701558292","host":"packages-16-east.internal.npmjs.com"}},"0.7.14":{"name":"inferno","version":"0.7.14","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.7.14","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"18eaff848ea60ef940edff1ba736b2365d9d0040","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.14.tgz","integrity":"sha512-/z9LqOmTZv9KfIoAzHatIdysRbvUsmaatOQpYa2m65krHjIT8bPVDEiMeiPrs9L4SdeJuUGQYeUOahAGHrDgdA==","signatures":[{"sig":"MEQCIHVQvugieSF99snAdpkIy0DYEPTgrtqkRb5bM224ODn1AiAt46v4v1nP/P1xIDZcVArglJ43xpvdAJ9e9kRJLsEB1A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"18eaff848ea60ef940edff1ba736b2365d9d0040","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.14.tgz_1467833797886_0.9383490819018334","host":"packages-16-east.internal.npmjs.com"}},"0.7.15":{"name":"inferno","version":"0.7.15","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.7.15","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"35f5c082a9e8c012e7df5d033bb5ec41e578debf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.15.tgz","integrity":"sha512-Gn8YxBBNu2WPNpx/Cm5Nc7xejPa4p5KG0wVXXW1za3marg67eMfwSI0luzT+tWzvC9OjqRZ6aJPpCcuDA6HgmQ==","signatures":[{"sig":"MEUCIQC0sZhETyNtkTqLzg6Gb0xeoPKp6sNL3RmDnNgVgocCLgIgME+Zt1ZVPRjS0/qRMLilzGMtcBkWyBVTc4du7tlx6fE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"35f5c082a9e8c012e7df5d033bb5ec41e578debf","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.15.tgz_1467928403029_0.587912012822926","host":"packages-16-east.internal.npmjs.com"}},"0.7.16":{"name":"inferno","version":"0.7.16","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.7.16","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"5cb3cd3d4bd8032f999a4650fea98b6200594b5e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.16.tgz","integrity":"sha512-zSOfcEFToih9IKmeUkRIwy/FEJp0dvN1bPtB/N2VoLc9Q0cga8J9Jr0BVZW3zMjkFp2RDDgAQJzJQbFJjJuvlw==","signatures":[{"sig":"MEUCIQDrDY5vveSEd9JE4sWwgkR4CfUCFNEoh1CylJB96in34gIgHmYC1Q1v+ZZ+adzuL70NlCu5OCIIOw+/60Uan65/1EE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"5cb3cd3d4bd8032f999a4650fea98b6200594b5e","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.16.tgz_1467973005163_0.27831036876887083","host":"packages-12-west.internal.npmjs.com"}},"0.7.17":{"name":"inferno","version":"0.7.17","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.7.17","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"34a966c2a00dc7dc2b10b50a88eea20bac55a551","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.17.tgz","integrity":"sha512-5Y5iNewYpwODHhLY6cREjx9aISOSkrKtJ7qw5Wy4qdTW7ib32f0QaIufLEu6nLBlIj6sFYpNFf5h1W8HhgTn+Q==","signatures":[{"sig":"MEUCIGXOOItAToWFT54ogSmCmTjhfKuQvI+qylar9Nf4sE9fAiEAwG2+xnx5j/b/WWUJXeNk3R6VDSmxjZDLeXey+kdPCws=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"34a966c2a00dc7dc2b10b50a88eea20bac55a551","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"https://github.com/trueadm/inferno","type":"git"},"_npmVersion":"3.9.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.1","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.17.tgz_1468095786030_0.7337105255573988","host":"packages-12-west.internal.npmjs.com"}},"0.7.20":{"name":"inferno","version":"0.7.20","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.7.20","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"54f8d77005cfd842c6996771366393a9ada531c5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.20.tgz","integrity":"sha512-SRg1n2xxfFrlRc1JO3x7A9+S9Q+BuG0GM9CrlQaY1mK7dGjHXrR5mTKDDHg5mG7LoqPVtfiqI8yPrFsp+hpe9w==","signatures":[{"sig":"MEUCIQD1ZOxZxoTxK4mgnvxtyXtpEtkJLjy6Dib+KU6lNQdkjwIgSLk5SVW+BCGJGXmSJRprqN5To0xNrXw1C3i1BSuHTdw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"54f8d77005cfd842c6996771366393a9ada531c5","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"https://github.com/trueadm/inferno","type":"git"},"_npmVersion":"3.9.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.1","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.20.tgz_1468279634171_0.10088616097345948","host":"packages-16-east.internal.npmjs.com"}},"0.7.21":{"name":"inferno","version":"0.7.21","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.7.21","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"08d564dbf1ee1cd72cfb71cad2208a4352a382dd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.21.tgz","integrity":"sha512-Ypcc7LWEjyrlrkVAwGn1/39EGt/tLJO1jpuK02zdn22YwTq31ir4Y9B0jVeH5nZzwNrLZOK71icNYMm8nQEwkg==","signatures":[{"sig":"MEYCIQCbJqdaC/jDQXDVmvpuwQ9/svS++UtB/j4aLv/kGmPEegIhALgWMKgGLkOKy2cRKiYWv0yPR7ADbGD2ipqAnm2Iivw0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"08d564dbf1ee1cd72cfb71cad2208a4352a382dd","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"https://github.com/trueadm/inferno","type":"git"},"_npmVersion":"3.9.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.1","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.21.tgz_1468322844011_0.9863696007523686","host":"packages-16-east.internal.npmjs.com"}},"0.7.22":{"name":"inferno","version":"0.7.22","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.7.22","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"f2832657ecba93d23865c1c8bb4c24a84fbb7d7e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.22.tgz","integrity":"sha512-+EhsFtORLhtcm3mqH8I1aacjXlEYW5LV8Gg6mc8lsGFRZaUsXOxm3gBuMBuMtFvU0gzYQ4mDLBMjOFDGuIcZxw==","signatures":[{"sig":"MEUCIQD77LOJ4QEq874xQM87b7N3MSXUe7p0/2NoR6YrXztHIAIgC59734q7bumiwYyEc9/56FvrAeZ53exVIE6utCRiSho=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"f2832657ecba93d23865c1c8bb4c24a84fbb7d7e","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.22.tgz_1468874438399_0.033241554629057646","host":"packages-16-east.internal.npmjs.com"}},"0.7.23":{"name":"inferno","version":"0.7.23","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.7.23","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"4e03580d157481c2ab77810d5a7c51ece3655142","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.23.tgz","integrity":"sha512-8TSlBWg3GFHOZXegiQiYmYHMDkk9o5ykwZOFxChzMWHWj2JVVDN4EI69dLc+Z22iVLXOLYIBOvZdkozaOSxuBA==","signatures":[{"sig":"MEQCIAoKRKr36nRynY3ArZUrlN8iBwdLWJEGF9B7IsqR7xm0AiBM3gV+ypSx3DTfe/hy6wpPRsGpqCDgl/t6xbkRZXVfYA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"4e03580d157481c2ab77810d5a7c51ece3655142","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.23.tgz_1469311428381_0.05494480929337442","host":"packages-12-west.internal.npmjs.com"}},"0.7.24":{"name":"inferno","version":"0.7.24","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.7.24","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"316c3fc88ef1144d081d612e439ba719daffdce9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.24.tgz","integrity":"sha512-8YetNC/rm1/iKnsgK/XXrK1SXzWnSuOQG4tXBV0hs7RzISrcHP95vtZKMygT12xQVE557nADzf2z8hHud9LTUw==","signatures":[{"sig":"MEYCIQDflyA3Zl5vJeD80W+ngdlCAPi7RYRZs5X2wJe+04K1OAIhANap5NR82cDaLfLeQk41Zt7dJvjMoRP7kdowLI4ZJqr4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"316c3fc88ef1144d081d612e439ba719daffdce9","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.24.tgz_1469543830595_0.7225522568915039","host":"packages-12-west.internal.npmjs.com"}},"0.7.25":{"name":"inferno","version":"0.7.25","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.7.25","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"300b96859fe6184acc740473aa74d3283b1aebe5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.25.tgz","integrity":"sha512-ETYdESEAaYsg6ULA+tXK+PLybsGcdfLhwwXV7ObcVOaRhEnZfRYaarR45A1RrVOTumgehknPTqxGOCtjDaa/pA==","signatures":[{"sig":"MEUCICIQm6G1y2lSrlIDwtxi4UzMe02NawkFnS1jDBeMuZ5PAiEA7w8AGukATCtwlUG+VGvO20yCo8/Xh0a9LXxbv1BZQPo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"300b96859fe6184acc740473aa74d3283b1aebe5","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.25.tgz_1470349004026_0.052511589135974646","host":"packages-16-east.internal.npmjs.com"}},"0.7.26":{"name":"inferno","version":"0.7.26","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.7.26","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"c1a5598ac196656c4798e8f008e7d3612d624121","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.26.tgz","integrity":"sha512-FJfs44ycQ5EJi2ghXb+3d+QEo6Jw6fPWLQudBLVBdrIzgwlTC8EWcyjlchJKVkitycV5dreJh8N3ADWDP0977Q==","signatures":[{"sig":"MEUCIQDK3nMHuw1B6K03amuO6g6EgR31HQMRojBsG5N3IKiEAwIgNXQ/tr+DdX+y9n045m1HMfLyWqWGVa5TTzakJC41PJc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"c1a5598ac196656c4798e8f008e7d3612d624121","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.26.tgz_1470772920208_0.35588935832493007","host":"packages-16-east.internal.npmjs.com"}},"0.8.0-alpha1":{"name":"inferno","version":"0.8.0-alpha1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.8.0-alpha1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"6532fc1ab39d338e0dde7c89f354bb45ce728b69","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.8.0-alpha1.tgz","integrity":"sha512-oCbtzM3jgYG8U5UFGeZx34lb/omibtX88St+U1kb0QOaxkHeGfQeS40QNpGBIjXGDLe8qvw98pZ0rwsBkTYAQg==","signatures":[{"sig":"MEQCID99Qw7uNGHe8krFECw8IGlqk7fNG6G/2MsxmY1R3anWAiAP4X3AWPOZ6WZi3PnHVM8Sl2WCzHXi6GbuRD3/OqfqYQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"6532fc1ab39d338e0dde7c89f354bb45ce728b69","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.8.0-alpha1.tgz_1471122919997_0.35250756493769586","host":"packages-16-east.internal.npmjs.com"}},"0.8.0-alpha2":{"name":"inferno","version":"0.8.0-alpha2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.8.0-alpha2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"a376c2e30a2f62fa2fc3116539a672ed7c0b6760","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.8.0-alpha2.tgz","integrity":"sha512-joLy3YMGMz/ieJ5VE3fJ6zUrmlBtXISqia5m8ckuIJCZO2Ks+uR7udFoq3BkeXpv/9SJwL/Wk178T7tkyZv88w==","signatures":[{"sig":"MEQCIF824+fwOBR2msxMDFftVbdQJINkECz/jus6LnKFYh63AiBt96eVDzkB9pTleg54iAFbNA2Uo6zo77q51YXQSAmrvg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"a376c2e30a2f62fa2fc3116539a672ed7c0b6760","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.8.0-alpha2.tgz_1471378993873_0.17325332085601985","host":"packages-16-east.internal.npmjs.com"}},"0.8.0-alpha3":{"name":"inferno","version":"0.8.0-alpha3","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.8.0-alpha3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"8725360832d2415d8511c67c55cec5a38a34ab96","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.8.0-alpha3.tgz","integrity":"sha512-HZBd6wtIj4auHm2qkb9Nigj1G1lEOH4yvIj5aF/ontKOmVCWI44cGZ37j/PA6gbh+Fp5bfsJq66TXW5Ibo9zsg==","signatures":[{"sig":"MEUCIEHhryvPP/VMUsTWK+5yisivtYVdvLVqJDD7fAFRdpZPAiEAlt62THNaNdoyDWAjQtOrx3mnICMAdOHphzgN2eK12wQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"8725360832d2415d8511c67c55cec5a38a34ab96","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.8.0-alpha3.tgz_1471466033557_0.41523607983253896","host":"packages-16-east.internal.npmjs.com"}},"0.8.0-alpha4":{"name":"inferno","version":"0.8.0-alpha4","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.8.0-alpha4","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"84f907edb2652f1631b35fedc8cac17dedf34257","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.8.0-alpha4.tgz","integrity":"sha512-zwscJgDGVa+gcrEFg7hus1wuk1scsuxeRUfcscbjUBobvpXNOVuTn1pGV3dxav8qlZt+Gv1d8vHblQAFB8WcvQ==","signatures":[{"sig":"MEYCIQCtzHcG1oAUL8xcl4Ymtzl5Ut+Dtn0zXbbZLV1L4BdtAgIhAK0YsHhQ9CvgxapvUjC8BpMwk0FTxn8bzs9DtBq+EFum","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"84f907edb2652f1631b35fedc8cac17dedf34257","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.5.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.8.0-alpha4.tgz_1472642614989_0.1574518873821944","host":"packages-16-east.internal.npmjs.com"}},"0.8.0-alpha6":{"name":"inferno","version":"0.8.0-alpha6","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.8.0-alpha6","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"b04618dbf552dd808ad83d6569469c41b936c410","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.8.0-alpha6.tgz","integrity":"sha512-LFA9zqNHfvmAwXmL8OXccg5wSC+81ydw86qwGqiSH69XLD1zDWNhbEQVtqmSyX+SBhn2XlNq4M9raxauBJBM5A==","signatures":[{"sig":"MEYCIQC0bd3eFc42WsVhG+NZAdWkJFcup7KWrHP2ZbLBbcMCngIhAJaP+/nhOASC6E04WdhSROBYTR8FQJ3O6u6vQdBdcmr4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"b04618dbf552dd808ad83d6569469c41b936c410","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.5.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.8.0-alpha6.tgz_1472642839454_0.7606510249897838","host":"packages-16-east.internal.npmjs.com"}},"0.7.27":{"name":"inferno","version":"0.7.27","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@0.7.27","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"3c3b04f85a072cb8e7165ba5c327252f8c15d5bb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-0.7.27.tgz","integrity":"sha512-CEv8MybZ1nPKXIhZFJtNzvyPO5dZwm8Q5zdMmOIJVJmpaiKvlFz7QZYFvErjOy0Euy7UDhWVOUENqAJFjootfg==","signatures":[{"sig":"MEUCIQCiKF3Yz4Jm4RHMesHNLRyZNEAPTD1dSNSpXiEzhSz+KAIgUTRm4eGCYxCpEgCxnnVcj+bgKjTPbap9as1owZeNGMc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"3c3b04f85a072cb8e7165ba5c327252f8c15d5bb","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.8.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.2.0","_npmOperationalInternal":{"tmp":"tmp/inferno-0.7.27.tgz_1473336463781_0.36670687631703913","host":"packages-16-east.internal.npmjs.com"}},"1.0.0-alpha1":{"name":"inferno","version":"1.0.0-alpha1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-alpha1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"9a36096f2b18e60017c8c9d99b90de77078da99f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-alpha1.tgz","integrity":"sha512-hhB0my8ettzS39VEaDsyAoRdjimMossGGt2nN5/n3DS2IcF5EQipMXveTVInOZ+lPWLeU+sG/a/ex4QVe9dl3w==","signatures":[{"sig":"MEQCIBpFlky+DTiYqaSAgfvEuDucylbFaGzkQcuQcy+6IwCHAiAYuz/Iq/zKxKOz44M8Wynx3xXEvn4JzAyaWbxHcHt+5A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"9a36096f2b18e60017c8c9d99b90de77078da99f","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.5.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-alpha1.tgz_1473412678925_0.25894421455450356","host":"packages-16-east.internal.npmjs.com"}},"1.0.0-alpha2":{"name":"inferno","version":"1.0.0-alpha2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-alpha2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"020dafd97b0f221b12aa222c17dc2d28364b9c32","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-alpha2.tgz","integrity":"sha512-gqHWV1BalO1L6dBU9bzNez40QA/wLFhddOt9SB7CU29IBG7sW7oX1VKnAfToQ5fUUbsOZBjRiWoegD7xHbPD/A==","signatures":[{"sig":"MEYCIQC/WAOkg5JPlPR1AKTFPZfB0RBXh7EVTm5oR4wdwt9CIwIhAO5D358z6an/o1oy55VEke8D2RKS2s3xA6wHXI4obtYS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"020dafd97b0f221b12aa222c17dc2d28364b9c32","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.5.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-alpha2.tgz_1473418827152_0.32903917971998453","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-alpha3":{"name":"inferno","version":"1.0.0-alpha3","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-alpha3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"4e51b31bdbec7156cab6ca8d4bf9de4abfe2d621","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-alpha3.tgz","integrity":"sha512-QXxceIdCqjOTgkpqhGYi24EYPefnYmPYUIxNcGjczO70Bjg0Ti1zgUZDt0j6iaSt/aKHfcY938eg4umNCK/Rvw==","signatures":[{"sig":"MEUCIQDvc/YGzJs+e1mVD6REeMMzaiFKUQErk6mu38FPtuXshQIgRPgP2JfMRHGdIvKUbRAebG+TliXdBVWN2Aotp1iyYEE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"4e51b31bdbec7156cab6ca8d4bf9de4abfe2d621","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.5.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-alpha3.tgz_1473452991370_0.7158686155453324","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-alpha4":{"name":"inferno","version":"1.0.0-alpha4","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-alpha4","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"45c3fc21d94c78643368d43fd250a2bef5dcc4d4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-alpha4.tgz","integrity":"sha512-IZNou9pgwG4uWtOy6vn9Uf3gkOirFxyUXBHlQXhWiXMNia1K/xvirQGiZIEbJO+dSsFTPgF2Jgau1DYACQ7LgQ==","signatures":[{"sig":"MEQCICEKztCOcKpIAhSaoqpV+g/wguVdd+XnfBBNcpwqPXc+AiAMXuwcaj/LQ9mYrLhn0TtZks/w8axJBktIdgwEApuzsw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"45c3fc21d94c78643368d43fd250a2bef5dcc4d4","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.5.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-alpha4.tgz_1473535445543_0.40155739709734917","host":"packages-16-east.internal.npmjs.com"}},"1.0.0-alpha5":{"name":"inferno","version":"1.0.0-alpha5","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-alpha5","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"56585d3d4d3e34b5a18eb71eb2d06e79385e257b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-alpha5.tgz","integrity":"sha512-sA4HCug8cDgm0itpvZ12rLGG4YHntUoV+0cFfyRDRA3el+Zfvq7ZA/e1Qh1y1K+mPi09oeNTUwiQRs5ALQ4tdQ==","signatures":[{"sig":"MEYCIQC8KY/fUSPcaJEk5xC8POjVWaTfv7Sh+XnIGqheGd1ofQIhAIun0EHgLa4WAQwcb+S8nGAS3ZrvFpg0ZQcF5dT8aIbj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"56585d3d4d3e34b5a18eb71eb2d06e79385e257b","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.5.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-alpha5.tgz_1473536570170_0.6205139737576246","host":"packages-16-east.internal.npmjs.com"}},"1.0.0-alpha7":{"name":"inferno","version":"1.0.0-alpha7","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-alpha7","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"9d9b3085d77b89ac4fd070d79cc73c24193d829d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-alpha7.tgz","integrity":"sha512-tiVHLc7/+nwcoUdQ6Z0+018F0ksZBpTIo3ifHIn/PcJdGAnboi+uGvM957C470fusH+kUCNMQI3o2qdGhccP5g==","signatures":[{"sig":"MEQCIBQROIQX3y6ee/vYcm3QW7FSnLZLxv7Ja+l2IUakWxbHAiBcPtlLDLm3sc/4UvN6A7gKqq9gFA5+NsQJUsHC4h3u9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"9d9b3085d77b89ac4fd070d79cc73c24193d829d","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.5.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-alpha7.tgz_1473540365090_0.6241272622719407","host":"packages-16-east.internal.npmjs.com"}},"1.0.0-alpha8":{"name":"inferno","version":"1.0.0-alpha8","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-alpha8","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"e36e2729c68957544cf805d3a907d31f33d22143","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-alpha8.tgz","integrity":"sha512-jlwfr4p/uoKo9gmJzZWM7CUfQQKR6CW8ZNPq0lrE2nBxzcTRagc20IvTjG9PE5XmCIM7XTn5QaQaDmxZzQEVvw==","signatures":[{"sig":"MEQCIHodd/mpnqm+wGCfPk0BpAUECXBRmY4Akx8v9gjBlF0mAiBTAULPq/2eaIfrQ0IPVLPWqNgo1a5HnUw2DOQyBI26PA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"e36e2729c68957544cf805d3a907d31f33d22143","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.5.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-alpha8.tgz_1473612943773_0.07309431093744934","host":"packages-16-east.internal.npmjs.com"}},"1.0.0-alpha10":{"name":"inferno","version":"1.0.0-alpha10","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-alpha10","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"cf26fbc44b111e42868d5beb215adeafdf428aef","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-alpha10.tgz","integrity":"sha512-VK00uDuvtIj9MLxZ5QXWfuqumvJIevxylqhieQZZsGfO7fUlXK1Pdrp23WbXNRb9ZIac14becNX9pCFip7Ib/A==","signatures":[{"sig":"MEUCIQC8YOZEhXSihi7zBW5iZ+yeXELhIwxzgb2Wj0lNGpXr3wIgeuPfWlEhM1CM7LW7R47k5hLQc/b2e8aGiNmuHJMOP0Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"cf26fbc44b111e42868d5beb215adeafdf428aef","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.5.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-alpha10.tgz_1474072131000_0.7226779381744564","host":"packages-16-east.internal.npmjs.com"}},"1.0.0-alpha11":{"name":"inferno","version":"1.0.0-alpha11","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-alpha11","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"df0cc6d121e242294e9c315a034a8426fff738c1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-alpha11.tgz","integrity":"sha512-xVauYdrNmv5QQ4sYJgqV3Wq0YfoqpHhde7Vv9fNbP16UBCZyVEEsZ0oL+XaMcjNsm1P61t0vKKkjDRruD7DqMQ==","signatures":[{"sig":"MEYCIQCxhOOxMvNctMiL7rtHL7SS7sEwDSuSaxK+2mNNL0GHrQIhAKZQHTrqhFjf8xTZutixyDKRujl/iVt8X4vWyQF/5uuW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"df0cc6d121e242294e9c315a034a8426fff738c1","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.5.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-alpha11.tgz_1474112448099_0.8598087232094258","host":"packages-16-east.internal.npmjs.com"}},"1.0.0-beta1":{"name":"inferno","version":"1.0.0-beta1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"ec0da65893ab62fcf7cb033b33221c795231b4a6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta1.tgz","integrity":"sha512-W/e+3XWfefhOX1E4Fgo2QYfaB6IIEQs+NloY118aUdGYSJ3iLGVnz+ETI4XXF5Iee+lOMAFMY9YQmRk6xqR6iQ==","signatures":[{"sig":"MEUCIQCNjXP2phx3mgoI8Ok0kHSvK8A8ljVWA0vov2ry9wL42AIgQrNSDkCTbmZSddcj1sTIVErP7NptwV2n67rCH9vNgsU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"ec0da65893ab62fcf7cb033b33221c795231b4a6","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecatednpm","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.5.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta1.tgz_1474587975766_0.7629540269263089","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta2":{"name":"inferno","version":"1.0.0-beta2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"fc7abe6b92e7685bb9753ea6a171edeed60449b4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta2.tgz","integrity":"sha512-esYTQYLs39y7umDpDvLvV9qILPm85mJcdsT6AXuuTJt3cE+PtNVbVagFjuoD0UClDTz9LEA9TFGiukkQvi5HFA==","signatures":[{"sig":"MEQCIFPldrmw8KFmjqTDE+g/J8S5bwK+hvMJ4AHQ3gQud7kdAiBJFS+oqs13Vc5zok/qGf0KaANWwxh0AcWU1tZSTBaS1A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"fc7abe6b92e7685bb9753ea6a171edeed60449b4","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta2.tgz_1475585942881_0.41937886481173337","host":"packages-16-east.internal.npmjs.com"}},"1.0.0-beta3":{"name":"inferno","version":"1.0.0-beta3","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"1c17dca0b987a9e1457e03c0e3220b5a599a053e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta3.tgz","integrity":"sha512-YDrxX18qWt1mddAVgLELBbl19aWFh27dgtNCUJRk0C7LAafxrsiucryXn07iLEBzDImm3DmVoSo0pEvFpnuToQ==","signatures":[{"sig":"MEYCIQD6YlrcFyjfGiaTwN/JTr/jLKeGqyyDqhPqDOX+7+mXdwIhAKHwsNRggebnMdtGI3ng71xzalYBjSAMjHsoHBM25ePr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"1c17dca0b987a9e1457e03c0e3220b5a599a053e","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta3.tgz_1475592777114_0.7053509769029915","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta4":{"name":"inferno","version":"1.0.0-beta4","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta4","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"5da86a42bdf8fa44e487127eab501d274b2a77a1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta4.tgz","integrity":"sha512-rnREJ5hb0VjUgtreI0GK8SZD+eGDHwg2RbPOg2U8GPO45OqsK5SJobbxoohr8Og40zquUeBUf6KVHp+ngxu0Fw==","signatures":[{"sig":"MEUCIGpQ7Hq7JlB6ORzyRWJvjILl1t6YMU/KFBosmKO025GEAiEA22gxtpMT5UTM1o4gGAXu+w4Jz4GVbGyfuvVAL7tFVms=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"5da86a42bdf8fa44e487127eab501d274b2a77a1","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta4.tgz_1476341234315_0.481226060539484","host":"packages-16-east.internal.npmjs.com"}},"1.0.0-beta5":{"name":"inferno","version":"1.0.0-beta5","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta5","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"3a87c5723c5423291fef47df1335f23901477d72","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta5.tgz","integrity":"sha512-tQ49q60f1ffyKe9662VXXDEIzmokCtSFHb5KhSAmr/p4/HCwwB+lB67yaDqdcgAPRtj/nwDbAlvAH6uWCQ7GJA==","signatures":[{"sig":"MEYCIQCPc5NBvDFEejW06TcGEPVXzZqaeaSVULpH+P1UpCehUAIhANB7GrOBI+1E0WKduTdZNBM7Og6JoPs73sU/UKeZPE1+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"3a87c5723c5423291fef47df1335f23901477d72","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta5.tgz_1476918432855_0.46888978662900627","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta6":{"name":"inferno","version":"1.0.0-beta6","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta6","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"7937c3b2926d13efc73405fea137deae1d6d69c5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta6.tgz","integrity":"sha512-vyPRXLzdO9KLmnjoQk0dLG7r1LASArmZCzvMrckq+2aInk2q2OuSUOP+3jcaZDcN7e/s8M5HFtfmfrrKvSXwsQ==","signatures":[{"sig":"MEUCIQCPXz+3QRMR+JxYGAUqXO53Du0aL6026jw2TB3OBxGezAIgRMzRsxokTIn89tjTwAYRPHLAoHhXZeXLiah5Lf4p4wA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"7937c3b2926d13efc73405fea137deae1d6d69c5","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"https://github.com/trueadm/inferno","type":"git"},"_npmVersion":"3.10.8","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.0.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta6.tgz_1477867518133_0.3877430355641991","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta7":{"name":"inferno","version":"1.0.0-beta7","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta7","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"9faa50fb8cf8c1a714fef5dc07384dc3cafd2888","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta7.tgz","integrity":"sha512-TP+4XDHMNZERIKHhMi+ewZhkHPOIGfoczrmLqd+cI6+0HrXb6xhq69673unLCQvGdBYPt/YgMYAaYuUPwDYESA==","signatures":[{"sig":"MEYCIQCplDRzFcCf7tpQ28iWqdBxzPkDgVaS7VQJvSg9jbtQAgIhAOtfWNnH8yn8DFS/RdM6xUaDDypTi5pPWaNxl0uCC+oD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"9faa50fb8cf8c1a714fef5dc07384dc3cafd2888","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecated","repository":{"url":"https://github.com/trueadm/inferno","type":"git"},"_npmVersion":"3.10.8","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.0.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta7.tgz_1478545794011_0.6631824986543506","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta8":{"name":"inferno","version":"1.0.0-beta8","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta8","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"b3531df95c782ac869e708df9dc8d25426b041e1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta8.tgz","integrity":"sha512-ggt7bGi05R8YgjRWO/kpVGP9ZlDMZN8QNhoDwmc7gLYYR6YJQ3BQOIlTrO4uGptcbz4GO2MKZjd2+TonNkj5Jw==","signatures":[{"sig":"MEUCIQDtWppSPJwcSxyR/o+z4fS9nVdqNKyHMXPWMVlEp3tFYQIgECO4o5X7QmzjUoYXv2GCxfrytDMBYBErM3o4wiSMTVI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"b3531df95c782ac869e708df9dc8d25426b041e1","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta8.tgz_1479160591542_0.7083335788920522","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta9":{"name":"inferno","version":"1.0.0-beta9","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta9","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"1ccd596a182f738d7c91b0129cde85162ee122ba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta9.tgz","integrity":"sha512-eKrzeW6JUfrN9hiW3j7knYVQSVZ9RrMmNHLHBLbG8RKiGk/SmRFZneWy0OuO3z93Nq+MHimhwTFDyyfgp/n7kw==","signatures":[{"sig":"MEUCIEiWaCa8mBunAh+g6P7GXocD2/zvTbGr5iqg8h4RCl3yAiEAoI+hq83xsNtgakfP23DWfx5bwSV2ntnf+j32rv7Rgvs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"1ccd596a182f738d7c91b0129cde85162ee122ba","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta9.tgz_1479250569169_0.6724169075023383","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta10":{"name":"inferno","version":"1.0.0-beta10","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta10","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"ec30e2b1ff758ad81ee1dd85c95757c1fb28229e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta10.tgz","integrity":"sha512-hmN7F78B1VMxxJCy52nS7FON1odxC4uhA58WMbq58H7MN2DbAT6kzD8xCq6ILXJmJgp71KqcIXJc/xOCCGluww==","signatures":[{"sig":"MEYCIQCj2OPdUy/LNNmtbmTy47T4vIIUV2bzlOrWvuQ3FG01rQIhANvJ6UPmkpcXOYZuTWAlGC3Rd4+TAkpxzC+mreDYPiPh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"ec30e2b1ff758ad81ee1dd85c95757c1fb28229e","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta10.tgz_1479587175056_0.40504413447342813","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta11":{"name":"inferno","version":"1.0.0-beta11","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta11","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"8b6d7d00c94b068b0fbed6f62453b564ad3deb74","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta11.tgz","integrity":"sha512-2+0V9pQPtVWPO5qeLySUAMgWih7zDE9aECTadkHXLPFCZrKJjxCvH278wmBylVY7vLl5zMYsdX0HwKnllHmpLg==","signatures":[{"sig":"MEQCIH6O/4R7OiAyMpQvKFvSQ6qTuyrqVZEjE9g5EKxKkwdtAiAYJSEwoDcl/O0ANFhz1pMxtRfOl8enbKS1lBtnYW7Xag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"8b6d7d00c94b068b0fbed6f62453b564ad3deb74","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta11.tgz_1479589645799_0.48619255260564387","host":"packages-18-east.internal.npmjs.com"}},"1.0.0-beta12":{"name":"inferno","version":"1.0.0-beta12","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta12","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"d95dc4f85d87f478e504a37f328fca213d7a96e7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta12.tgz","integrity":"sha512-H6S9GmdPcsMO8+pqrmos7CRGdQGIYMCEsJCliZy4OIPdphm89lop8gOEfPaa4vDMM4ltNEg5N8IVYA9BIpLxDg==","signatures":[{"sig":"MEUCIQCa4hkpwhA2bEAyh0uv3Z7e5K5hEJQJM4xe9tbD09FcqQIgE3MyThGK4PInjG4OYmaDgg/JJZD9fz+CSisIO7p/luQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"d95dc4f85d87f478e504a37f328fca213d7a96e7","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta12.tgz_1479596373847_0.2558056360576302","host":"packages-18-east.internal.npmjs.com"}},"1.0.0-beta13":{"name":"inferno","version":"1.0.0-beta13","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta13","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"ccdadd42a8b987ba5854f62a4c64dcfb065b7247","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta13.tgz","integrity":"sha512-MubZChmRmN1rD5Z70NnKkOsINLb+ksGAz0925vHR2506x2+OM5H5pMYYS12K/d/eS6GwCVQiktdV+27XxgGFVQ==","signatures":[{"sig":"MEUCIQD7FMmy/M5DdW19bcuuv43Eqx1wElqpp0N+ujXADYYnbwIgW3fS2LB4Y5lGisH2T8RjUoByefueztzyPCQMBksI698=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"ccdadd42a8b987ba5854f62a4c64dcfb065b7247","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta13.tgz_1479678763850_0.26324203610420227","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta14":{"name":"inferno","version":"1.0.0-beta14","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta14","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"ea820649c5b67eb89d5ccfcdde0e76f8e2e2e63a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta14.tgz","integrity":"sha512-GjeWoPQvTTt9s8XBH/1cDmP6o1A/kniERMKhsI8tveDU2DLuDtRuGytZipLJbljxzKDlS0AODy9Sx0t6AtHWSA==","signatures":[{"sig":"MEYCIQCekGnONhVEjaR9KgfQwdhvAoumNGD9/DDdipwZQcljswIhAMT1hqlnOC9olP2iYEbCSHGUCd6lxOWAW6ehfdxTOCWd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"ea820649c5b67eb89d5ccfcdde0e76f8e2e2e63a","scripts":{},"_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta14.tgz_1479932828641_0.17864681500941515","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta15":{"name":"inferno","version":"1.0.0-beta15","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta15","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"76ef760cad6e2dd8657cd43d19f67e461bf93c2a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta15.tgz","integrity":"sha512-4V10op4+C7ei21Ahbjv82nQ0LRix1nKn63OxrF/avUlYTsqoP+XpAViduoCQXhqhx92UmlYdFIcn7lnd55xEmg==","signatures":[{"sig":"MEQCIBNDUhYXfMfXoDlrtNIEBKaYyQX2nhi7EAbP4NI+OvJwAiBt17wfCGyRr7qIjRDTmLqul9mxne52ZYer9Tb2SAR/Zg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"76ef760cad6e2dd8657cd43d19f67e461bf93c2a","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta15.tgz_1480070849099_0.5637776823714375","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta16":{"name":"inferno","version":"1.0.0-beta16","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta16","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"54efa047a8dbcb88706fd5729008203ec28be3ba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta16.tgz","integrity":"sha512-QR4x09R5uoHNgoI14N0jUu9nirUHpG5JRasax2EDK8zizGHGA20iLxyr/NoZBTPQQaf1Ztq6Fss0zsNA8/BpfA==","signatures":[{"sig":"MEYCIQDWePyL0OMLMbOGD5qFIP7xloy40OxpiW9209AHoJuZAwIhAL2bPkMCuF1RcZi4190J2TvlRK+TV9LAShG2wDtxlTft","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"54efa047a8dbcb88706fd5729008203ec28be3ba","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta16.tgz_1480344133725_0.07225844589993358","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta17":{"name":"inferno","version":"1.0.0-beta17","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta17","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"20a62fd8f46f344051bdee73a5e5675533d3745c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta17.tgz","integrity":"sha512-/IDEacLqDD/SF3tly/ylLSLQS3Bn2BWekJJ1klvDsjGjXQSFeY2P0bADNwyGabiJDEVm8NF9D5BW1RFSFZ6e9Q==","signatures":[{"sig":"MEUCIAzCqZiL3FLPeNMOHgkMpAwE91yPYpL3vpFFrZ+8C8x9AiEAjhcOL7qV8cWl4VLQg4OZ7dgHwbxbQu3KDcyLQbgFMUE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"20a62fd8f46f344051bdee73a5e5675533d3745c","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta17.tgz_1480347711649_0.9145328674931079","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta18":{"name":"inferno","version":"1.0.0-beta18","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta18","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"bdd13433ef423adb654efc9572b13fe17c5416d7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta18.tgz","integrity":"sha512-ImMdd1K8hor6GGbMkmqu95q5ZdfWMfr7WnExMkriwaDSFFosc3wGljqBFdsY62jNOyJ/gyKet9pVxgOp+9Z0kQ==","signatures":[{"sig":"MEYCIQDSvG3apxo3tCyq3VP8wATTDWG0DNOkCtkT0AAfii/qtgIhALwi1wRi9BNaPZJSzDm6FzVTd+Spv0RNCoqg3Zk8LRRJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"bdd13433ef423adb654efc9572b13fe17c5416d7","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta18.tgz_1480368079164_0.7303335391916335","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta19":{"name":"inferno","version":"1.0.0-beta19","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta19","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"4b6753da8d1c8b2bae0333dbc6fb33260dc13c15","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta19.tgz","integrity":"sha512-NI9QvWZvglLkuavMIGS1b7NjmAgfD1oBivbuXG33EDF38IoiFL+xE+I1D8AQ/12AAjw2dMk5MV+Kn5CKaDaYhA==","signatures":[{"sig":"MEYCIQDYd+5g5iVHyrki8yS50ZCmV0pPtyx7sjN5Yh/8Mvb+3wIhAPjLnu4G7QoDE9CFKd5s15CHrs9V2BAb/vRtZpM2RILP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"4b6753da8d1c8b2bae0333dbc6fb33260dc13c15","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta19.tgz_1480378921867_0.7147077603731304","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta20":{"name":"inferno","version":"1.0.0-beta20","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta20","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"c6a3c26d7dc484b4711567a3795d219fa1e394c4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta20.tgz","integrity":"sha512-va3oFXEIeFg+PZjjpWlOqL0/yMEaBarPLRpOOLpn1BCsjcEcZfLQ1r69tKAJkC/GAXu7mnna1QiON63CIHGzyA==","signatures":[{"sig":"MEUCIQDWs/rxQobSP4faNWZ4/4jcrwrWFT/mncqZpUE1NKynOQIgfAMw6jaem7V7o6ZXdrag82cqr7b3IlIRtq+qPWVni54=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"c6a3c26d7dc484b4711567a3795d219fa1e394c4","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta20.tgz_1480425884845_0.49870929261669517","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta21":{"name":"inferno","version":"1.0.0-beta21","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta21","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"e8832c03b543a86243d8c59587e3942af3c25bfa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta21.tgz","integrity":"sha512-TjzNSMHCPqtq+nA/hsGCmNkKh8Ghomb4uLMAuotP7ALc1qRtq2pPBL5fi4QQV8Thf4nsvjZ5guakWuTv+Bn7aw==","signatures":[{"sig":"MEYCIQDjyI3jhXdqsR677JsjcptlHK9CCo8b1la8JAIgm9sozgIhALQ0420xXt0XwTJl7tQv8OUpL4wph30eCykIVXX7T0AY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"e8832c03b543a86243d8c59587e3942af3c25bfa","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta21.tgz_1480439293450_0.3803342005703598","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta22":{"name":"inferno","version":"1.0.0-beta22","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta22","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"901321b017467ab8634a3692f8948e79607195f7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta22.tgz","integrity":"sha512-4Co2msMSNgh0L9mIDoPAwp2B9oIhZtzVV0RWThj/n+kBe/H/z+n/ZkLi65JQZwWB5cW1Qd952wivXfDGNMLcfQ==","signatures":[{"sig":"MEYCIQDKiNeHyvl4Tn05IlY5DcmSF0Ebt80nZAXhnYFKti1KogIhALwQnhRn0OBMzvWRiMFfiX2rgPH/fN7/35lEqGiRbcql","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"901321b017467ab8634a3692f8948e79607195f7","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta22.tgz_1480633519546_0.8786160119343549","host":"packages-18-east.internal.npmjs.com"}},"1.0.0-beta23":{"name":"inferno","version":"1.0.0-beta23","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta23","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"d7103d8dfbd2ed7f1799846893bba97bc5119cd6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta23.tgz","integrity":"sha512-yfW0If0rPVXdhg5ue4tVtaE6KerQFgnaZQx9BH3JDDseoMLN9QEw1YYxAHFzuqs5Hsuq2o00FvlXd75z7mpCTg==","signatures":[{"sig":"MEYCIQDQFUkSyC7y/a/RWabXJ65EeDK1A0DL26Qc66zd20ppCwIhAMbmEoIQc4CNMKyXHB8OWXpVBFDeoWIcL57ppCz4L/6L","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"d7103d8dfbd2ed7f1799846893bba97bc5119cd6","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta23.tgz_1480682556879_0.6498101290781051","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta24":{"name":"inferno","version":"1.0.0-beta24","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta24","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"606e9dbf03a67b3300ee15abec9e40bfbebea3b6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta24.tgz","integrity":"sha512-oqklreUkZRFKQDSo8YxZSAU8omPXbkNyS5fQR7WnxgV46LNBTmIxAm2LFEb8sB8+IZS9FTRUH5SEEuQ8JoerJQ==","signatures":[{"sig":"MEYCIQCMoWJnBlT3saUJN3UHWbRENI7SZtQN2cJyhoQ+9M+j9gIhAP5c77tHDoxzeo/woe5zjv0/HIza4F3xvlSNO9Vu0NvU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"606e9dbf03a67b3300ee15abec9e40bfbebea3b6","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta24.tgz_1480723637314_0.8684236682020128","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta25":{"name":"inferno","version":"1.0.0-beta25","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta25","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"b2b1ffdf09d2bf5a83c1ffcfcd903b7c0945a152","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta25.tgz","integrity":"sha512-ObVR0BqyJ4a1QIKQiZj8pBDKOAyyI9h0tWFNC+dIDuxcgGNqMVz9Vv0D0TFSyj10IamdYnJQ1a35tqXRv5oUUw==","signatures":[{"sig":"MEUCIQD3Pc5/Yjz/zdTuYueClYTtrVaeEo5YZ9DVaX+M53G/HQIgCuKhM0QX1IAqqutDbsyZ87iUGPm+s2MIdJVKZuobARE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"b2b1ffdf09d2bf5a83c1ffcfcd903b7c0945a152","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta25.tgz_1480960329723_0.24682257743552327","host":"packages-18-east.internal.npmjs.com"}},"1.0.0-beta26":{"name":"inferno","version":"1.0.0-beta26","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta26","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"615685b8076e5c43d05ff14b136c744702105d38","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta26.tgz","integrity":"sha512-xsAbJWuVVDA63eKw9TtczJlMB22pHmh9Fwh5pDaTZ7v4m9uTtNi/snkVtlmL1ur+zzjHkfX/ShPjo9DpAcB6hw==","signatures":[{"sig":"MEUCIQCs56qAF4j/9wS6diwTjN3KYS9KfKzQNdOFQC2lgMz10gIgfqOzfjaA0QTr06AeC5tVvebdKLwVInf46oto+HH357s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"615685b8076e5c43d05ff14b136c744702105d38","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta26.tgz_1480973765697_0.6956068589352071","host":"packages-18-east.internal.npmjs.com"}},"1.0.0-beta27":{"name":"inferno","version":"1.0.0-beta27","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta27","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"fe1fcb927cbd3611e1d0d9891a97e3efcc11189a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta27.tgz","integrity":"sha512-VSizqbc/C2CfIl3oFi0tKQovQZ+lV49idVBpTzaaCP60SiLD5ADGzWPWBAjDhj/D8cx+kk1o/Y4+OvgBRy+P5A==","signatures":[{"sig":"MEUCIQDk4aFR/CkMcQhEPfUAr2R6+29zfokBiw/R3jGRWX/7bgIgBOOStYZCZegbzwkV9NoLoc1xCJM1XL5r475ILNpfy2s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"fe1fcb927cbd3611e1d0d9891a97e3efcc11189a","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta27.tgz_1481018981026_0.4568231252487749","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta28":{"name":"inferno","version":"1.0.0-beta28","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta28","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"7b1e34dc8e4f9fc55f30d5604bcd44363945128f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta28.tgz","integrity":"sha512-aEux8gQ0bJhp/LqHwRj0uNf8ztgc3hGaVz2/djbaHm3difdKhoSRkotzpIEg/qq/QgoLRCw+DpgZddPqSiRhEA==","signatures":[{"sig":"MEUCIQCFOwm6IN6boRXZ/uZ1u0J4YYpIzYOaJ6MSIA2tI2p5JwIgTDD1+iDIdmX+8XacobiwcBiKItbBolhCUFgfd4WyPZY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"7b1e34dc8e4f9fc55f30d5604bcd44363945128f","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta28.tgz_1481020984146_0.7658366747200489","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta29":{"name":"inferno","version":"1.0.0-beta29","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta29","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"b010a1376cee6b386d62054a23f7b8a4b875edfe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta29.tgz","integrity":"sha512-x2OVCYB7OKUep0VCG71NrxhZEAinXSv0GUic+4AE7Y6xulZ4U1jiGzjw3PoA3DWdM69hd5rfMaA3ht/fIdU3JQ==","signatures":[{"sig":"MEUCIFJhoSsj4EoS24J8Xy/8QXXBDRah03Pu28i6A2QsEWEHAiEA5FsmhX4JBMr3PMdOSvQPhzl22Lbmi4qJTtRMa81KZQM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"b010a1376cee6b386d62054a23f7b8a4b875edfe","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta29.tgz_1481035047586_0.5252705516759306","host":"packages-18-east.internal.npmjs.com"}},"1.0.0-beta30":{"name":"inferno","version":"1.0.0-beta30","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta30","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"3ee3f6182f2af19af2f577f2b1f5416ab82acfe5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta30.tgz","integrity":"sha512-C/i13MUSMW1YQB8lKGCplM1Opembl3tmsv6GIihwWw28P6IGt8XLAY066ae08MaX1KFEPS4zQMlR/D5zdIX3aw==","signatures":[{"sig":"MEUCIQC0rxTistoZA8LWzK23pdvdWTfgKCArq+WisU81+grrTQIgXt2jhR7VGUguHvUV2xkhpPqzpiTxrA2vvvhJFyTpX+U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"3ee3f6182f2af19af2f577f2b1f5416ab82acfe5","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.9","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta30.tgz_1481035405742_0.23020940949209034","host":"packages-18-east.internal.npmjs.com"}},"1.0.0-beta31":{"name":"inferno","version":"1.0.0-beta31","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta31","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"73875bba382c86b9387409c1a83ec97f82d84c9f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta31.tgz","integrity":"sha512-dc67A4c99T/8GylFrKSQtOa7Idlwqm9tqISVmKCT0nxIlN2IEcvvCBS3exEfH80PuOy6EOMx+L8TSYdpe4j4ng==","signatures":[{"sig":"MEUCIQCoaLw6n+6bdT1rAcawrqc/NgQ/x3NNfzusp+h2rCSoUAIgPIeFgZg2SMFkfTNc3vNWHTKBIcFoOnW1SKb4RamoIvk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"73875bba382c86b9387409c1a83ec97f82d84c9f","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"2.14.12","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"4.3.2","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta31.tgz_1481038663239_0.9989234185777605","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta32":{"name":"inferno","version":"1.0.0-beta32","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta32","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"bd216a5117280da4a15ebcc4b4e1faf3603afc0d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta32.tgz","integrity":"sha512-j3LzEeobOOY6rwyuIIT2cAWw+RygyrJzRzf53P6jK6oLTMZhcby0S2HOhwW5310npqzRhjXxIk+KKUI7mYbfzQ==","signatures":[{"sig":"MEYCIQCi5rwB879cSwTGs9pZ1zTpq7ZhuHwyLbPdQTbAz/KCNwIhALk207qCEg3VTxeRlqbPsMQVhcTVtdKItWMvDaUMw4HO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"bd216a5117280da4a15ebcc4b4e1faf3603afc0d","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"This version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta32.tgz_1481146005287_0.04577984823845327","host":"packages-18-east.internal.npmjs.com"}},"1.0.0-beta33":{"name":"inferno","version":"1.0.0-beta33","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta33","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"e2776d99f0433645c7a92c05334c5a507b59baec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta33.tgz","integrity":"sha512-xBDnCkOPlsstTgLeCnpzRemPtpKHpXPizudLpaua2j+Jl5VJqzZ2S3uQDwtwUh1LAKMS4KYh+V82hkZzisT+oA==","signatures":[{"sig":"MEUCIEHxFV2+OL7AOF5gya/dSPtE2fiT5RI2fQUca/ZbBXk7AiEAykiK7pelDHYXPYIQunTm94TPe+YHO+/C9b8kNxz+NP0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"e2776d99f0433645c7a92c05334c5a507b59baec","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"this version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta33.tgz_1481669401752_0.5990923466160893","host":"packages-18-east.internal.npmjs.com"}},"1.0.0-beta34":{"name":"inferno","version":"1.0.0-beta34","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta34","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"337aeed5a7be642ac9ff07994efbec607fd7d722","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta34.tgz","integrity":"sha512-Fwgg/blVe78xG4Hq5xUHf83gdhejvSUjw+tID4aARQ9z8+zcqheNwVfF2fwZHjElEKAMAdvlWifxIrglHBIdKg==","signatures":[{"sig":"MEUCIQCG11nfuFsKnajtxBlJINIpkfbpo4JeIcNGZRbBk3ox+QIgeYjr3xDnuZWfLBSCi4gzk0sdpl9Q+4GMDWQGdP6f7UU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"337aeed5a7be642ac9ff07994efbec607fd7d722","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"this version has been deprecated","repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.5.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta34.tgz_1481814672260_0.47480670432560146","host":"packages-18-east.internal.npmjs.com"}},"1.0.0-beta35":{"name":"inferno","version":"1.0.0-beta35","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta35","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"c4946d23d8ef8588c8d66fa520aebae8d68a736f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta35.tgz","integrity":"sha512-cQ5VLuOmCLitBdmJW/7zdCSAGjCtktYqO0jid27qxQZEh/epgCHPRZQkkSdbe5ic2IhWZbMq4jWJO07kSA8Ugw==","signatures":[{"sig":"MEUCIQD/CEgHiP00m3fNwaWNqmBiLM752ZFXShgQcxwaVH/Y8AIgeznrgxdZto1ViW2gIG6BNC2ePLzzkq8fUdXgZJWc/kI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"c4946d23d8ef8588c8d66fa520aebae8d68a736f","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.5.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta35.tgz_1481881357846_0.6759800862055272","host":"packages-18-east.internal.npmjs.com"}},"1.0.0-beta36":{"name":"inferno","version":"1.0.0-beta36","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta36","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"a1c51e9e6d8ac92df29d9f24221fda0b94d21bc6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta36.tgz","integrity":"sha512-kcAkQV+iFtSW6Bkacgc9yv3gFZLbDYiKhwp8FX80iKUhpp+EYHAOEcYjwO3VtttY9hdt0B9Yyz9jhKZqJ3GlLQ==","signatures":[{"sig":"MEUCIQDz+PhFtrd6W+mtU0YWlafEblj7zmzuuMYdk/Km4C6HOwIgcHqaKWLGJMp1+/fRsMxRjsfeAHEgW9SCmbNX6NIKRCE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"a1c51e9e6d8ac92df29d9f24221fda0b94d21bc6","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta36.tgz_1482001487855_0.8260903656482697","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta37":{"name":"inferno","version":"1.0.0-beta37","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta37","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"92d4cdf7f136bc5750cd1eff51ff9957afa06aef","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta37.tgz","integrity":"sha512-22Ez6V7OjIOu8L06ZpJprim3+7PrqlCAhPv4TL4G17iNmFyyfg0q5osytPzNr2I5L3i/Pv1Oay/I6cjm++et1w==","signatures":[{"sig":"MEQCIAnNH/nQD8ytXLfnTo2OnzmgT03mkYbTqg8AvI64C3XmAiAsX1EGSE/T3CtkujpkuqRTMtaoQTiWBtCGsZNnkcpw1g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"92d4cdf7f136bc5750cd1eff51ff9957afa06aef","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta37.tgz_1482190557935_0.9782468194607645","host":"packages-18-east.internal.npmjs.com"}},"1.0.0-beta38":{"name":"inferno","version":"1.0.0-beta38","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta38","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"1391d12e104d805bf90d9dfe7ae535a56c4d824d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta38.tgz","integrity":"sha512-hH98Kt7i+X0pL48y+Q2kZwbuNjs26hGe6yJzBBq50vpvctP9v4k4sRhI4lt1ipfH9FUlLIweiDJr9tNRxUp2vg==","signatures":[{"sig":"MEYCIQCQvxCfRPTx/lAPBNvwa1br1pEJpe1sQcQTZJDID9aNLgIhANQH69gLWOAbmIe51ETJ6VUU/mYqlXYfj2amcvj9GGpJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"1391d12e104d805bf90d9dfe7ae535a56c4d824d","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta38.tgz_1482441038006_0.038928398629650474","host":"packages-18-east.internal.npmjs.com"}},"1.0.0-beta39":{"name":"inferno","version":"1.0.0-beta39","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta39","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"778cc272d1555f3d0bacbe4c026bf14cdd5e4055","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta39.tgz","integrity":"sha512-KZq0Z8bl99RVPhX6m5EEFYMrBQvBkiNhov00Zi/TYXex1eBLL21UKp+RUy5Qr2y0SBkrHFkmxAMR/wJVZ0pyvA==","signatures":[{"sig":"MEUCIHPSzO8kcQkqS/Ajyo4QeYrP6Nr7CjBFIGyX2On5314UAiEAzptgoCFXHSrbUzrV9Jp9JK6DwfBJOQxYvtKshdLoDfg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"778cc272d1555f3d0bacbe4c026bf14cdd5e4055","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta39.tgz_1482447924463_0.8947509357240051","host":"packages-18-east.internal.npmjs.com"}},"1.0.0-beta40":{"name":"inferno","version":"1.0.0-beta40","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta40","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"93051f4f5469055a9523641904f0252d7c5450fe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta40.tgz","integrity":"sha512-W+LBQ/6uIUu9yzC6rcj35Xk/8FIq1Vg5Pzg6a2Vdk6+BfDJxqFY6ctGcZzzV2qWkBANEZbdu6TEcQFx2H6ZnTg==","signatures":[{"sig":"MEQCIBBVzKGCzPm+uhuGUXvjDtVFFKabDB8k0Aax6FylM4KQAiAjFcACvQviO/HoZk++LIkkO4rjjIqWqyGENAJbpuQhXQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"93051f4f5469055a9523641904f0252d7c5450fe","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta40.tgz_1482453035968_0.6778424521908164","host":"packages-18-east.internal.npmjs.com"}},"1.0.0-beta41":{"name":"inferno","version":"1.0.0-beta41","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta41","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"2d1e43bc252cd43867a15803f680ffecf810d929","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta41.tgz","integrity":"sha512-QQczu32ZUzfANKxKU23l6LPxt2MqXHnw8I2avnqeLrU5iRWctpC4UqEsgYuI4FdL3zuUWqeLy2CHkbWlRSE/ww==","signatures":[{"sig":"MEQCIGRj30OuZsHfC7cvu0D8C3GU0YWEYCiHske1BO9zJvwWAiB2MaZjjLRKCNFJN+MO0i0kTy4CGX+y0Ms7QEGgcwPn4g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"2d1e43bc252cd43867a15803f680ffecf810d929","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta41.tgz_1482496074828_0.31164795556105673","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta42":{"name":"inferno","version":"1.0.0-beta42","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta42","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"27695444c1c5f19fb961a52467b52f3a7aff0382","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta42.tgz","integrity":"sha512-ploJ6D5WsR84JmjD2iyEHeIe2WZEUbm24k61C4FG4z1C6PQ8M5lenTnTjFrnAiga+sL7pm7eEkQbiLf0kpfPhw==","signatures":[{"sig":"MEQCIGONF2ZAdX6yH+SLO+r2mfZnzbUYYhxJtaZKnHym8O9rAiBvTZTwJZA3dGSanKEf1e56SUlPP1955I4cvc1dH8xPgw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"27695444c1c5f19fb961a52467b52f3a7aff0382","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta42.tgz_1482499149545_0.44354926282539964","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta43":{"name":"inferno","version":"1.0.0-beta43","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta43","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"554884ed9913abeb9447d119ed8634501729f552","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta43.tgz","integrity":"sha512-qsesGvkOHSiqzVrKYlbq/8oytfkQoztnNlhwrKJb+XowdxV4fT3N/SB+LM/OHAhHrMIno0zqCb9Ze3Td646fzA==","signatures":[{"sig":"MEYCIQCSxXI9HYWgNLRlg/+dmCf13MJSRqnGbsn2r5Lj3sfYUQIhAPg4SH/v5uZWixZM/kYWZOcs9yuMa9fyZagD7babPXop","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"554884ed9913abeb9447d119ed8634501729f552","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta43.tgz_1482850391285_0.9179290237370878","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta44":{"name":"inferno","version":"1.0.0-beta44","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta44","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"c10063f2ac4afc71dd4907bdcf1fa07777e40883","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta44.tgz","integrity":"sha512-zxJUoSiIb9UllbFl6ApOomUt7GAg2L66hOgYtK2cmhCuoz6NSI2xIXMVWsM2JTchy0S6U8J+svN5OM+ILSG7nw==","signatures":[{"sig":"MEUCIQDos+0xe/EmgPcueoyyQ3n+lI8uZZ2FkqlVR2gFNkrZaAIgMVDtfJeo0YeOkaMl5KLkuM7sSm3MXFGZIVDw/hqIcsQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"c10063f2ac4afc71dd4907bdcf1fa07777e40883","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta44.tgz_1482960391678_0.9491442763246596","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta45":{"name":"inferno","version":"1.0.0-beta45","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.0-beta45","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/trueadm/inferno#readme","bugs":{"url":"https://github.com/trueadm/inferno/issues"},"dist":{"shasum":"fb433e789dd5fb65d82a9d592125592878e86f5d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.0-beta45.tgz","integrity":"sha512-u19WP9Ta5rQpqgUINDGsQswjC4FyjXhHUnvnVPwkqzrN/uORlQm+PLdf6pebuAVv2mpc8JC3QNfe2Gn6ZNfMWg==","signatures":[{"sig":"MEUCIF4VNLqZQ6Jn9gBX9EsH3UFQdJlvp13P4n5FClVZhN9SAiEAtBSyfEDo5ec//wWvWKzn8728Ah3HmqSBp7lKJX8NDTg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"fb433e789dd5fb65d82a9d592125592878e86f5d","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/trueadm/inferno.git","type":"git"},"_npmVersion":"3.10.10","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.3.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.0-beta45.tgz_1483085976936_0.2421098886989057","host":"packages-18-east.internal.npmjs.com"}},"1.0.1":{"name":"inferno","version":"1.0.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"fd29c03618b79aa75dca749a187d1e4000e27758","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.1.tgz","integrity":"sha512-h0bWb+m2r4/BFZlbEN47xJ644YK4QuMJQCi7ziwwq/Qd1Z86Sv05ZYAqaENH9/BCRXlppdZlaFeQEUcoQqzSCg==","signatures":[{"sig":"MEUCIFasZAwwnvXUwR/WEae2WcDz+wOqdRoXUBwc/0iV87xAAiEA8AhBH8xnFUaIQCwZhV08W9Pj/zKyFkaqqkg6p2X/FZM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"fd29c03618b79aa75dca749a187d1e4000e27758","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.1.tgz_1483104905491_0.607093328377232","host":"packages-12-west.internal.npmjs.com"}},"1.0.2":{"name":"inferno","version":"1.0.2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"738e6d0704d6b783284da268e02fa08ad6e4b5e3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.2.tgz","integrity":"sha512-vn03jmnQPzBWxgxPqoy4XZz/UcM+f9feDKB+a6nYGrP99QD6bUI9pJV0BMXCGPuWQJhwUgV9q2qb8DnOQQlifw==","signatures":[{"sig":"MEQCIHlESHElgViwhneKd4P2TTLU3ZubFPDqDQerFFI9hlVJAiBYN5A7CcLmZBKP+3G+baxG9gtH+tcaVg4nPa57De6eXg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"738e6d0704d6b783284da268e02fa08ad6e4b5e3","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.2.tgz_1483108032726_0.8414267837069929","host":"packages-12-west.internal.npmjs.com"}},"1.0.3":{"name":"inferno","version":"1.0.3","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"aec65892105e743c1a6a6c87a6c54db686728d9d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.3.tgz","integrity":"sha512-IizIQdtGzHXB1kMhX2I1ptDOCpYGaK1jL3v9/yp1vCnEKQvlgLe6Q1zPJBiwoCCC9BFFn6kOWHcIodux2A5Ftg==","signatures":[{"sig":"MEUCIQDqWr6RvJNd+kA8T3GfPjDRS8yLkoVq4PJ9MDDqsoKszgIgCyfJMfgtvaxztdM5gM7gpJ75g4h832E4rQOjWsJP2cw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"aec65892105e743c1a6a6c87a6c54db686728d9d","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.3.tgz_1483123229236_0.08365729171782732","host":"packages-18-east.internal.npmjs.com"}},"1.0.4":{"name":"inferno","version":"1.0.4","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.4","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"f6443d14bfbb91697144ea76704b17351497c13c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.4.tgz","integrity":"sha512-6EyQ2bWT+CyXgK9fAq5GnalQyhv36scdFRZIU13rBdpzoRd4XPjSz1cRXUZ4BOOSMWSjy7fzMqc0G3nhPJWYFg==","signatures":[{"sig":"MEYCIQCzdBRmvjiNyrasG1o7jZmqOhoGMx1XyBJmAMGuZ0zktwIhAJGj1WztwoQW8SJ5FUAKt36fYmZQAkbX80HSYO0P0OiQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"f6443d14bfbb91697144ea76704b17351497c13c","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.4.tgz_1483382955763_0.7232296871952713","host":"packages-18-east.internal.npmjs.com"}},"1.0.5":{"name":"inferno","version":"1.0.5","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.5","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"0bc571baefa05f0960c2e99bb4cb741e1c1418f7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.5.tgz","integrity":"sha512-+jz9B2oyp2kS403B+jcfGHtkihj5+E9iugJY3aAVRKhBhwsa/jfEK46LplSgLXsPlwgvCWFpL+Pa++6OxpN2kQ==","signatures":[{"sig":"MEYCIQDOFMtgGEKrNTUyp0c5u7IymnmYuzL5rKcI6EJimjTKwwIhAInwzbeHm+MAnuJfR/mjdfZyCvJx352BJcAuK1DkvwkM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"0bc571baefa05f0960c2e99bb4cb741e1c1418f7","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.5.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.5.tgz_1483450296308_0.1764896111562848","host":"packages-18-east.internal.npmjs.com"}},"1.0.6":{"name":"inferno","version":"1.0.6","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.6","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"088a6d2dcbbd7c585bdf508ccaf24c7be27a7e7d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.6.tgz","integrity":"sha512-YYUJSEfHmDfG7trFkRiqhGNdKMdoFDkiAeXOlVa3A5iYk+Mgh+dMuvccx8AHULec5Viq9OaYblXuoNp27SjE5Q==","signatures":[{"sig":"MEUCIQD3q1YbbixA8d5Z/qAAOnxtOjuRPEzP3dj2whLvcpFD0gIgH1jtEWH83pNJq4UrfCDAEHvSjt2QXJROS/lkOeVnEak=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"088a6d2dcbbd7c585bdf508ccaf24c7be27a7e7d","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"3.10.10","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.3.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.6.tgz_1483530322910_0.09826284553855658","host":"packages-18-east.internal.npmjs.com"}},"1.0.7":{"name":"inferno","version":"1.0.7","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.0.7","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"6e4cd800cc752ff76876f5d310dbec508ce0dcbc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.0.7.tgz","integrity":"sha512-bHPvCx+MNXHo2hLsHTaJJJfMuywJHwHSked2s2zk15XKbwOYDchtvJNLi/BICHJi2dikAcFpo7H+/YltYV5aVA==","signatures":[{"sig":"MEQCIDy7J+YNarbdqhf+kil0kTh2+pvbiRha8K6ft/GmzOA9AiBiG/GbCLD8G1IqvrcHUHho4gQzSB2m5Omfihjg8+udJA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"6e4cd800cc752ff76876f5d310dbec508ce0dcbc","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"dg@domgan.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"3.10.3","description":"An extremely fast, isomorphic JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.7.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.0.7.tgz_1483570829578_0.9581860429607332","host":"packages-12-west.internal.npmjs.com"}},"1.1.0":{"name":"inferno","version":"1.1.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.1.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"713c9c9e60c8a1d8e2f784ed718ba98781005f8a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.1.0.tgz","integrity":"sha512-aPDg5/SYZGAzuVeqNnFzmv+aJRaByF51p/niN+1pwo7ojFmGVoovtlob1+9eTA6TGs31dxYE75X9ym6bIO1Lwg==","signatures":[{"sig":"MEYCIQCfwtsyWiNkB25piciC0jD4zpzLRKTzjGzuBjw3fNMHMgIhANjJtVKo8Y/npuDlk2FSwmDkhh0L2RSkiDxacvC0gAP2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"713c9c9e60c8a1d8e2f784ed718ba98781005f8a","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.0.5","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.3.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.1.0.tgz_1483823747000_0.566352411871776","host":"packages-18-east.internal.npmjs.com"}},"1.1.1":{"name":"inferno","version":"1.1.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.1.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"4432a162435fb5fa855cea5b905206fb8b011ee2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.1.1.tgz","integrity":"sha512-lfnOEwa+z5JJrGSI0W83IYzyjZkXP6P/K82/Srh1/BCmzSi6ktmBRor6fHgjdm3zwwfUpn9fLoqMloE/vgE7kw==","signatures":[{"sig":"MEYCIQDkwcb9YBHM9mau5SvSRTkfXbrSwFQKTMwlP/Hp3TZ4iwIhANoFegrxEGZjgd8P9C42m3NGgKWCHoarAn4ffpj4Lqrt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"4432a162435fb5fa855cea5b905206fb8b011ee2","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.0.5","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.3.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.1.1.tgz_1483883054321_0.3031182009726763","host":"packages-18-east.internal.npmjs.com"}},"1.1.2":{"name":"inferno","version":"1.1.2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.1.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"7809927546f8e5eb8163fb61b314df0cf0517f54","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.1.2.tgz","integrity":"sha512-8+OiINeSgfVc90EGm3yMpnl27RYCX9MRXTRDjs5V7SnnSysOWbQT5SL58RSew2F3933JfzJ5WR16a+9M8HKeFw==","signatures":[{"sig":"MEQCIFrcrXSGwctooY1SG9onAkipDamiP30eVq6pKkNTVS1lAiAlvGMy0RiofDESsJBx/ZtcikoO82PojqkyIrndjzDwnw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"7809927546f8e5eb8163fb61b314df0cf0517f54","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.0.5","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.3.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.1.2.tgz_1484068519357_0.7224929870571941","host":"packages-12-west.internal.npmjs.com"}},"1.2.0":{"name":"inferno","version":"1.2.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.2.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"0d1309c361b1e1fa773798d05504be31e4ca395e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.2.0.tgz","integrity":"sha512-FF+U5mb9Dblf9euAKUiQyZhtXeyMIaLTxvL5SABG9rLp5vZbVxdyxm8nOyr4T5griRO/6jr0INVWIJDvAvgcPQ==","signatures":[{"sig":"MEQCIEzhhUHqnpg41ub+GLJcG5zKlmLs3mPjpn9VoYu0T6n0AiA2IwUYMJ13R0zxT5yz1rRo+BrXnAOILHRnF9Yv4dfWpA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"0d1309c361b1e1fa773798d05504be31e4ca395e","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.0.5","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.4.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.2.0.tgz_1484398694923_0.9145721264649183","host":"packages-18-east.internal.npmjs.com"}},"1.2.1":{"name":"inferno","version":"1.2.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.2.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"154799226298deca6cd561c8da88a5e5f30a2369","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.2.1.tgz","integrity":"sha512-ZNr4VGPU5CXKVvAOWdAmBluf0aW4Nv3saqOhWriVZuIsZ3bOReFHSV2g2IFXJVv8XmT7oxSg31B9LhkFfLGCJA==","signatures":[{"sig":"MEUCIQDEnoo5Jke+oEK8U0FAcuJj00xVt5LH+c1u/ZxMpqpaYAIgHQ89i0ii5xUD9hije5wM8k+PvgSYpFAq3fmP1peL9z4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"154799226298deca6cd561c8da88a5e5f30a2369","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.0.5","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.4.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.2.1.tgz_1484772861963_0.7279837117530406","host":"packages-12-west.internal.npmjs.com"}},"1.2.2":{"name":"inferno","version":"1.2.2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.2.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"0094e4ed428db30184bfa348a5aa38211945e67d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.2.2.tgz","integrity":"sha512-rF8EBXs9o69GSuUY4g3SaZNJy/n+XlfRT4kDivgMj0K2eur8AffWGpVjETsqGOxtcOD848NKGNljxv5nOdD5vQ==","signatures":[{"sig":"MEYCIQCqcw2zoax2xZUGUrCvGKdoC2vA/C4NDPnTmvZh4UcjaAIhAK6zv0S03bQY7Ztq0ULwU7xHvVZdLqk1EgGOj3X3Zmq4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"inferno.js","_from":".","_shasum":"0094e4ed428db30184bfa348a5aa38211945e67d","scripts":{},"typings":"inferno.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.0.5","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.4.0","_npmOperationalInternal":{"tmp":"tmp/inferno-1.2.2.tgz_1485039386138_0.9036858312319964","host":"packages-18-east.internal.npmjs.com"}},"1.3.0-rc.1":{"name":"inferno","version":"1.3.0-rc.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.3.0-rc.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"33ebd5836e5238f1523efe836070879b6513fa78","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.3.0-rc.1.tgz","integrity":"sha512-GQ3FhMyMAx/NtjneC4g1xwhWSUIOWaKptdV6JPx5kPzlp53YAt+d/RItjTEFW5G3EIpVvSh429VotwOmxc0gSQ==","signatures":[{"sig":"MEUCIQD6ll7GGB6+PiivB6ynl/kuXW0nEIHE0rwtejgAN01wdwIgOOwtfscomJHGzcRlRApXLt3NsTD+kfF4dXiuavw0uyA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/inferno.node.js","_from":".","module":"dist-es/index.js","rollup":{"moduleName":"Inferno","moduleGlobal":"Inferno"},"_shasum":"33ebd5836e5238f1523efe836070879b6513fa78","scripts":{},"typings":"dist-es/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.5.0","dependencies":{"inferno-shared":"^1.3.0-rc.1","inferno-vnode-flags":"^1.3.0-rc.1"},"bundleDependencies":["inferno-shared","inferno-vnode-flags"],"_npmOperationalInternal":{"tmp":"tmp/inferno-1.3.0-rc.1.tgz_1486421282428_0.2568871935363859","host":"packages-18-east.internal.npmjs.com"}},"1.3.0-rc.2":{"name":"inferno","version":"1.3.0-rc.2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.3.0-rc.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"9651ea479e483590ab5c67937670e219f34e2e8d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.3.0-rc.2.tgz","integrity":"sha512-8JbkBJpBTnK5l6NqaNxOnUGJc/+7REidemsT1WztpF+tXMIjhVRXdVKXEYMrDu6ltxk9rGmkXGdcEXR/9dZgyg==","signatures":[{"sig":"MEUCIFWcZRtSZ/dN4qWTp41AtVaNF0frNBbUaBR7Uyx4WnM6AiEA9S2mSYstnfcdjIQLEiEh0MTEEmwWkV/YzV2F4G046P8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/inferno.node.js","_from":".","module":"dist-es/index.js","rollup":{"moduleName":"Inferno","moduleGlobal":"Inferno"},"_shasum":"9651ea479e483590ab5c67937670e219f34e2e8d","scripts":{},"typings":"dist-es/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.5.0","dependencies":{"inferno-shared":"^1.3.0-rc.1","inferno-vnode-flags":"^1.3.0-rc.1"},"bundleDependencies":["inferno-shared","inferno-vnode-flags"],"_npmOperationalInternal":{"tmp":"tmp/inferno-1.3.0-rc.2.tgz_1486572169937_0.6764057315886021","host":"packages-12-west.internal.npmjs.com"}},"1.3.0-rc.3":{"name":"inferno","version":"1.3.0-rc.3","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.3.0-rc.3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"0c5e01c4df3a629f8dad771ecdc612e1109c0c6b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.3.0-rc.3.tgz","integrity":"sha512-QkQZOgN2/OVlMD32tvx4j1WBzU9KvhFcVgrQPM5kJ66lUXQNmkDxVMMI0aJohtXc5nnMy5bRs3OVvkflZ982IA==","signatures":[{"sig":"MEQCIGEBCy/pK2SOEAwNKIeiZK79IOYG6gP9xuckbOF+jPdmAiAAlYiWsZYzKd9SUk1jV+pQKRTcHZlLlbLwh9/esH5jkA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/inferno.node.js","_from":".","module":"dist-es/index.js","rollup":{"moduleName":"Inferno","moduleGlobal":"Inferno"},"_shasum":"0c5e01c4df3a629f8dad771ecdc612e1109c0c6b","scripts":{},"typings":"dist-es/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.5.0","dependencies":{"inferno-shared":"^1.3.0-rc.3","inferno-vnode-flags":"^1.3.0-rc.1"},"bundleDependencies":["inferno-shared","inferno-vnode-flags"],"_npmOperationalInternal":{"tmp":"tmp/inferno-1.3.0-rc.3.tgz_1486587124647_0.8002985808998346","host":"packages-12-west.internal.npmjs.com"}},"1.3.0-rc.4":{"name":"inferno","version":"1.3.0-rc.4","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.3.0-rc.4","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"16a5897ffa746b9f626ed1b031b489e378a01898","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.3.0-rc.4.tgz","integrity":"sha512-sx6iRJ5knrU7cTRhm4o6lisYwd2UvWJGjME42F7LSV00Jf7Kaf7sx1wlPpKaNOxsJUfymglaMKi844Wxv1zdgw==","signatures":[{"sig":"MEUCID3Xj5OY0jmP0uLo6mpq6LWHPnsnH2gAdSPHaiwgdTVLAiEA5HcSxM1NMvTdl2yurfYUflW0xd0jKq0QmjGuzwAF3+g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/inferno.node.js","_from":".","rollup":{"moduleName":"Inferno","moduleGlobal":"Inferno"},"_shasum":"16a5897ffa746b9f626ed1b031b489e378a01898","scripts":{},"typings":"dist-es/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"jsnext:main":"dist-es/index.js","_nodeVersion":"7.5.0","dependencies":{"inferno-shared":"^1.3.0-rc.4","inferno-vnode-flags":"^1.3.0-rc.4"},"bundleDependencies":["inferno-shared","inferno-vnode-flags"],"_npmOperationalInternal":{"tmp":"tmp/inferno-1.3.0-rc.4.tgz_1487836609170_0.46770600811578333","host":"packages-12-west.internal.npmjs.com"}},"1.3.0-rc.6":{"name":"inferno","version":"1.3.0-rc.6","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.3.0-rc.6","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"dab55e6360c364e50337305458ac95bca429d2a1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.3.0-rc.6.tgz","integrity":"sha512-1sx+9+8zGxqDkySV86xijHCEytKz9PlZDjWC1DYI+eYQIlJq0T674DWhw2wlcQOyMf5wpisVTGR78tmlLi6l9g==","signatures":[{"sig":"MEUCIBeLsp1DaRhF9ZDMszbXH23jkUdLXiVa30ru+ZNiI4CfAiEAw5a7+Y4G0TKGpvQX+EeU4K0Q3fQjpkbUlUhOFlfqtMA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/inferno.node.js","_from":".","rollup":{"moduleName":"Inferno","moduleGlobal":"Inferno"},"_shasum":"dab55e6360c364e50337305458ac95bca429d2a1","scripts":{},"typings":"dist-es/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"jsnext:main":"dist-es/index.js","_nodeVersion":"7.6.0","dependencies":{"inferno-shared":"^1.3.0-rc.4","inferno-vnode-flags":"^1.3.0-rc.4"},"bundleDependencies":["inferno-shared","inferno-vnode-flags"],"_npmOperationalInternal":{"tmp":"tmp/inferno-1.3.0-rc.6.tgz_1487939618134_0.6580034529324621","host":"packages-18-east.internal.npmjs.com"}},"1.3.0-rc.7":{"name":"inferno","version":"1.3.0-rc.7","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.3.0-rc.7","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"c52f5ae63f77b1a4a01b721211ae46440ef1b5bb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.3.0-rc.7.tgz","integrity":"sha512-kVuWOgMakg43umxhzgluUBDTWerZoznttf/PU2sGq08GvAJy4jK+MwtEcE2mbT8zN72z4gjJOC0OmjY+0YBiMg==","signatures":[{"sig":"MEYCIQDVwDu/7Vi5Jfyo7AvF/2RylD3dHYpaehLM/KSAssSjqAIhAJr+bjnjCyln1eBmV876syzFhEfmUfr37c23BJ3wObx2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/inferno.node.js","_from":".","rollup":{"moduleName":"Inferno","moduleGlobal":"Inferno"},"_shasum":"c52f5ae63f77b1a4a01b721211ae46440ef1b5bb","scripts":{},"typings":"dist-es/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"jsnext:main":"dist-es/index.js","_nodeVersion":"7.6.0","dependencies":{"inferno-shared":"^1.3.0-rc.4","inferno-vnode-flags":"^1.3.0-rc.4"},"bundleDependencies":["inferno-shared","inferno-vnode-flags"],"_npmOperationalInternal":{"tmp":"tmp/inferno-1.3.0-rc.7.tgz_1487943514481_0.8929103729315102","host":"packages-12-west.internal.npmjs.com"}},"1.3.0-rc.8":{"name":"inferno","version":"1.3.0-rc.8","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.3.0-rc.8","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"cdbb8e705119f5998c7f9094938eeebb79b59661","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.3.0-rc.8.tgz","integrity":"sha512-cEO1JZqX+QONCHUy/14xoAp/X7C9n9u/Qwis1BQyS7eYLrVGi0RdE2BvKlDVgIptLl/v3JfasDl0I74bPBbeYA==","signatures":[{"sig":"MEUCIEkolkws+6IbOnAACbPIWp4yj0UcrwU2+Buh6wUfolKcAiEAslr0h8KpxqCGKga1b3KU2oewlzc39S64n+02x4HLgOY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/inferno.node.js","_from":".","rollup":{"moduleName":"Inferno","moduleGlobal":"Inferno"},"_shasum":"cdbb8e705119f5998c7f9094938eeebb79b59661","scripts":{},"typings":"dist-es/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"jsnext:main":"dist-es/index.js","_nodeVersion":"7.6.0","dependencies":{"inferno-shared":"^1.3.0-rc.8","inferno-vnode-flags":"^1.3.0-rc.4"},"bundleDependencies":["inferno-shared","inferno-vnode-flags"],"_npmOperationalInternal":{"tmp":"tmp/inferno-1.3.0-rc.8.tgz_1488049023920_0.7905810168012977","host":"packages-12-west.internal.npmjs.com"}},"1.3.0-rc.9":{"name":"inferno","version":"1.3.0-rc.9","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.3.0-rc.9","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"943ffe8e6b25f72badc21360b4ba7dd2f07d8f25","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.3.0-rc.9.tgz","integrity":"sha512-SyAM8sF7qAVbPXrt3VjUWsV1Es0sYzroBYJuxd9hwHeQ4Ck3euOiXbaqqVTu0W4E64S2nWsB1tftB2/8tPjDDA==","signatures":[{"sig":"MEUCID35WGE0XjU6tCYZonQj77oc+fcSvycuncQQfGuPnx0jAiEAjpQBTqsx26Op2o3x5Aqdho77Etodj3i6AVf8445TgdQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/inferno.node.js","_from":".","rollup":{"moduleName":"Inferno","moduleGlobal":"Inferno"},"_shasum":"943ffe8e6b25f72badc21360b4ba7dd2f07d8f25","scripts":{},"typings":"dist-es/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"jsnext:main":"dist-es/index.js","_nodeVersion":"7.6.0","dependencies":{"inferno-shared":"^1.3.0-rc.9","inferno-vnode-flags":"^1.3.0-rc.4"},"bundleDependencies":["inferno-shared","inferno-vnode-flags"],"_npmOperationalInternal":{"tmp":"tmp/inferno-1.3.0-rc.9.tgz_1488561078414_0.2985628778114915","host":"packages-12-west.internal.npmjs.com"}},"1.3.0-rc.10":{"name":"inferno","version":"1.3.0-rc.10","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.3.0-rc.10","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"93712133bd9229cdff77c0333de6849338418a1b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.3.0-rc.10.tgz","integrity":"sha512-ZJujxpHtWaeYhwZdMlHvhP3E1RNhCYE4hfSevyz27UdAQsKVAJXyh2NxF+7hkJ8vi0f/ynXZqLhU7iqhazKdYA==","signatures":[{"sig":"MEUCIHF8Jg4UxWYxaPU/d2j3Cog2r9fU8AiYTAT0fPS62RODAiEA0aliD8yDIRMU/EeELNs8xBeIYIF0WB9peVdx0g4zkQc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/inferno.node.js","_from":".","rollup":{"moduleName":"Inferno","moduleGlobal":"Inferno"},"_shasum":"93712133bd9229cdff77c0333de6849338418a1b","scripts":{},"typings":"dist-es/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"jsnext:main":"dist-es/index.js","_nodeVersion":"7.7.1","dependencies":{"inferno-shared":"^1.3.0-rc.10","inferno-vnode-flags":"^1.3.0-rc.4"},"bundleDependencies":["inferno-shared","inferno-vnode-flags"],"_npmOperationalInternal":{"tmp":"tmp/inferno-1.3.0-rc.10.tgz_1488751980688_0.41713425144553185","host":"packages-12-west.internal.npmjs.com"}},"1.3.0":{"name":"inferno","version":"1.3.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.3.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"715efc195d8c4ef2925171878ad39bc52abb4411","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.3.0.tgz","integrity":"sha512-Glve1I/eUz4+a0ZHvMlq9/3Y4+3KdDr96gB5qV07HDT27JwlsfT2jR2RGkLJs6lRMJ8z6ogkt6ejnCyMfBZfTA==","signatures":[{"sig":"MEYCIQDgejOYLkRGNyyV/ZXeDGKXoBODXaaoLyq9xSnWEVMpUQIhALKgUcwIu5nlYFdkbJEAsrZoL/uYPgP8/OP5ha/YqNGA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/inferno.node.js","_from":".","rollup":{"moduleName":"Inferno","moduleGlobal":"Inferno"},"_shasum":"715efc195d8c4ef2925171878ad39bc52abb4411","scripts":{},"typings":"dist-es/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.6.0","dependencies":{"inferno-shared":"^1.3.0","inferno-vnode-flags":"^1.3.0"},"inferno:main":"dist-es/index.js","bundleDependencies":["inferno-shared","inferno-vnode-flags"],"_npmOperationalInternal":{"tmp":"tmp/inferno-1.3.0.tgz_1489081531996_0.017699599266052246","host":"packages-12-west.internal.npmjs.com"}},"1.3.1":{"name":"inferno","version":"1.3.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.3.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"5e8229a821aa417bfb97aeb70f67d1615141af36","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.3.1.tgz","integrity":"sha512-Kg+7XadkzW7KFp41U3xHHKEkCRKpncm+Zv4SfOVikd27/l2IybOcbJlABhoKj7GtxImMC6NHdgctJpzqnQOi+A==","signatures":[{"sig":"MEUCIQCQLuxf8PLq3E9Qj2mYx6aJ7xEzwYC2DqwWmD32Xdl3+gIgdE0lNINuVIL7GYjQD89X7Oazh9MdY3sET39bohgcaAs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/inferno.node.js","_from":".","rollup":{"moduleName":"Inferno","moduleGlobal":"Inferno"},"_shasum":"5e8229a821aa417bfb97aeb70f67d1615141af36","scripts":{},"typings":"dist-es/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.6.0","dependencies":{"inferno-shared":"^1.3.0","inferno-vnode-flags":"^1.3.0"},"inferno:main":"dist-es/index.js","bundleDependencies":["inferno-shared","inferno-vnode-flags"],"_npmOperationalInternal":{"tmp":"tmp/inferno-1.3.1.tgz_1489082037797_0.3889826375525445","host":"packages-18-east.internal.npmjs.com"}},"1.4.0":{"name":"inferno","version":"1.4.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.4.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"2ded04cba031edfd4b7140c90f01f673b1ddf705","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.4.0.tgz","integrity":"sha512-x+wRMdRF1nqwQLB2Qp2w8aHYfdtN9rZRkt7ngOsPjREhdz7cTLGnPCxvpX9MQeWHfz+fURBAqAL5LeiM3F8X8Q==","signatures":[{"sig":"MEYCIQCVhGe1+n6mjrN4a0pAGCQEfHUw8N9QtnEESHvEfwMUUgIhANlIhn1wNTQJtdQCD5xRWmLHv5aq/Z76kc7wmEkX4bU8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/inferno.node.js","_from":".","rollup":{"moduleName":"Inferno","moduleGlobal":"Inferno"},"_shasum":"2ded04cba031edfd4b7140c90f01f673b1ddf705","scripts":{},"typings":"dist-es/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.6.0","dependencies":{"inferno-shared":"^1.3.0","inferno-vnode-flags":"^1.4.0"},"inferno:main":"dist-es/index.js","bundleDependencies":["inferno-shared","inferno-vnode-flags"],"_npmOperationalInternal":{"tmp":"tmp/inferno-1.4.0.tgz_1489346887553_0.4883092644158751","host":"packages-12-west.internal.npmjs.com"}},"1.4.1-alpha.5a4983fd":{"name":"inferno","version":"1.4.1-alpha.5a4983fd","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.4.1-alpha.5a4983fd","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"0f8d3b9c34987c67be004ac4eab1deeb6ab0c2db","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.4.1-alpha.5a4983fd.tgz","integrity":"sha512-jq0oD+YoTSSEL1umSVT94i2OscYnUEbblwRaov2W56CGtUdHKcND8t6dSDbqT+ACVA9YMj2wWOcFMFq+mt7Kaw==","signatures":[{"sig":"MEQCIEPS9OsS0LPgF+JmYz+dhjDpGfEAqQGqibdvjFvtgLteAiAY7jqfoU9H6NXhnG4GDCz9vQymdAv7/5FVt5hfPRqAQQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"0f8d3b9c34987c67be004ac4eab1deeb6ab0c2db","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"holevietlong@gmail.com"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"3.10.10","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.10.0","dependencies":{"inferno-shared":"^1.4.1-alpha.5a4983fd","inferno-vnode-flags":"^1.4.1-alpha.5a4983fd"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.4.1-alpha.5a4983fd.tgz_1489935141511_0.7938405291642994","host":"packages-18-east.internal.npmjs.com"}},"1.4.1-alpha.927f437b":{"name":"inferno","version":"1.4.1-alpha.927f437b","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.4.1-alpha.927f437b","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"e40b92e18c567cb226ed0587f0edcabf81ea5fd6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.4.1-alpha.927f437b.tgz","integrity":"sha512-smY75FA2GBfggSpJT5KErmucokmGB1oRgSsOZRUVSmNnWN51AR6hwSJnSLADgmOsP3SJVKPGQtOcsOMGPOW+8w==","signatures":[{"sig":"MEUCIQCpkqJJbkj2l1l/kXGtsgCiOqJ4W3cwHHPDCn5nIN2YxAIgOmLtzw8oQlVCn2s7b4pRligafzeitsxFFXLT4ZlYUwg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"e40b92e18c567cb226ed0587f0edcabf81ea5fd6","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"holevietlong@gmail.com"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"3.10.10","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.10.0","dependencies":{"inferno-shared":"^1.4.1-alpha.927f437b","inferno-vnode-flags":"^1.4.1-alpha.927f437b"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.4.1-alpha.927f437b.tgz_1489964475843_0.5527916382998228","host":"packages-18-east.internal.npmjs.com"}},"1.4.1":{"name":"inferno","version":"1.4.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.4.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"9950428f0d5fcaf7eb260823f13abc77b4d0eb27","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.4.1.tgz","integrity":"sha512-aFRxYPsAYV6J77A4P2yj061Z/I0NKAg9VL3bHTN9XT09cm0Mfc8vXJ+Q+tJ+jcXkrbSuYKIi5hf56IUXi6jRbQ==","signatures":[{"sig":"MEUCIQCvqIrBzSa0lYbwWr+j33yAJ/SOVBhvOqowZFGHcsxNbwIgYjG9C+JZlaFbrDNnCvzaGcFt3Mr1GZYyaYNebMVwlf8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"9950428f0d5fcaf7eb260823f13abc77b4d0eb27","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"holevietlong@gmail.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"3.10.10","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.10.0","dependencies":{"inferno-shared":"^1.4.1","inferno-vnode-flags":"^1.4.1"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.4.1.tgz_1490022804560_0.5435254815965891","host":"packages-12-west.internal.npmjs.com"}},"1.4.1-alpha.5f5d5901":{"name":"inferno","version":"1.4.1-alpha.5f5d5901","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.4.1-alpha.5f5d5901","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"e8ebdd2ade3f4d18539b3d6ee11eabdc414c7118","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.4.1-alpha.5f5d5901.tgz","integrity":"sha512-VDY4OoT7pUpEhxaGxy3Fly6wGCLZrBTg3OM1ONI1onpn2aDP0UjYsjAx1jKU4aoRtxHBdDuXOMO3l2IEDynRfw==","signatures":[{"sig":"MEUCIQCE+BD5MxUdhljuBZWXsh65txj2AGuRXySx+UqXhDEa+QIgCMxKTruHEV0LodyE6oNlJURFsA+d4fdIE6ui9ZZqrhM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"e8ebdd2ade3f4d18539b3d6ee11eabdc414c7118","browser":"dist/inferno.min.js","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"holevietlong@gmail.com"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"3.10.10","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.10.0","dependencies":{"inferno-shared":"^1.4.1-alpha.5f5d5901","inferno-vnode-flags":"^1.4.1-alpha.5f5d5901"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.4.1-alpha.5f5d5901.tgz_1490104766803_0.8571008727885783","host":"packages-18-east.internal.npmjs.com"}},"1.4.2-alpha.5f5d5901":{"name":"inferno","version":"1.4.2-alpha.5f5d5901","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.4.2-alpha.5f5d5901","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"3187224d08e175163cf8a077f1b53967160a0a4a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.4.2-alpha.5f5d5901.tgz","integrity":"sha512-5FvkUsFJRHpC+qUL5WmcMVPdzCYGOWT3CBN4ZOTsDp860h2WYMjAMYH1oi0prAWXKSfxXjq/ImZpcjhYUHPJ0g==","signatures":[{"sig":"MEUCIQCKsKv4JJa00Iu3reKAX5SLlTKU0IkB4bzK40rnLKs+wAIgVqLKWVrZkfv6udtTiQOXv17WxGlx9YU1rTPPICgbI9k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"3187224d08e175163cf8a077f1b53967160a0a4a","browser":"dist/inferno.min.js","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"holevietlong@gmail.com"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"3.10.10","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.10.0","dependencies":{"inferno-shared":"^1.4.2-alpha.5f5d5901","inferno-vnode-flags":"^1.4.2-alpha.5f5d5901"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.4.2-alpha.5f5d5901.tgz_1490105776513_0.48740484309382737","host":"packages-12-west.internal.npmjs.com"}},"1.4.2":{"name":"inferno","version":"1.4.2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.4.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"dcf2503b0aa4da7e6279febab894fc31377eb6ee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.4.2.tgz","integrity":"sha512-tTGpytUcsukQ1y7yvJQbjwlxY2jYgZZZMoJlai0rFlFa4wIkbTatse9PrUM9RxGserOsBDt9zGsbhanSFozKNQ==","signatures":[{"sig":"MEUCIQCOJgUCBvuRh2RemwOgap2ppDFxfkzK6Abpj8yvx1nBswIgJ33VYaftlXqALvV/W+vND6zvgDJkFcCZEwE3T83hYwU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"dcf2503b0aa4da7e6279febab894fc31377eb6ee","browser":"dist/inferno.min.js","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"holevietlong@gmail.com"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"3.10.10","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.10.0","dependencies":{"inferno-shared":"^1.4.1","inferno-vnode-flags":"^1.4.1"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.4.2.tgz_1490113626776_0.7977278339676559","host":"packages-12-west.internal.npmjs.com"}},"1.4.2-alpha.9a8a49c6":{"name":"inferno","version":"1.4.2-alpha.9a8a49c6","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.4.2-alpha.9a8a49c6","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"25a67d824228064ccc927c616a0eb07a426d4e7a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.4.2-alpha.9a8a49c6.tgz","integrity":"sha512-BAyiVnbExQw224qFCXBPq/o7UkGyeMxOb2NXragUYeO9ByMHzJWSsTjNP8YMkSF93Sq6pZQiF+Tc3vH6+4nJYA==","signatures":[{"sig":"MEUCIQCUEXRgl811yuYWkAnAzQnrbcXkPi0FXVWdY604vdXwgAIgf2/TPQGdxlIhDz5JdM/Ex9qPZhYJbEaAo+cHJQzD2mw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"25a67d824228064ccc927c616a0eb07a426d4e7a","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"holevietlong@gmail.com"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"3.10.10","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.10.0","dependencies":{"inferno-shared":"^1.4.2-alpha.9a8a49c6","inferno-vnode-flags":"^1.4.2-alpha.9a8a49c6"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.4.2-alpha.9a8a49c6.tgz_1490363807813_0.5979521383997053","host":"packages-18-east.internal.npmjs.com"}},"1.5.0-alpha.949b4a8a":{"name":"inferno","version":"1.5.0-alpha.949b4a8a","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.5.0-alpha.949b4a8a","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"2d0d0ba59ada377e891ad3632be9a2a52d0af92d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.5.0-alpha.949b4a8a.tgz","integrity":"sha512-XXMr8RWLgx0/l1zyWuoxds4oX0GX+WWUjnyplpfP0nTI8lN+z/DkdlskEoCIeoxUZnUm2BlEXtzh1ZTIqd7t3g==","signatures":[{"sig":"MEQCIDAfKW2X3+9H1FPxSx2NI2t8IVxWOw+Owel4iN9VsQdYAiBptcMrzVJXCmRaRHJoOfHqk3uGiAubaaL2pL/hbWy2/g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"2d0d0ba59ada377e891ad3632be9a2a52d0af92d","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.7.3","dependencies":{"inferno-shared":"^1.5.0-alpha.949b4a8a","inferno-vnode-flags":"^1.5.0-alpha.949b4a8a"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.5.0-alpha.949b4a8a.tgz_1490531544345_0.7254827946890146","host":"packages-12-west.internal.npmjs.com"}},"1.5.0-alpha.2f6639f8":{"name":"inferno","version":"1.5.0-alpha.2f6639f8","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.5.0-alpha.2f6639f8","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"3fa0ac9e1048f153b517ececee127ad170baa705","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.5.0-alpha.2f6639f8.tgz","integrity":"sha512-NYrvjO/cHBKZOCaKOFNYJhLW5VpI0q8Scm8pPTr/Bdpss9omXX5kAgNf//3Cnpd8MaC7MAAWH7a9ZjE1OymTfQ==","signatures":[{"sig":"MEUCIEqwYtV7juWLcswXbo7PMSlTayaK6oU0oVDDDaDoIrJWAiEAidRAP2NF+tEzGxxVdaYwezmA0MAm/+zmaxAex4+BUSQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"3fa0ac9e1048f153b517ececee127ad170baa705","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.7.3","dependencies":{"inferno-shared":"^1.5.0-alpha.2f6639f8","inferno-vnode-flags":"^1.5.0-alpha.2f6639f8"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.5.0-alpha.2f6639f8.tgz_1490534644723_0.8536543578375131","host":"packages-12-west.internal.npmjs.com"}},"1.5.1":{"name":"inferno","version":"1.5.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.5.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"16654592c7cc224f6284c67940492672e739f440","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.5.1.tgz","integrity":"sha512-LReQNGiPXM8BZkxao05kcfS539oWNIZugTjGSXB83JZynKEP84Tlks1OLUwxy+i0AFbjl7JJnyegIv4l/3pYbA==","signatures":[{"sig":"MEYCIQDdkE+THka24GCfZtjl6zoFVbMb3p772KL0VfiWVtBvlQIhAOY3Ohg09n4oStFTjYDbwfdoEc2nALXekpzscsttKTzy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"16654592c7cc224f6284c67940492672e739f440","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.7.3","dependencies":{"inferno-shared":"^1.5.1","inferno-vnode-flags":"^1.5.1"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.5.1.tgz_1490636836810_0.30765329767018557","host":"packages-12-west.internal.npmjs.com"}},"1.5.2":{"name":"inferno","version":"1.5.2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.5.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"d5589f067a51e06ee0b024d9928e83934a45cd52","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.5.2.tgz","integrity":"sha512-xacCtiTgrxOrudeGa39x3/KYCGtc9/139Fqv4vdoowrTgoSE1oTE7B0+iWU+xixVqBeTEol1/KRWw7bVj+NZxQ==","signatures":[{"sig":"MEUCIQDs4nC1a4WkuEE/nAt1uXHHigDuq5OU9h5KTsZ/2WdEQgIgeBxWp0cZkYHqPvj1ZCSFVaIZxmTemvbBK34eHyxSv0o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"d5589f067a51e06ee0b024d9928e83934a45cd52","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.7.3","dependencies":{"inferno-shared":"^1.5.1","inferno-vnode-flags":"^1.5.1"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.5.2.tgz_1490643094415_0.9938558100257069","host":"packages-18-east.internal.npmjs.com"}},"1.5.3":{"name":"inferno","version":"1.5.3","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.5.3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"4b9ef0478a495b4e52aa937e32e20b9c44ce4273","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.5.3.tgz","integrity":"sha512-scO3ygqBJwy1ftf7ft1hIM7Di5A8A2e3OMk/vFLOhVcV74OHN9y1R14SVO06BdTK4RwHMvQnVnGJsQk5Qny3og==","signatures":[{"sig":"MEUCIQCga7yvmpwr9G6XH+BfebHtDxleIHRCqUR9osmY5Vu8GgIgHd3R5sLiQIyAObnFyovGbTbCoB5FFu8BuF7VUFpWzr4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"4b9ef0478a495b4e52aa937e32e20b9c44ce4273","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.7.3","dependencies":{"inferno-shared":"^1.5.1","inferno-vnode-flags":"^1.5.1"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.5.3.tgz_1490647860806_0.6550118019804358","host":"packages-12-west.internal.npmjs.com"}},"1.5.4":{"name":"inferno","version":"1.5.4","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.5.4","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"f2a218e3d98ca84c25cda044723f20ccce938b16","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.5.4.tgz","integrity":"sha512-eFcNu9wEDgr7iv7XNfREG0lemFdW13c+Ia3egY+bqTtvs6U1fu12ZngaFeshgUrcd5xKRf6e/mEi2yJw2kXu9w==","signatures":[{"sig":"MEYCIQD7eCw1A4fVXi5d1PQQmbZaSLy1MyPQweL+qRX2Cm8MnQIhAL4M5OgAA9fdI0ie2+T963EWs14ZxREde9Wt9Au+fKdw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"f2a218e3d98ca84c25cda044723f20ccce938b16","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.7.3","dependencies":{"inferno-shared":"^1.5.1","inferno-vnode-flags":"^1.5.1"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.5.4.tgz_1490727173876_0.43197147245518863","host":"packages-18-east.internal.npmjs.com"}},"1.5.5":{"name":"inferno","version":"1.5.5","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.5.5","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"9b266529f6335865f03f96f641dee73b64c0cd66","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.5.5.tgz","integrity":"sha512-9yQFKFq25lZnHftT9f5aS/QYeB3GePfglK9kmmBO2xusHlKlN4lMSCdzY7amYv9wstPTX7OC8rOpnagU2XC2MQ==","signatures":[{"sig":"MEQCICN2ZW9s8hyVXXWKgb7k8n5nCixeDj/0p4v/A47SFkosAiBgPyfQrcV4J2SVL188HIW3OKLTBdJOMvm6Yr+/W/xpsw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"9b266529f6335865f03f96f641dee73b64c0cd66","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.1.2","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.7.3","dependencies":{"inferno-shared":"^1.5.1","inferno-vnode-flags":"^1.5.1"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.5.5.tgz_1490807831419_0.09089585859328508","host":"packages-18-east.internal.npmjs.com"}},"1.5.6":{"name":"inferno","version":"1.5.6","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.5.6","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"5e79973247727a6ea5befe4929c242c7d7665c72","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.5.6.tgz","integrity":"sha512-BbrinXylNN6UrfAzvCe639gCH+vwyUfJCjxJC9b3YdWIuKvW8nG26sR3I/WX4VriYKXnTsIlaHwYX7cIx9MRgA==","signatures":[{"sig":"MEUCIFmG6KEzsWmmHw7JIHNSfEQnaO4KE4TkA1fQTNclU4QaAiEA91zdNFVLEEYE9UN2dYwajk7WwiUslgwUwJQ2HlW+5lg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"5e79973247727a6ea5befe4929c242c7d7665c72","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.8.0","dependencies":{"inferno-shared":"^1.5.6","inferno-vnode-flags":"^1.5.1"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.5.6.tgz_1490903820174_0.8292610722128302","host":"packages-12-west.internal.npmjs.com"}},"1.6.0":{"name":"inferno","version":"1.6.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.6.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"e5cb246dab5fee58738513fe0a9e4d725d65fb4b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.6.0.tgz","integrity":"sha512-5qco4oJ7iWKRsFT83Zg5FFYAyCN4jslr6A1PNhqwneTqsaXKBqXHfdXzGk6+SYMBz2nD1uyQHOZ8EPFfMRhC4A==","signatures":[{"sig":"MEYCIQCfRJTY95Zg3Rd6jTmA/Fi/u091DwCOSX6hzFW1TjTX2AIhANVyhDy+ynjOhhdDcZlENltrGl+HMdpA7k3PUvO+zC9A","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"e5cb246dab5fee58738513fe0a9e4d725d65fb4b","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.8.0","dependencies":{"inferno-shared":"^1.6.0","inferno-vnode-flags":"^1.6.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.6.0.tgz_1491242284772_0.46889396174810827","host":"packages-18-east.internal.npmjs.com"}},"1.6.1":{"name":"inferno","version":"1.6.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.6.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"871405aa5851de116b221fb887e5c6d875f14f1f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.6.1.tgz","integrity":"sha512-on0/NLTg1laH6DXyUqlQV0yRI6nsgsA67e3r7F2iHaL94aR4GTG8VePOGt1RCfcYEhHfJ3lBX2ofEtiORy8Hrw==","signatures":[{"sig":"MEUCIGG4Z61lSKY29QYl0MNlzhl2+zTJHlWPHnmsrf+GvogRAiEA+vO1++xIaq4A0ybSwU8hxIG/K4qWK9m63VKRMrQr6xg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"871405aa5851de116b221fb887e5c6d875f14f1f","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.8.0","dependencies":{"inferno-shared":"^1.6.1","inferno-vnode-flags":"^1.6.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.6.1.tgz_1491341239735_0.5099812399130315","host":"packages-18-east.internal.npmjs.com"}},"1.6.2":{"name":"inferno","version":"1.6.2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@1.6.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"355bd475d348143737f8197affb865aa9bc06ad5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-1.6.2.tgz","integrity":"sha512-HtvQBgT6CPuENVZFIcevR4O4BR1hPNnUroHoSRjo2UlWT1mHEesr7Crd+3OGPAxPKo0VOAVaeu0oXIOjKctLdQ==","signatures":[{"sig":"MEQCIClvLpBoYeuCfyBVMjwilXxd+OfTj+xQlB3n785MdF2bAiBvmBmHZ29pmEbte8/D3tx02fUylDyBP9gyxPK7JCpBtw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"355bd475d348143737f8197affb865aa9bc06ad5","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.8.0","dependencies":{"inferno-shared":"^1.6.1","inferno-vnode-flags":"^1.6.2"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-1.6.2.tgz_1491425152088_0.9890392506495118","host":"packages-18-east.internal.npmjs.com"}},"2.0.0":{"name":"inferno","version":"2.0.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@2.0.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"4a7062529e44919c3565923f15078a4fe7b8270e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-2.0.0.tgz","integrity":"sha512-9K9DuXiEZqs4kKOiLlp1CbCL2VdcYetZyZucWyN6heCVEkujnBgz+/J+kGALJLDt42Cs2SFrh6dAPOdMfi7IdA==","signatures":[{"sig":"MEUCIQCyz046U/GETdrh2H2BT4fL+tDXIeuIwPkxbpMewtk5mwIgZSvq6QCD1KRs0kBVa29L0FF9vkoE+RL5ZlLtQGMMB30=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"4a7062529e44919c3565923f15078a4fe7b8270e","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"deprecated":"All versions before 3.x are deprecated!","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.8.0","dependencies":{"inferno-shared":"^2.0.0","inferno-vnode-flags":"^2.0.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-2.0.0.tgz_1491859635813_0.5301846833899617","host":"packages-12-west.internal.npmjs.com"}},"3.0.0":{"name":"inferno","version":"3.0.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.0.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"ea0b1fdb83b6a413cdf21047e2faa2430e0f57d4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.0.0.tgz","integrity":"sha512-Ik3pWKm2GqSAXfG+TWuEtpIamEnry4iumCtw7iDC6ppRh14hIvLLOH1QQp1ORiQL7qr4af/Qd2KVO/fkiBdtlQ==","signatures":[{"sig":"MEYCIQD13AiRkSKdM3V+q6RBjA+U+IGD8WLDb0Zu28JQZ25p/AIhAPPdkrfCUc97ye6SGzPJ6zemgBxXnJYp0vB4v99vaNmi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"ea0b1fdb83b6a413cdf21047e2faa2430e0f57d4","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.8.0","dependencies":{"inferno-shared":"^3.0.0","inferno-vnode-flags":"^3.0.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.0.0.tgz_1491860083209_0.41063041682355106","host":"packages-18-east.internal.npmjs.com"}},"3.0.1":{"name":"inferno","version":"3.0.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.0.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"6f54e08eaaad5c01441f650679985eb436812895","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.0.1.tgz","integrity":"sha512-kNWiQta5mpJhiw3rQQW/uM4+8madqT6v8pXrpGy8dzW8Fw9YbkGyGsViC3tP0AJzDgt9rf6hiMFPiFPJwW0ZPg==","signatures":[{"sig":"MEUCIDD7+WFCUPw+W6e+rM4vJXsxm8CIL5Ay3YL/N3fgyo3YAiEAibcUEVstsFPagZP49WgLCpdvJb/v55piFqpA+gyPO7I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"6f54e08eaaad5c01441f650679985eb436812895","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.8.0","dependencies":{"inferno-shared":"^3.0.0","inferno-vnode-flags":"^3.0.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.0.1.tgz_1491861348233_0.1252629451919347","host":"packages-12-west.internal.npmjs.com"}},"3.0.2":{"name":"inferno","version":"3.0.2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.0.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"97ec67e279f660fe2b66d541d8b6a294d57b47b0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.0.2.tgz","integrity":"sha512-X5MmyPwn10O9YWwUWo4ASXaKXlVjl+P6VT6AW11SV5Fo72MUHS84ItY8nqOMMsu6uPjFQctn6IRQqK1iN868cw==","signatures":[{"sig":"MEYCIQDmfISFAh6WjSzyaNpZwz3C44edqzbrPQB97m5axSRCEAIhAMwZE8V4YUJQwnNLAr3pBCgFbQj116Q9BQjT+Ro3yYVS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"97ec67e279f660fe2b66d541d8b6a294d57b47b0","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.8.0","dependencies":{"inferno-shared":"^3.0.0","inferno-vnode-flags":"^3.0.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.0.2.tgz_1491864132894_0.309046613285318","host":"packages-18-east.internal.npmjs.com"}},"3.0.3":{"name":"inferno","version":"3.0.3","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.0.3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"603bb1ad36d3950bc6978f5d6432e30867beb044","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.0.3.tgz","integrity":"sha512-NDejcJb5UqBHAte1MYydadWqB5nA/2xQuTJZGdLF+CLUz0rK/jbVDG06ektdizEPP+mmdItucYXSUCrnjlquhg==","signatures":[{"sig":"MEYCIQDu9a7NGoMMClsVSPRLbHX3NBjdd8rtG3ml4CSvfoIudAIhAMTktNAwgvtAfGQtpfIOrTyg3fBGVd/qS4VgPpeUeaeY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"603bb1ad36d3950bc6978f5d6432e30867beb044","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.8.0","dependencies":{"inferno-shared":"^3.0.0","inferno-vnode-flags":"^3.0.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.0.3.tgz_1491889120321_0.2502388514112681","host":"packages-18-east.internal.npmjs.com"}},"3.0.4":{"name":"inferno","version":"3.0.4","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.0.4","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"cac5495e6c145bfda071d5554b123c37c2033994","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.0.4.tgz","integrity":"sha512-42dOVYviZSWSCGxrw9eyuZiumsGJkQXWwKpe5ar8//27ql6JJkCfM30skv9HnKWac/pipkW2V9kiWSOMtFBpNg==","signatures":[{"sig":"MEUCIGTQucTIsceULX2OxDwm0PltAb8nIycQvVMgiQ7clGzrAiEAxa2NvWUmj0nx5EjJsy8ljR0q5A5wfhivVzNSlzl1eQk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"cac5495e6c145bfda071d5554b123c37c2033994","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.8.0","dependencies":{"inferno-shared":"^3.0.0","inferno-vnode-flags":"^3.0.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.0.4.tgz_1492093856118_0.9310000878758729","host":"packages-12-west.internal.npmjs.com"}},"3.0.5":{"name":"inferno","version":"3.0.5","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.0.5","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"e827b8db339e5e91bae25a14a1537ebd1f7b89df","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.0.5.tgz","integrity":"sha512-bOGcyvhH3j6QukOqJwVduP/GfZUzOns2zPh5PhHk2UqP7lYWDBEPNDVvUHfzG5etxTYyRoR82QBUtIAnEI+f2g==","signatures":[{"sig":"MEYCIQDyHEq4CFfVtbcScghkYSUg82JGwizpp8PzUg0a3qxtcQIhAOp4ChyCBMAOUsY7KYsiBapSw08CJmj0Vgu0VeFhrcwl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"e827b8db339e5e91bae25a14a1537ebd1f7b89df","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.9.0","dependencies":{"inferno-shared":"^3.0.0","inferno-vnode-flags":"^3.0.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.0.5.tgz_1492580134264_0.9110110239125788","host":"packages-12-west.internal.npmjs.com"}},"3.0.6":{"name":"inferno","version":"3.0.6","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.0.6","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"3b24a56b834aebba056be1da470b06c49ca92573","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.0.6.tgz","integrity":"sha512-jARvZ4bYeL9Fm6Kyx3goYwtRVWgMs5t6/qsJTpp/8MLoPBfdzvLg1xlFqLe6yr2Pg5ZAttxluAu7rsk7jGN5vw==","signatures":[{"sig":"MEUCIQDdDSlZWBIWn7/RaeuNjCjOoJBFNzmNJ7UNyNzXLjUEfQIgYEcNxGer5a72TDlInImTfxatPyTXeGWA5ogPD+37LmQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"3b24a56b834aebba056be1da470b06c49ca92573","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.9.0","dependencies":{"inferno-shared":"^3.0.0","inferno-vnode-flags":"^3.0.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.0.6.tgz_1493222601458_0.9523977355565876","host":"packages-12-west.internal.npmjs.com"}},"3.1.0":{"name":"inferno","version":"3.1.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.1.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"4a7f5a9ba756e8b9374b8a47961ca487a4411b71","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.1.0.tgz","integrity":"sha512-zFpvG2dLnkgKKIrfbYiykzGjAgrQJkAqdrgB/8f23vVH3XFCbRye8qgRTfGWY/epkSlY19SfbUcF3tCYt8HR2A==","signatures":[{"sig":"MEYCIQCgZtE7wZ3rlnjySumJj7roJNyf2V8j5pSwgX7Mgnu8sAIhAKG7dbL5eyxTxA35H/W6CQ26zBIpdnZiU7m5TJewBzrd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"4a7f5a9ba756e8b9374b8a47961ca487a4411b71","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.9.0","dependencies":{"inferno-shared":"^3.0.0","inferno-vnode-flags":"^3.0.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.1.0.tgz_1493555039442_0.9482380305416882","host":"packages-18-east.internal.npmjs.com"}},"3.1.1":{"name":"inferno","version":"3.1.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.1.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"878a7fa9a10e9b373fb95ff9da2f61e664f426f1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.1.1.tgz","integrity":"sha512-eUe3MIuWIhCjROQogaEoJgIy4Og+PLIQ3+QsuiHb2Tn4d00/1mIZvAIiOFX62kWYlAHXhzmUb4I+rnwZ+EB70w==","signatures":[{"sig":"MEUCIFH99DkNIY6sl4xslWOlXBo6FY8c2XVUSb6Vxq79u6qZAiEA1bjaBNPv51f51jJRmJRoBXj9rshZsonsuMiR1bmoGIU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"878a7fa9a10e9b373fb95ff9da2f61e664f426f1","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.10.0","dependencies":{"inferno-shared":"3.1.1","inferno-vnode-flags":"^3.0.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.1.1.tgz_1494005384480_0.2909045855049044","host":"packages-12-west.internal.npmjs.com"}},"3.1.2":{"name":"inferno","version":"3.1.2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.1.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"37ae33ef6ed75a05b1a4b7b4b24b99fe0a120b9e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.1.2.tgz","integrity":"sha512-bpdjkddUwnzV25d3TNYXpbITRWCd6F1Zfz5DwtiRg93dMEAanyxrwqTlCPJIh1IMFKxvQ9x3MGk2ol8pMaNkkQ==","signatures":[{"sig":"MEYCIQC1esMCHP6kpUT2kUtP7LI2fRwXUYIv1oyqwwIA767YuQIhAJfMewmArqvjsn9cc0WczTtz4KfB8oW/twReDevOc8to","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"37ae33ef6ed75a05b1a4b7b4b24b99fe0a120b9e","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.10.0","dependencies":{"inferno-shared":"3.1.1","inferno-vnode-flags":"^3.0.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.1.2.tgz_1494506325397_0.16626835032366216","host":"packages-18-east.internal.npmjs.com"}},"3.2.0":{"name":"inferno","version":"3.2.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.2.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"1f7caec363eb064951d8766908db11ea3cbe60ad","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.2.0.tgz","integrity":"sha512-hNCNAcJr3PUyJArbynT3ms06Fu8zg0lGR3ml5jdNl2fD+p9/tkVTAAWGlT56kqHET85BF/mOzS3UERK+lJv0sg==","signatures":[{"sig":"MEYCIQCvQegwbwx2ukbSWgLizycnmQAquT/fhOs5Oxkj9fePXwIhAOTM0+w1mINo0/sfQ29vk6NCbaRK6BT31k4K+TAPUgGm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"1f7caec363eb064951d8766908db11ea3cbe60ad","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.10.0","dependencies":{"inferno-shared":"3.1.1","inferno-vnode-flags":"^3.0.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.2.0.tgz_1495272134048_0.3246023394167423","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"inferno","version":"3.2.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.2.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"3a485495339104b169e528ce29e5d865536d141f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.2.1.tgz","integrity":"sha512-5NtsJiNtbZNLvX4HuhIBd0SO51UNSqGcFgRYDaHRNZU0mfpBMEsbE2MPcoYhCHsW7Ok8YOY6kJGuRp5WnJB43A==","signatures":[{"sig":"MEUCIA35ym2YQXmm7PqvN5g2ZyIWk50RSu0TpTqWReUgMAeDAiEAtsZm8SnifIWRRef0RNVy4ZY2ya7cokd9MfUhRmeXDyM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"3a485495339104b169e528ce29e5d865536d141f","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.10.0","dependencies":{"inferno-shared":"3.1.1","inferno-vnode-flags":"^3.0.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.2.1.tgz_1495396173846_0.935245402622968","host":"s3://npm-registry-packages"}},"3.2.2":{"name":"inferno","version":"3.2.2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.2.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"9b5ae54bc18d206acd91c84eae698ef715ebc1fa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.2.2.tgz","integrity":"sha512-peXavZzCrXP+5HLHkR0c680tsVbpmh/7gpOZUee39zPxxvCfxnHxg1XRvuEqm+NHb4c+FAm9iudjGaGflaWs4g==","signatures":[{"sig":"MEQCIHr3HAcJRNIu7EoqXQa2MIk2tG5nnUd8Tri3rCmaCSrTAiAasXNjnBteuyGjVk7ijzzy7MqZj2vRJpj6CJ+UHbu4kw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"9b5ae54bc18d206acd91c84eae698ef715ebc1fa","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.10.0","dependencies":{"inferno-shared":"3.1.1","inferno-vnode-flags":"^3.0.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.2.2.tgz_1495440272192_0.002865841146558523","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"inferno","version":"3.3.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.3.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"kflash123@gmail.com"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"d52ccec4739f11c029b8c25a3bce6a1ab34041e2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.3.0.tgz","integrity":"sha512-2paOxxgpzJBKb0xPuCqBm9GECKJJmBjILJptjHsPdPEFpEN2sre6HWWJ2bdAdnJMrpMvCrBkQDbi7VKRPmtSCg==","signatures":[{"sig":"MEQCIFqXIQsWmfFc6mIN57HqKKpa51POA85qjBdX4kIseph0AiAtPKcIPwx4f+4WYtDNM1gg2LND84C788gd7cBuOhhROw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"d52ccec4739f11c029b8c25a3bce6a1ab34041e2","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.10.0","dependencies":{"inferno-shared":"3.1.1","inferno-vnode-flags":"^3.0.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.3.0.tgz_1495712142185_0.4926218600012362","host":"s3://npm-registry-packages"}},"3.3.1":{"name":"inferno","version":"3.3.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.3.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"376b7bcd065a1623c41904e42e0beb981e4552cd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.3.1.tgz","integrity":"sha512-sDxQKd6YDnBbLsc7PrXDx3c6Y2A5yScjU1AvyupVTh01UhFV1NfunqB8hw/hzStYIjyjdSGbm+8FJVWATmlvgQ==","signatures":[{"sig":"MEYCIQD63vjDFrEnXumy+4zzp7Y3aL7s9jQk8SgFbbHv3s8pfgIhANMcqMX9gICEWXEX25GzIuHNjJxlxQ0dCvan6Jtd4Xhd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"376b7bcd065a1623c41904e42e0beb981e4552cd","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.10.0","dependencies":{"inferno-shared":"3.1.1","inferno-vnode-flags":"^3.0.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.3.1.tgz_1495722484895_0.052499157609418035","host":"s3://npm-registry-packages"}},"3.3.1-alpha.ecaca854":{"name":"inferno","version":"3.3.1-alpha.ecaca854","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.3.1-alpha.ecaca854","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"db754fa6977cb0c60f32671b16e33519b3688c3f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.3.1-alpha.ecaca854.tgz","integrity":"sha512-MtxJqCSFIGwtIli4cRBbeQY7xigdzxLmFD6y1bN1iG5Tqh+xXcZqJSiEUwmlj/goMxbnm1aN+3K6MWtGKiRgKg==","signatures":[{"sig":"MEQCIGPcoYknwjLwEWsITbDgS4C4Gbfyht0hkncZWJFayPaCAiB6KxYTVOIAsQw9q+tDhWZykzWPMUoCICJ0ttOG73Nleg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.0.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.0.0","dependencies":{"inferno-shared":"3.3.1-alpha.ecaca854","inferno-vnode-flags":"3.3.1-alpha.ecaca854"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.3.1-alpha.ecaca854.tgz_1496348133107_0.9745704620145261","host":"s3://npm-registry-packages"}},"3.4.0":{"name":"inferno","version":"3.4.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.4.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"7298151fb33ddd21c9e6867956405b124ef6b682","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.4.0.tgz","integrity":"sha512-0yIG+MSvbtokanxwJl9R+hz8tH38kpfYBHhU5zST7wPaaHoT/k5a+ngvBPQUDbA6N2GTObrGWDU5qUi9/CHjlA==","signatures":[{"sig":"MEUCIB28XcwYYs5gB+/c4iwCK8P7X0Y2jWVQY4k4uAkWS77IAiEAgcArXYV/p8PWyBj7/Y2s4kwrxTUCzKU6SPNEjQQ1wR4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.0.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.0.0","dependencies":{"inferno-shared":"3.1.1","inferno-vnode-flags":"^3.0.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.4.0.tgz_1496348437267_0.10804125131107867","host":"s3://npm-registry-packages"}},"3.4.0-alpha.73eb03ff":{"name":"inferno","version":"3.4.0-alpha.73eb03ff","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.4.0-alpha.73eb03ff","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"31b4575c4ca386b84c6f859dbe2c569eb08169fb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.4.0-alpha.73eb03ff.tgz","integrity":"sha512-aT6JcPTFPs20yqlw0pBArTvPye7DvI3M7IpFGREx1kEJ6QH0ynVm+e56RKx01DpZX8CQETXruNZYp2MS8Wpt1A==","signatures":[{"sig":"MEQCIC0UfHE1OdjYZRG/9Abjsw+kpXo3yvsfh0p/hw+dxNyRAiB0aw8t7/7NaaKU7kql1xUaMfdP+VHyVAD2Q9Wu5t1ouw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"me@lukesheard.com"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.0.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.4.0","dependencies":{"inferno-shared":"3.1.1","inferno-vnode-flags":"^3.4.0-alpha.73eb03ff"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.4.0-alpha.73eb03ff.tgz_1496429107728_0.2771548214368522","host":"s3://npm-registry-packages"}},"3.4.2":{"name":"inferno","version":"3.4.2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.4.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"10a43b778187d7bf418f51c78e9fe1096dd9627c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.4.2.tgz","integrity":"sha512-FDPktczEr4b1ZS3wRok1adcdezckf4ekpJzH5UmS9EC+4t2tWXkkaW+CAfaErRHEdTWfUWKk8IPgNbrgBJkSuQ==","signatures":[{"sig":"MEQCIATeAqYT4dkKA5Mww8jNKTInwb3MI0TbNi46B1snQNWjAiA3jX9V41Q70z8mS41KLJeujMCAqC/i9cZ6vhq03o/JKg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"10a43b778187d7bf418f51c78e9fe1096dd9627c","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.6.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"7.10.0","dependencies":{"inferno-shared":"3.4.2","inferno-vnode-flags":"3.4.2"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.4.2.tgz_1497092275790_0.7646844792179763","host":"s3://npm-registry-packages"}},"3.4.3":{"name":"inferno","version":"3.4.3","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.4.3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"16c1a03f59edd962b033695d845d578f2d1ed4bf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.4.3.tgz","integrity":"sha512-/lGyhnKkf87RN0octZboPmyQgSa3cHOYJrzVkpXxvc9zVtMUcDJ2rMe/P/UgQsORZLHAUufdK021s8g8sDLHIw==","signatures":[{"sig":"MEUCIQDYsEM4VDqH10Xjrb6giSan9zftJ31xXGqu2oMeMMjtBQIgNwHu1H2TFHC1OqHGHYW/nAeUf/verWP8S6xfwsrUkZA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.0.3","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.0.0","dependencies":{"inferno-shared":"3.4.2","inferno-vnode-flags":"3.4.2"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.4.3.tgz_1497094156245_0.3961796152871102","host":"s3://npm-registry-packages"}},"3.4.4":{"name":"inferno","version":"3.4.4","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.4.4","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"d499681823e24f19391bd972ee8a4c630bd30a1c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.4.4.tgz","integrity":"sha512-czcD4+pQGSBKMhtWGQNqdRQQaQrbRgxIOv80LA6tqOq7ZVUpU+hvp4cpL4h0UWITQwDgYK2YBuKo0cYsXXYvAw==","signatures":[{"sig":"MEUCIEAJQKv3uvzNYz8KW4WZO7qLpVg6+Nd8YynZuQcArDvWAiEAtyaFxO50VCeSDhuoDhSJXlTvRSbaUqhIon4377oLds8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.0.3","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.0.0","dependencies":{"inferno-shared":"3.4.2","inferno-vnode-flags":"3.4.2"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.4.4.tgz_1497372159720_0.5752511930186301","host":"s3://npm-registry-packages"}},"3.5.0":{"name":"inferno","version":"3.5.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.5.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"9bb53d585054532f5d738887913b713c44bcb82a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.5.0.tgz","integrity":"sha512-hLvWbkZ3KlN7H8eVQRdMu9W0CAYe9h/He8LwMlYs5jzzQ5PTqLKFJzGTHb9DAMLcO84e1S+IgG8FjoPefU9T+Q==","signatures":[{"sig":"MEYCIQC5rRdzDZPwZUpd2CYu9o5eONSJRrY60c8FwS9Srj2LOgIhAKIhulZjX8nyUJWBusPjG8J3XDMr1umPgvx9TKCuhGGn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"me@lukesheard.com"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.0.3","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.0.0","dependencies":{"inferno-shared":"^3.5.0","inferno-vnode-flags":"^3.5.0"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.5.0.tgz_1497396990059_0.20723767299205065","host":"s3://npm-registry-packages"}},"3.5.1":{"name":"inferno","version":"3.5.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.5.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"5d504808753c8d0546ee9994f25f9be7ade2672b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.5.1.tgz","integrity":"sha512-QmSZJkPhoo0sK1nhP5ghTBLg3Cxhdqiq5uTxRJDqPOAPF+mVCtok7dN/P2nJJD4ghp1JpFP1Eaq0AJY+EYsm3Q==","signatures":[{"sig":"MEQCIEWJ/L5bfM4RGD3Pns2+s6WzrUqbxarCJJVjm/oN0YxgAiBb16xUPEyomiZ9KH9jkntmP0yfhWY7ohBN40sDHcf8tw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.0.3","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.1.2","dependencies":{"inferno-shared":"3.5.1","inferno-vnode-flags":"3.5.1"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.5.1.tgz_1497544002852_0.16541074332781136","host":"s3://npm-registry-packages"}},"3.5.2":{"name":"inferno","version":"3.5.2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.5.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"4f51c995eec5664468813ed03fbbd7fc1379e514","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.5.2.tgz","integrity":"sha512-OoNZ6hgo22vgnL/cevRo5HfZH6c6ARNPH5FhhHrRCO5xQf/YVn9A5zGgdMRiA5iT1eGu6j6hNdfIs66qyYoBUw==","signatures":[{"sig":"MEUCIGxvUtUA6/7Haq9fGmI0Ua84zIHKC9AcyGBaAfeBGHNBAiEAmK3KU6JGgSDzUBB1CcuHOQr2Cuk/LMy06VN2t2a3S4U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.0.3","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.1.2","dependencies":{"inferno-shared":"3.5.2","inferno-vnode-flags":"3.5.2"},"inferno:main":"dist-es/index.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.5.2.tgz_1497544383133_0.8759596126619726","host":"s3://npm-registry-packages"}},"3.5.3":{"name":"inferno","version":"3.5.3","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.5.3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"01ba1a4a005e8936d21fbe33717724a7dd1c09f6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.5.3.tgz","integrity":"sha512-HsMVFTLU70TT1V36GCxkJoV6L8VhVZrqgkvZIGueACXeIqqELQDlyNK71Db+YiCMZKvgynMfNWrnN6BCgzsPxA==","signatures":[{"sig":"MEUCIAtOq0kLRYi08DiloNYJbAVo7zfy4ybzYexqJNVDHWi5AiEAzJ3GnC2K97a2/98hCXtVYVLv20Lu7fRYxdUdk0pzeqw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.0.3","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.1.2","dependencies":{"inferno-shared":"3.5.3","inferno-vnode-flags":"3.5.3"},"inferno:main":"dist/index.es.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.5.3.tgz_1497991901517_0.8200525671709329","host":"s3://npm-registry-packages"}},"3.5.4":{"name":"inferno","version":"3.5.4","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.5.4","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"40a7ea0b8e55b42cf472fe81f4d7a95e863f5252","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.5.4.tgz","integrity":"sha512-xmmhHrZ3JI+S0+Lx2/rVXbU8iRFTDEfiUmBkBQScZHfj6TzHmakPqir4V7m61goCd7kWxCP/CkMfUFz0TBjM3A==","signatures":[{"sig":"MEQCIBTIfgLHJ2WLoVSsCnyW+H8R8CPewnon8PL9wbVFrvSNAiBV2iKqGghQ5BLBlO/7ijRQguEGMm7lcxLPutW0kRu/1w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.0.3","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.1.2","dependencies":{"inferno-shared":"3.5.4","inferno-vnode-flags":"3.5.4"},"inferno:main":"dist/index.es.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.5.4.tgz_1497992473475_0.4771464152727276","host":"s3://npm-registry-packages"}},"3.6.0":{"name":"inferno","version":"3.6.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.6.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"dc932be04c0f53f9540fef690b41b99dd1132e2f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.6.0.tgz","integrity":"sha512-leUpvhcQr/a9XRVlOjdw+3fSschE5zkaIrK8wuVHYwF6jlU+s/WSZiJ+XOOuZWBp1gmY/zfaCR13eu3WRk4pqw==","signatures":[{"sig":"MEUCIQDlUB4D/6KYyhg2txg1xUcSD+oDe1smFMxJO+zoCUEwzQIgePgBtFAD8wNkt2c2iamkz8ZExBevLheaPesiryCsdeA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.0.3","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.1.2","dependencies":{"inferno-shared":"3.6.0","inferno-vnode-flags":"3.6.0"},"inferno:main":"dist/index.es.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.6.0.tgz_1498070426189_0.6856957315467298","host":"s3://npm-registry-packages"}},"3.6.1":{"name":"inferno","version":"3.6.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.6.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"4e5e73a430c49b9185d8a8a18418d87d82a665d7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.6.1.tgz","integrity":"sha512-+yDz1dz9kiZTIYyjWTpXAxGQ9T5qTByfwuTcXZzKeGkv3s29DdAPur++l3Kz3aNAMIvA0sUFLnw2HA+OMYP9QA==","signatures":[{"sig":"MEQCIAtzCen6nv6Tn08onqlbVg0ogHG/uzmXlSPzsBXwnDS1AiBloyaRRaeVS+nbnWwqSTtSzPNBLzjhvaCmLIj5iVuHGg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"me@lukesheard.com"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.0.3","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.0.0","dependencies":{"inferno-shared":"3.6.1","inferno-vnode-flags":"3.6.1"},"inferno:main":"dist/index.es.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.6.1.tgz_1498260097135_0.7177008942235261","host":"s3://npm-registry-packages"}},"4.0.0-alpha1":{"name":"inferno","version":"4.0.0-alpha1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-alpha1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"7cca337e48d388ad674842fddca0f65b7700dc25","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-alpha1.tgz","integrity":"sha512-xATiN7O2ZxDbhRnLaUCvPaEQcAYXdNZ4yQ8+J0ry1f4nxLuahfiQnCe8IEGVu21HnAqTo7YW1SfrlnMUqwEQVA==","signatures":[{"sig":"MEUCIGq4KVJQX552UiS/qwEwCn2NyxOB38Tf4LAf3s8T2nTKAiEA91QyhY61jMkLtRpmAHGhGKKnYUmefwZl3ZA0v5ZwbAI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.0.3","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.1.2","dependencies":{"inferno-shared":"4.0.0-alpha1","inferno-vnode-flags":"4.0.0-alpha1"},"inferno:main":"dist/index.es.js","_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-alpha1.tgz_1498390884385_0.5005924084689468","host":"s3://npm-registry-packages"}},"4.0.0-alpha1-alpha.d24e2d51":{"name":"inferno","version":"4.0.0-alpha1-alpha.d24e2d51","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-alpha1-alpha.d24e2d51","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"791e64b826ce7504508e95815ea8d4539cef91f8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-alpha1-alpha.d24e2d51.tgz","integrity":"sha512-EtySIq+VCbxqF7JeocDm8b0Y6IMJLlUuQcoU1NV/1rDs0hUj87MsBmTfBfF8MdZR2SMofvtArDMMC/yzVArHUQ==","signatures":[{"sig":"MEYCIQChewmouQ2M+PUEb1jjo24jwkNI1KGBEPAVfaL+3uyLtwIhAPpWY8Ku79pfEGT+G0qGJ6EW00RrCGWE04gtPuy/xx11","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.0.3","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.1.2","dependencies":{"inferno-shared":"4.0.0-alpha1-alpha.d24e2d51","inferno-vnode-flags":"4.0.0-alpha1-alpha.d24e2d51"},"inferno:main":"dist/index.es.js","_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-alpha1-alpha.d24e2d51.tgz_1498391339084_0.16719558485783637","host":"s3://npm-registry-packages"}},"3.6.3":{"name":"inferno","version":"3.6.3","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.6.3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"72fc2f0d6b847753e8a5c8b2479581b428654e73","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.6.3.tgz","integrity":"sha512-3gAl65EdJWyMDj4+JC/fgZosttXarBEPWfteJc92SSt6AIhpisMChlIYg50z1eamfAZ9jRrbxLPnWwvw+PjIdA==","signatures":[{"sig":"MEUCIQDVoi1RwTg93xyrKj6irgMf1vfedOSoz5ZAI7hfyAkgdQIgRlDOot2gJ0VeA6zwIQ6ete6XYSXKpZECPmo4scEtf6k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"72fc2f0d6b847753e8a5c8b2479581b428654e73","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"3.10.10","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.11.0","dependencies":{"inferno-shared":"3.6.3","inferno-vnode-flags":"3.6.3"},"inferno:main":"dist/index.es.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.6.3.tgz_1498665696197_0.002031093230471015","host":"s3://npm-registry-packages"}},"3.6.4":{"name":"inferno","version":"3.6.4","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.6.4","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"d36dee9c895530dca0e4a03648b2530531a7aa32","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.6.4.tgz","integrity":"sha512-HTfhC662VLuiE9yb4eQLhc1qjOPhfGFwTHMe2bji/aMzXNxI1HZSJAyZiY7RqQE7GKfQGLH7Bxr4Uy10yJ2RQw==","signatures":[{"sig":"MEQCIHSBAXrKSAxDBxoP4gB9PturR/Ldn9FJiHBG/icSDen4AiAbJ/yPu3L7HsECBpEZ3gXx8B4UiUctCzkXKzOZlxKpcQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"d36dee9c895530dca0e4a03648b2530531a7aa32","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"3.10.10","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"6.11.0","dependencies":{"inferno-shared":"3.6.4","inferno-vnode-flags":"3.6.4"},"inferno:main":"dist/index.es.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.6.4.tgz_1498899517691_0.7659352533519268","host":"s3://npm-registry-packages"}},"3.7.0":{"name":"inferno","version":"3.7.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.7.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"0bea890e21a5daca425cb958ba185cf4d06e99b9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.7.0.tgz","integrity":"sha512-kXKUweLWVJqe2pY/VgAX6UzQ9H05LxAJq/BF/sucIRe2EO7mhP0cG+Ob6OCIK+m5G5y9TjbmoIrPL+o6jbU9FQ==","signatures":[{"sig":"MEYCIQCfdb550kNO5FiFPGXKkaiLD/GQ/Q50nwk5e5QD4aG31wIhAK4cT737816zKAo+3AqZ9ACZujdfsAq3Jv5atXTYyuXT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.3.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.1.4","dependencies":{"inferno-shared":"3.7.0","inferno-vnode-flags":"3.7.0"},"inferno:main":"dist/index.es.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.7.0.tgz_1500616943305_0.5725824933033437","host":"s3://npm-registry-packages"}},"3.7.1":{"name":"inferno","version":"3.7.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.7.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"11a2d485e53c3ae21b15b06fb2cf4973830946dd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.7.1.tgz","integrity":"sha512-/yRzBC9YCctHQ9JZ36hrc4CC6rJzdr3I/lS4qh7ooB3HFoR4lBmgPD1XS4NMFuqTpmlns1ePmkfKw7pn7UfLWg==","signatures":[{"sig":"MEQCIGlVaupfrEalT+xr1u3eltwbVtCESTB4xWr2FicImjxVAiBQ1I48ohVwwg9T6PuLCbuGWVFtdIj5EDajG9w2+FFxhA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"11a2d485e53c3ae21b15b06fb2cf4973830946dd","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"4.6.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.2.1","dependencies":{"inferno-shared":"3.7.1","inferno-vnode-flags":"3.7.1"},"inferno:main":"dist/index.es.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.7.1.tgz_1501618418031_0.1440508123487234","host":"s3://npm-registry-packages"}},"3.8.0":{"name":"inferno","version":"3.8.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.8.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"12992774987cc766f9e77d6f5cf042d70db10d23","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.8.0.tgz","integrity":"sha512-6s/hAYOrKNB0a8FDNHTJlz13d9uup7fVpvfd+2XPzxE69h8WgtMl+CSTIxHkW8RuEcc+hFAqi0ScsXVkMor5pw==","signatures":[{"sig":"MEUCIF+t0y4eQJ/LQ2pt19jyS/koiwFKw1cQwu07cK/1UiSCAiEAnFORvrfhjQu0ZrrgLaYJrPUp8aNDq3Gu5sJYwMtoT/c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.3.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.4.0","dependencies":{"inferno-shared":"3.8.0","inferno-vnode-flags":"3.8.0"},"inferno:main":"dist/index.es.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.8.0.tgz_1503494818943_0.9006133149378002","host":"s3://npm-registry-packages"}},"3.8.1":{"name":"inferno","version":"3.8.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.8.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"c636e16ef6ebf9b9fbde03952134be572a6625e6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.8.1.tgz","integrity":"sha512-G333cPUIPudFsLlNlazeqMIHJ/g2UmttVdG/MhhMj01lJo8JsMHkCY79hJU2it4oxRkML7iXr0vBSGmLdqIzXw==","signatures":[{"sig":"MEUCIQCvQXvqfNdVurwAbgiBWLxlUAeb5Jc/EU6k982pis1oWwIgT+dtRInKLVChEkGurcmmUgnt8fk6/qfDmdHcSl7DP38=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.3.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.4.0","dependencies":{"inferno-shared":"3.8.1","inferno-vnode-flags":"3.8.1"},"inferno:main":"dist/index.es.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.8.1.tgz_1504003331209_0.18761123390868306","host":"s3://npm-registry-packages"}},"3.8.2":{"name":"inferno","version":"3.8.2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.8.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"284ef2af52404c0d7aa0d14782464ad11ccc635b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.8.2.tgz","integrity":"sha512-iIStADNu9l6KYNvZGI6vynaVltOKGaplTwpqtOiPB15wJz0r1LGR/c1SNkVShDARwAy6a5gFahozalQQsK37wg==","signatures":[{"sig":"MEQCICTJuu5/0BYuOvwAiDuY8F9HkQLMIXUscbrxwPNYiBuQAiA13ZttZMgJ3j20cgsDm8ncmJp/b8PQyAOFrJUu4SxBHQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.3.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.4.0","dependencies":{"inferno-shared":"3.8.2","inferno-vnode-flags":"3.8.2"},"inferno:main":"dist/index.es.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.8.2.tgz_1504114532205_0.07089093094691634","host":"s3://npm-registry-packages"}},"3.9.0-alpha.1a5cdaaa":{"name":"inferno","version":"3.9.0-alpha.1a5cdaaa","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.9.0-alpha.1a5cdaaa","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"e0aaaeae31747293d5468b8e02a7a247bb2a9794","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.9.0-alpha.1a5cdaaa.tgz","integrity":"sha512-UGgdogFKRDagtQp4GizLPnDcPgzuAkf4TGT4+27hZi8w/moMDLSRxxaZShsUAF0iznli/xG3MK9Tb5LwetZpyQ==","signatures":[{"sig":"MEUCIQC3Jtq7vtgkDbPMyQTrfUKHtUaroyU36TJWy4bR6fry+gIgIszL5us0DXS5S9DbWWEsu3e8bH37QoeTkIdvtfVNs8o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.3.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.4.0","dependencies":{"inferno-shared":"3.9.0-alpha.1a5cdaaa","inferno-vnode-flags":"3.9.0-alpha.1a5cdaaa"},"inferno:main":"dist/index.es.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.9.0-alpha.1a5cdaaa.tgz_1504276218528_0.5762648477684706","host":"s3://npm-registry-packages"}},"3.9.0":{"name":"inferno","version":"3.9.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.9.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"4e9a312e9929abb741dfe285630841b0d7e95e62","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.9.0.tgz","integrity":"sha512-cmzEvClMLORDCulVyNo05P/+p70iR7/90lv1phhy7GiGpEwE+NIyIkyy3OICShN12dj3h2w4gIWxLxVCFMZG+Q==","signatures":[{"sig":"MEYCIQCDtOyQ0F5G8g67zLrTQyR+6xIAEr93lWVTBZWcN8UEyQIhANjwVdDn/2heAfvHm1/8rdlJsTCfqbGx8BYGATtqxgQw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.4.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.4.0","dependencies":{"inferno-shared":"3.9.0","inferno-vnode-flags":"3.9.0"},"inferno:main":"dist/index.es.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.9.0.tgz_1504727090301_0.11540271923877299","host":"s3://npm-registry-packages"}},"3.10.0":{"name":"inferno","version":"3.10.0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.10.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"1ed0e6b90e3224b4b6d2a7a284106ea6f2eba52c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.10.0.tgz","integrity":"sha512-KmFdYcM3c5E3r0FiAvbFXMmFdPLtq0z+QtPElp13pakJjtPC9vq1BXRhONt9WiOa5ilYigrh+zinQf+uj04hig==","signatures":[{"sig":"MEUCIBj7JWKauK5wSUtRDPPrVbqIFpAmADLI5JDlvuVfJmvlAiEAw7jeSgrDrk56KcG45bgSKtjKBzFE/cbbXLfVfhb3qJs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.3.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.6.0","dependencies":{"inferno-shared":"3.10.0","inferno-vnode-flags":"3.10.0"},"inferno:main":"dist/index.es.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.10.0.tgz_1507806465919_0.0013632574118673801","host":"s3://npm-registry-packages"}},"3.10.1":{"name":"inferno","version":"3.10.1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@3.10.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"5d292e6b1e848ef7f09e3e1b6b2029b703b2baf2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-3.10.1.tgz","integrity":"sha512-Sm+Wi9TI9REIHsuUlWyCNVZMlk7vMRs2QFjMEfKPsj7p8be8wB+sl8T8jBU2T+2S3oKzbJdKmKNTxWeMjHdypA==","signatures":[{"sig":"MEUCIQCMoz0Z7y+4MWR5OL7e6Id5MTpFhjrB99393UB8ecukhgIgVdRedSfGZF9n8DOMaGZZoX3QXj0/MOZBvLqOFG5vMKc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.3.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.6.0","dependencies":{"inferno-shared":"3.10.1","inferno-vnode-flags":"3.10.1"},"inferno:main":"dist/index.es.js","_npmOperationalInternal":{"tmp":"tmp/inferno-3.10.1.tgz_1507889588671_0.9361858775373548","host":"s3://npm-registry-packages"}},"4.0.0-0":{"name":"inferno","version":"4.0.0-0","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"a27461146e2f9f7d7201a1699ffbef56dafbfeab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-0.tgz","integrity":"sha512-Jl9dZkpm3cJf9snWxBVbWEGh/Lu0NHnU5Gf20jJecjU4CG4nBTDWH9l71SlTxJjfRsA8oob66VrX459JAuldQA==","signatures":[{"sig":"MEUCICTEJkUuPF716A4kF0iLK7zEQazuoSWER3qWZMOTv/LsAiEA8zxpSNMqZ921QGIEjrUdxRSR1BmrC3u5ndO5Bc7ju3U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.5.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.9.1","dependencies":{"inferno-shared":"^4.0.0-0","inferno-vnode-flags":"^4.0.0-0"},"inferno:main":"dist/index.es.js","devDependencies":{"inferno-utils":"^4.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-0.tgz_1511614998403_0.714973162394017","host":"s3://npm-registry-packages"}},"4.0.0-1":{"name":"inferno","version":"4.0.0-1","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"47e5e8b19d728bc0b11473b753481c6fa945c527","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-1.tgz","integrity":"sha512-+PoFLDNVjhLRxTayXAeVqOOjjJ4r9D9IJrojPJZ6r3vpIUmDJtZv0xgGLhLY4erG5SQT5HiSpiz71IqohSRFQw==","signatures":[{"sig":"MEQCIEiuxek0igHnMtY+I8kxyekmlGapvE82Tml8oGU/+36ZAiBjzXzz3Pizfa60z9pLxjfsy3iMT3jZaY3A6tWKg2P+YA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.5.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.9.1","dependencies":{"inferno-shared":"^4.0.0-1","inferno-vnode-flags":"^4.0.0-1"},"inferno:main":"dist/index.es.js","devDependencies":{"inferno-utils":"^4.0.0-1"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-1.tgz_1511812999296_0.7347623286768794","host":"s3://npm-registry-packages"}},"4.0.0-2":{"name":"inferno","version":"4.0.0-2","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"f44461c9c4bf515316f51b14d4d9570f47915d83","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-2.tgz","integrity":"sha512-PNGnS+rxBSMQIIj5i/g8ttA+aORtxEibDvg/1Ss0djKDrcxAAqYtwSh13wbodXh2ZPjmr/L2o4aWGUvfOdCsTw==","signatures":[{"sig":"MEUCIGgD7l1EPj9+quszxY51dYWisLxp/AbtD39ItC8VdxP6AiEAsozoUwpwsngJdw6aQzhb3DVz1kVWwEWeLNf3HLyRnvw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.5.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.9.2","inferno:main":"dist/index.es.js","devDependencies":{"inferno-utils":"4.0.0-2","inferno-shared":"4.0.0-2","inferno-vnode-flags":"4.0.0-2"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-2.tgz_1512677543670_0.15345572750084102","host":"s3://npm-registry-packages"}},"4.0.0-3":{"name":"inferno","version":"4.0.0-3","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"bd8711f52d656815ef760f8c430118eecb43e998","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-3.tgz","integrity":"sha512-yAz+PnTtoPacMuF2OgxCEQ3AUxhqoXy2VXQsgkNyaihBpAE2O9YXx5FPIQ4xnJzVm4b9aISFEzEdWYfwbUfkMA==","signatures":[{"sig":"MEUCIEkf2u1I/EXxk8Q34+0vlFwLhBmsSTjrg2hRBtaYlC9/AiEA+SYnKDq/HvcVn2/z7XtNMkgxbv9o+rA749DEpHkS7sg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.5.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.9.3","inferno:main":"dist/index.es.js","devDependencies":{"inferno-utils":"^4.0.0-3","inferno-shared":"^4.0.0-3","inferno-vnode-flags":"^4.0.0-3"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-3.tgz_1513371194735_0.9586150306276977","host":"s3://npm-registry-packages"}},"4.0.0-4":{"name":"inferno","version":"4.0.0-4","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-4","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"e7b44be6da0f94d244086bc0083a52c7fc684780","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-4.tgz","integrity":"sha512-6huErBYfTj8xxeWplSaPcJxYjAtRohI7A2AZ8kw+dwZa5EWWbydmNn3CLHdSR3IhOgguOhTYMUq9MeJwKluv0A==","signatures":[{"sig":"MEQCIC3tj2EeZNL/GYd3AX48penCZN2TFs0TvazzxUCNthFCAiAb+t9gWqIqF97r7PcZgbcax9wGtoC5CX/MsThS9ChAuA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","module":"dist/index.es.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.5.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.9.3","devDependencies":{"inferno-utils":"4.0.0-4","inferno-shared":"4.0.0-4","inferno-vnode-flags":"4.0.0-4"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-4.tgz_1514312029483_0.6331406345125288","host":"s3://npm-registry-packages"}},"4.0.0-5":{"name":"inferno","version":"4.0.0-5","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-5","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"6126146ba0cb0f00eb30def53567e6091b87d2c0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-5.tgz","integrity":"sha512-sb7GKS5EVDtjffeXS+71dFUhcwA1NuLXxx9UynSgUUSHLrgXMGG38u4kjjRN7r49SmmbQPaX+MUnyco3edi4ng==","signatures":[{"sig":"MEYCIQDI0qpQDwLjbEh1s2LhufY2ZhJOJwj/5uhyB+LsUPXFfQIhAIuE91UgnqC3rgFTkPZny9UGHG+SOA0j1fvjYqRkktmy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","module":"dist/index.es.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.5.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.9.3","devDependencies":{"inferno-utils":"4.0.0-5","inferno-shared":"4.0.0-5","inferno-vnode-flags":"4.0.0-5"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-5.tgz_1514384197737_0.07065326604060829","host":"s3://npm-registry-packages"}},"4.0.0-6":{"name":"inferno","version":"4.0.0-6","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-6","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"35d0ab8c775c5eba636f573adc5e86d4820f02ea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-6.tgz","integrity":"sha512-hiRC4l085LRd2kdAtZWQBJJMFny+0AOVAfYGHI7KCJwSoO90V5HffqbVtOWNTm1MKigFIeNHBp4WHbCydwdJ3w==","signatures":[{"sig":"MEYCIQDRvbvAMO1UbuGp1dTgF8854At4WWVflcuxRIwpVmW3MQIhAKwpZo1Pw0US1+KqvGO7aNMceQOkOdQPndcuoUm1+d3C","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","module":"dist/index.es.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.9.4","devDependencies":{"inferno-utils":"4.0.0-6","inferno-shared":"4.0.0-6","inferno-vnode-flags":"4.0.0-6"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-6.tgz_1515171223797_0.044611868215724826","host":"s3://npm-registry-packages"}},"4.0.0-7":{"name":"inferno","version":"4.0.0-7","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-7","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"8bd8d2410c6a3b3c80b120bd03f665fa997617ef","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-7.tgz","integrity":"sha512-2ovpPJmYbZp9vVfsNq0m3NaALO/6shSQ3DOljJLzvfSlNutm+H5/i6VOeU7iAiNYKQEH97U7fwMSfFk1Kmbt0g==","signatures":[{"sig":"MEUCIQDb3vgmCoHSxGbuxMmOtSFnMgkZs9NTYLJAQx6s4ZjsAAIgP6KCrBMyX4uRJ3UYP43PqifMYAoGLG4YZXDUVCmoXPk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","module":"dist/index.es.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.9.4","devDependencies":{"inferno-utils":"4.0.0-7","inferno-shared":"4.0.0-7","inferno-vnode-flags":"4.0.0-7"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-7.tgz_1515311830427_0.6562709964346141","host":"s3://npm-registry-packages"}},"4.0.0-8":{"name":"inferno","version":"4.0.0-8","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-8","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"b12389bea96c3621b619d0f15656241923e00be9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-8.tgz","integrity":"sha512-8Et7v2No8l4qUYbkWKo8z1JEe7AToFaDRvAWXUFP7jiKOn24/qXPvcBXGnb70mMJKy2ghLBHYd8LM7+VbDtXQQ==","signatures":[{"sig":"MEUCIQDF9V3MxqDoVFEAjOWVxCUr0JnEiKGjKA6xSrdWEIPGOQIgO0aQTd9PP0LUlHxE/9v0CUuKY6lDAwOFHGmz/BRclyE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","module":"dist/index.es.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.9.4","devDependencies":{"inferno-utils":"4.0.0-8","inferno-shared":"4.0.0-8","inferno-vnode-flags":"4.0.0-8"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-8.tgz_1515337464567_0.5147481178864837","host":"s3://npm-registry-packages"}},"4.0.0-9":{"name":"inferno","version":"4.0.0-9","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-9","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"89bd3794859b56554c56b8aa91f88212af1c4538","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-9.tgz","integrity":"sha512-f9u+jW7rLVpR+5PonPyFMdn/JlkFNicFNGD5jgsi7GNnoSo8xNwfPiBd4sbLLGlMrP5yoeeP+xqRbYVjBjeYKA==","signatures":[{"sig":"MEUCIQDyEWxhx2ngcpeBi4q0qJAvezO2/ZTjoCQ9IcYCykm2BQIgV2joQDTZtFigSpHd70DL+VaNN9amutJCX+I3gKJrliM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","module":"dist/index.es.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.9.4","devDependencies":{"inferno-utils":"4.0.0-9","inferno-shared":"4.0.0-9","inferno-vnode-flags":"4.0.0-9"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-9.tgz_1515345271175_0.5964047010056674","host":"s3://npm-registry-packages"}},"4.0.0-10":{"name":"inferno","version":"4.0.0-10","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-10","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"f1c7416ac314d23acdd56d7fcd9f4de10c841616","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-10.tgz","integrity":"sha512-NoNgWBvzqshdQQzT8PxblJd6oJ8Rf/lcu87RcHFc8LzkyqZ0fzOklteU5N8WzCt6daQc28lKUm0fgS3UcsMJRg==","signatures":[{"sig":"MEQCIHzfGOICowMP9RtMb76kQLMQTIZQ8BUXI6PaznlZEIZ+AiBK2ELn2yT+gGlzVwvsIqrhd/PqyIXJJw0xbv/b25wA4w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","module":"dist/index.es.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.9.4","devDependencies":{"inferno-utils":"4.0.0-10","inferno-shared":"4.0.0-10","inferno-vnode-flags":"4.0.0-10"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-10.tgz_1515608919699_0.7588847796432674","host":"s3://npm-registry-packages"}},"4.0.0-11":{"name":"inferno","version":"4.0.0-11","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-11","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"4aa680b0b84d979f9e28dfaf9af83afaf64b537b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-11.tgz","integrity":"sha512-qeqMYUWk9DNvl0v6UJF/ImvShsaZKghohnBT1odIQOQ7P5FLGf0URLz25K9QxEIu3Q8ZF7eVkMmtxBPF+58BEA==","signatures":[{"sig":"MEQCIGwXtgAHZF/9k/OYJaKoPdz/CSL1+tbDHYBQzbqdhEhXAiBQs6lfcl1LetY/ifpMq0l1CwrNaBU5oB5QXQx8LoHG9g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","module":"dist/index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"8.9.4","dependencies":{"inferno-vnode-flags":"4.0.0-11"},"devDependencies":{"inferno-utils":"4.0.0-11","inferno-shared":"4.0.0-11"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-11.tgz_1515855950561_0.35151692433282733","host":"s3://npm-registry-packages"}},"4.0.0-12":{"name":"inferno","version":"4.0.0-12","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-12","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"b65b04990a5e19548211710d60380317e1993657","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-12.tgz","integrity":"sha512-TLp8O/c07eDL+/9M4sUBhlMqTrqkrTfkrXi9yIUgiHppxiSX44IWwxCJ4ltLN8DZlFN9wubAnrEKG9He7R4AdA==","signatures":[{"sig":"MEUCIQD13R2tD45dgKy+/o+Kyf0YtEalrGl1VIhnewqqg4DIiwIgVkXGEScRR6dtyECeMBd37kw5PAUGHH98bGjIIJ3eLtg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.4.0","dependencies":{"inferno-vnode-flags":"4.0.0-12"},"devDependencies":{"inferno-utils":"4.0.0-12","inferno-shared":"4.0.0-12"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-12.tgz_1515936581211_0.054906750563532114","host":"s3://npm-registry-packages"}},"4.0.0-13":{"name":"inferno","version":"4.0.0-13","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-13","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"76b234ac96ea2e63e7a6d7631ed38c880e072d0a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-13.tgz","integrity":"sha512-AuL6Mvm8lVPKYe4kJEA8fTYu28AJGveO5ErXslTFbJP/XXJr/cEMeCq7e07EqupfZvG6ABgmy9HGu/3tAAwRzw==","signatures":[{"sig":"MEQCIG2WQ+LqbX3KNMSJtiNN7USe14+SAMpg0ltEGGdLbHhtAiBm6o1rWn+kIfXEw7TFixJgb/5Xck94GcYSjTiN5VwBLA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.4.0","dependencies":{"inferno-vnode-flags":"4.0.0-13"},"devDependencies":{"inferno-utils":"4.0.0-13","inferno-shared":"4.0.0-13"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-13.tgz_1516305594199_0.36605109949596226","host":"s3://npm-registry-packages"}},"4.0.0-14":{"name":"inferno","version":"4.0.0-14","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-14","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"b917b1e53c26f3aa5b5abd5b47fe123a6762d210","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-14.tgz","integrity":"sha512-Ocftn3KWS+y6fxa6Jn4xkOipTX31hbFJxt4gVnDoxtkgvjmsg6ZBpw8mHBZKrxmPSJQFUP4r2+isNNUNxwgwtA==","signatures":[{"sig":"MEYCIQD+zB3jIGrdmc0zuqsqNyRUrWltl1GfcXQtIN1FTCFyBAIhAJ0oSVn8HdsUaQAPoHzB85CfpXeVL6Iku4m03D5Gxv1Q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.4.0","dependencies":{"inferno-vnode-flags":"4.0.0-14"},"devDependencies":{"inferno-utils":"4.0.0-14","inferno-shared":"4.0.0-14"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-14.tgz_1516561239218_0.9080817687790841","host":"s3://npm-registry-packages"}},"4.0.0-15":{"name":"inferno","version":"4.0.0-15","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-15","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"ee59ce55914b8750a3f614ff7ca4547e9fd027f0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-15.tgz","integrity":"sha512-SFi2MkHBAVVV6PiR/42+pT9GON0/IgoyjwbgLOVu3hp78+fA5OUN5TcYiwQ3m6UKvyDt07utrpsy/Pf6nAt3hg==","signatures":[{"sig":"MEUCIQCprP98PP8D3zw7KLcwhdFgNUU//9T9QTisau45Vme5cAIgJYm2hdcqT8ZbXNML6c6DAB4PQQ9/bkpJQC+WfJeG63E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.4.0","dependencies":{"inferno-vnode-flags":"^4.0.0-15"},"devDependencies":{"inferno-utils":"^4.0.0-15","inferno-shared":"^4.0.0-15"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-15.tgz_1516715464618_0.8133198656141758","host":"s3://npm-registry-packages"}},"4.0.0-16":{"name":"inferno","version":"4.0.0-16","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-16","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"1f98b323833de75dbfb7ff7b06132cd66928d183","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-16.tgz","integrity":"sha512-Zr7KjyEAqGGHuZmUrHvodbkB9FLEKhITCG9hDHUdOyM4iTAe6O4vUyWBK6oTmUSbqsUvPV3/u0znJAklube/Eg==","signatures":[{"sig":"MEUCIBvFUhQ44uDTBKxuitXhCF5POeEomBjgnoiqaWYnXvKLAiEAxn1xP00szjJwmEEnCeYQfstMMVNVGPo23mZYMeRYxk8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.4.0","dependencies":{"inferno-vnode-flags":"4.0.0-16"},"devDependencies":{"inferno-utils":"4.0.0-16","inferno-shared":"4.0.0-16"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-16.tgz_1516796679307_0.5411716965027153","host":"s3://npm-registry-packages"}},"4.0.0-17":{"name":"inferno","version":"4.0.0-17","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-17","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"b52c0e5c424da89410f5165a48ed1384622b5e20","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-17.tgz","integrity":"sha512-81QjOrk7ux7o4842I2fxEwBmtn0y9F/2Jx1TUdeoh+2luIsJ8jZi7rBWS1z/d4KvwmmlSN6wGK48fkljMzRS9A==","signatures":[{"sig":"MEUCIHMpZ7D7L5WbM8DGFYGE/ZxN+lwwAGFWDjX8YB/IA5vFAiEA7YaO6yOLAliSVk/kkIDd6wWDvjMdrWFSaj4OyGIi6Ck=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.4.0","dependencies":{"inferno-vnode-flags":"4.0.0-17"},"devDependencies":{"inferno-utils":"4.0.0-17","inferno-shared":"4.0.0-17"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-17.tgz_1517514183075_0.20088116242550313","host":"s3://npm-registry-packages"}},"4.0.0-18":{"name":"inferno","version":"4.0.0-18","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-18","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"1a8c72fb21953080ef1ad0efe734016a98392b16","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-18.tgz","integrity":"sha512-p8/ewNOfKawu6pcYG+xTYmqfcyQUrRph773APyPakxaD9CuXuaJdxoqcCp72UKHzxI3fsyiJhCUlEmbGXLHVWQ==","signatures":[{"sig":"MEYCIQDjqlJhSEwOrKNlCu4EhygpA2Kb1rZ34LqrcfQqOfqHGwIhAIgmbPFlDFEnpKw/cSE5eeOe5iKvh/idTWj28KoQeLr/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.5.0","dependencies":{"inferno-vnode-flags":"4.0.0-18"},"devDependencies":{"inferno-utils":"4.0.0-18","inferno-shared":"4.0.0-18"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-18.tgz_1517692433315_0.2850812072865665","host":"s3://npm-registry-packages"}},"4.0.0-19":{"name":"inferno","version":"4.0.0-19","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-19","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"087596819d186d4e436efcaec453c147796afab7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-19.tgz","integrity":"sha512-CmsMKccROQFR+JnWTikOQLC4tFMY+kVa7u0GnOyZ8yJkPqCSTv5K9a2HMuY4/VauKf+DtijNjxaBNS4OfhUnkw==","signatures":[{"sig":"MEQCIGCkRv+QE9zasUAfD/8meTNXIRW2MXt6p2P6D9zL6XRUAiArTGfwxyNfx5GSXex8TlVCiDvnrEJtSfmdbVb2JUImPQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.5.0","dependencies":{"inferno-vnode-flags":"4.0.0-19"},"devDependencies":{"inferno-utils":"4.0.0-19","inferno-shared":"4.0.0-19"},"_npmOperationalInternal":{"tmp":"tmp/inferno-4.0.0-19.tgz_1517863042818_0.3812353138346225","host":"s3://npm-registry-packages"}},"4.0.0-20":{"name":"inferno","version":"4.0.0-20","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-20","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"0c8b68ca27f9d2f9e391575870d881d748ea3abe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-20.tgz","fileCount":11,"integrity":"sha512-vFA/Kn/0ImE/xEMBM/5oJHX5wqsn5AsInouGfIjlDZ18jZMyEhHYOxzuaBuGukXRIoIyNU88J5kejQyMwxRISg==","signatures":[{"sig":"MEQCIDEMOt8fUzLq+kgy248pmtvXzwDqzMbL7ww+SrSLW9DMAiBWatFiAooW8la84Liw7pT2epxi1lE8zDnbaaPg6k7xXw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":420796},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.5.0","dependencies":{"inferno-vnode-flags":"4.0.0-20"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"4.0.0-20","inferno-shared":"4.0.0-20"},"_npmOperationalInternal":{"tmp":"tmp/inferno_4.0.0-20_1518043000436_0.14306849088605866","host":"s3://npm-registry-packages"}},"4.0.0-21":{"name":"inferno","version":"4.0.0-21","keywords":["babel","react","inferno","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0-21","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"8b96a39af78c86fd1d130df14b63050d3f6fca72","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0-21.tgz","fileCount":11,"integrity":"sha512-SAHc1moLDzUTlFRcHn/LErUOVJSY/d8xety+uuksgakMOxeHxPrM6dRJ1i+BkAu8tbsnnfzcrNZyBq+ME1lGjw==","signatures":[{"sig":"MEQCIAhvg7Si9/H7/PqTbCzvcEGVplJjXI4DZX8kXKk040cPAiB1Hby6ThRhDC/YXghj9DAIAYWMpJEyyGHujACfLiqu5A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":420950},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.4.0","dependencies":{"inferno-vnode-flags":"4.0.0-21"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"4.0.0-21","inferno-shared":"4.0.0-21"},"_npmOperationalInternal":{"tmp":"tmp/inferno_4.0.0-21_1518089684177_0.7783453845590684","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"inferno","version":"4.0.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"fcc5eb223342f785c7441c577a0ff8b010ac8f72","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.0.tgz","fileCount":10,"integrity":"sha512-Ot0RR3jnYL8a1RkG+AEAJr68EpT/k3MPgh6iFdBeu3EGanvxsZy9VbvtBB6X9Lc7hIGZacg210C6aRzU7qMlfw==","signatures":[{"sig":"MEQCIHVrdJHZ2f4FYZzCrUcT6tyB7U6YtUta2XsxvKq20X8mAiAV0kJM3BH15ThxdYYyR0ns92cJDcSP3tZAD/81Vk/7xA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":394052},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"postinstall":"opencollective postinstall","_nodeVersion":"9.5.0","dependencies":{"opencollective":"^1.0.3","inferno-vnode-flags":"4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"4.0.0","inferno-shared":"4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_4.0.0_1518356701074_0.019458567725078035","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"inferno","version":"4.0.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"033b74e0c24f81c0f15cf0c69487872ad87036f8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.1.tgz","fileCount":10,"integrity":"sha512-/RXtX6RqeT+AWIh/5fbfXJ+VKlsBL95xoSJuyXsM1r0yLnXHouEmO8uN0TkERjDvYa43XKnuM/LFDt/hlCgJhg==","signatures":[{"sig":"MEQCIEIU67pbUdWyVih9v4hHSTD2H+yoZNE0l+RlX7BkUpEgAiBoH2WpGPIIFDrwl4Apk1UiQUQqrj90EQXpRg/s9PRyIA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":394052},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"postinstall":"opencollective postinstall","_nodeVersion":"9.5.0","dependencies":{"opencollective":"^1.0.3","inferno-vnode-flags":"4.0.1"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"4.0.1","inferno-shared":"4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_4.0.1_1518361902271_0.8955323708571366","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"inferno","version":"4.0.2","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"122557a71724fa347af534569144c81be9a637b6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.2.tgz","fileCount":10,"integrity":"sha512-iCGDcFuKqzPB8mn3LTuA3jIUmHsYc5+tE1Feqch1fHGi6mq3HBDlLwxTyG7XCYriBqLprVZbE2B6vIaIMnK2UA==","signatures":[{"sig":"MEUCIQCKb7fqbH7JHsy0i/ERLmMD16KrudjZTYvINi9hf+hidwIgTyue+E6idhiGsyEBpdbkUDJQMo6oRZHHj/HmzbDX8iM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":394080},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.5.0","dependencies":{"opencollective":"^1.0.3","inferno-vnode-flags":"4.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"4.0.2","inferno-shared":"4.0.2"},"_npmOperationalInternal":{"tmp":"tmp/inferno_4.0.2_1518376500433_0.7044090670837222","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"inferno","version":"4.0.3","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"7fc4c5df7428a0cb90ee92a3bb169a1ddedc096a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.3.tgz","fileCount":11,"integrity":"sha512-Mp3Osmm5Qh8Sq8EPc6F+d67WpP/K6fgoftUR8yPjeG8DJwWK82AdE8iVJjajBzQrjyhmcx3HWoHBLuXmYjAuWw==","signatures":[{"sig":"MEUCIQDhj4MyAm88OHQ82Va9naupe1fjOcqQhnkvPZmtbmnuBwIgAdSWj1urtWWld9LZkkLvOni9r9zCC8XUiY4zyeRsqEU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":426854},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.5.0","dependencies":{"opencollective":"^1.0.3","inferno-vnode-flags":"4.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"4.0.3","inferno-shared":"4.0.3"},"_npmOperationalInternal":{"tmp":"tmp/inferno_4.0.3_1518555248177_0.9785692927785945","host":"s3://npm-registry-packages"}},"4.0.4":{"name":"inferno","version":"4.0.4","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.4","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"db38098bc53ef64bc2cae9334ffb491e6fca722b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.4.tgz","fileCount":11,"integrity":"sha512-AHoykJw0+0mj5jnojsO5p/gfLwSDH91+DPpM4E7QWdsEK1BiDZTHAQPfKHwXG5S9Y6/VJOAL1PNkIGfmSA3NEw==","signatures":[{"sig":"MEUCIQDfkU5tUlflpvMDBbQNChfKbnXjjVEOnu1gDr2c4WX6ygIgBGgPmo3OibhDO7RbY4On0263HYraMfTZ7lofl7HqrSI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":425924},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.5.0","dependencies":{"opencollective":"^1.0.3","inferno-vnode-flags":"4.0.4"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"4.0.4","inferno-shared":"4.0.4"},"_npmOperationalInternal":{"tmp":"tmp/inferno_4.0.4_1519064286975_0.26976296415565426","host":"s3://npm-registry-packages"}},"4.0.5":{"name":"inferno","version":"4.0.5","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.5","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"a99319e65de5867d1608c6054e886f92ac488369","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.5.tgz","fileCount":11,"integrity":"sha512-SxZhq7nDJeDlzLBCd5ChXRP9G8mSP2eROav6Vmk97sdiAkNWOtQ4jPEbC1rnQmVtzaHov+ennL/09MnbmMOLRw==","signatures":[{"sig":"MEUCIQCLwVmd1hqYlf21NgrVsoHZKEpPEGFtrXrWs48n5g2eJQIgHJ+MDEFbzhYmwk3l3hau1hKC8QXbjwg94LLb3OwJ+X8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":426685},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.6.1","dependencies":{"inferno-shared":"4.0.4","opencollective":"^1.0.3","inferno-vnode-flags":"4.0.4"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"4.0.4"},"_npmOperationalInternal":{"tmp":"tmp/inferno_4.0.5_1519764370543_0.7870169569232841","host":"s3://npm-registry-packages"}},"4.0.6":{"name":"inferno","version":"4.0.6","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.6","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"5cd23e2edc459a05579338706dc66558ed872465","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.6.tgz","fileCount":11,"integrity":"sha512-FqksVoHhTNOF/ZUmEIvHD3ULTVuoSzwIJ97XR1K070DIgJQrtM0ofBje/ORowAqwy3RisWTtaHx8gyivv780uA==","signatures":[{"sig":"MEUCIDD8HXKcaT89XxDFxjRxN2b1jUmH0CvJJ43XO1F+mdVmAiEA1S1bxxm4hTtxw/dBDNvfQ1TgzYL7xm3MduxiknK0L2U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":426685},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.6.1","dependencies":{"inferno-shared":"4.0.6","opencollective":"^1.0.3","inferno-vnode-flags":"4.0.6"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"4.0.6"},"_npmOperationalInternal":{"tmp":"tmp/inferno_4.0.6_1519764567957_0.5495717285459394","host":"s3://npm-registry-packages"}},"4.0.7":{"name":"inferno","version":"4.0.7","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.7","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"a425525a53d7758b8316017e3cecb0f2a4d0fcf9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.7.tgz","fileCount":11,"integrity":"sha512-FxC2NnDlC1OugeUfuDTjoA7XvG9BPL6Bym697JZinC7/5qjmk8X2kJnsWeupMBrdaBuuxxRD0kpgbBK8T2MkUQ==","signatures":[{"sig":"MEUCIQDYGTOB8OUodhKtWzUjO6hEOY4mAlCvzy6mYNmvCk9ibgIgGsh5W7rw0xVklgZDcMfkcLv+zjHtvvGucULA6bRLkPw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":426685},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.6.1","dependencies":{"inferno-shared":"4.0.7","opencollective":"^1.0.3","inferno-vnode-flags":"4.0.7"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"4.0.7"},"_npmOperationalInternal":{"tmp":"tmp/inferno_4.0.7_1519934453970_0.7721402561980737","host":"s3://npm-registry-packages"}},"4.0.8":{"name":"inferno","version":"4.0.8","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@4.0.8","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"0cd7b831507f99f6564411a8ba877bb1082ce8dc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-4.0.8.tgz","fileCount":11,"integrity":"sha512-c0LFEPnQeZOKOTxVnMslZln1UdaFaocAw3yt2/G0q43sdxP6DSu057xjIUDWLHDlzFHYkiQWsRQicdM1i8nz2A==","signatures":[{"sig":"MEYCIQCP+MPZtqeFb6w4TMo0Mt0cmHXHqTduybeM0Mj9jYzvjQIhAJh7rpmYTBt2j1BChHYVKMO5D8hriA+AinlLwgU8HGgf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":428820},"main":"index.js","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.7.1","dependencies":{"inferno-shared":"4.0.8","opencollective":"^1.0.3","inferno-vnode-flags":"4.0.8"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"4.0.8"},"_npmOperationalInternal":{"tmp":"tmp/inferno_4.0.8_1520271012418_0.10796152144293591","host":"s3://npm-registry-packages"}},"5.0.0-0":{"name":"inferno","version":"5.0.0-0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.0.0-0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"f0b5ea8d715e9a2258eefc1fafcdfbb6ea5eba31","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.0.0-0.tgz","fileCount":11,"integrity":"sha512-luhMfvFNRNnwIhzr049c5/wYmGwxgq5bpjP4j2K9kPWFrcgc040dWQOgFEE4r7VsbD90JweNj4CBPX4+BKgXxw==","signatures":[{"sig":"MEUCIQD5FxX4KQIRFaWKuf//GiMm8h7+ybz9GWJE4MjfT/XSJAIgb31dCtPTCk4sTf5uHbF28duTfrS2NVRoPCR2iDwHJOg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":428298},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.8.0","dependencies":{"inferno-shared":"5.0.0-0","opencollective":"^1.0.3","inferno-vnode-flags":"5.0.0-0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"5.0.0-0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.0.0-0_1521047129873_0.06409972276201126","host":"s3://npm-registry-packages"}},"5.0.0-1":{"name":"inferno","version":"5.0.0-1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.0.0-1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"d31e44d2650d27660d72e820539f3e5a0845c2da","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.0.0-1.tgz","fileCount":11,"integrity":"sha512-mSDDezvknOXNQNtk9r1pUyGvVo27eL+iuexBoD8TDS4k4SmpNLN2zTTEHEuCkQrc2AEAsmlWFjsZQruQsK11NA==","signatures":[{"sig":"MEUCIQDU5QDKYZ96PKtijrMc3xPPthHLDicmrnHQjSPK+AtCRwIgID6rUv0txtV8F5qVpzYZq55xwATeTQlgcPrG7wi2oBM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":430654},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.8.0","dependencies":{"inferno-shared":"5.0.0-1","opencollective":"^1.0.3","inferno-vnode-flags":"5.0.0-1"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"5.0.0-1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.0.0-1_1521279655555_0.5583095266912184","host":"s3://npm-registry-packages"}},"5.0.0-2":{"name":"inferno","version":"5.0.0-2","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.0.0-2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"f7a918e8945ef8c7ce51c44de27a151f8f9e2714","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.0.0-2.tgz","fileCount":11,"integrity":"sha512-19bccEAjK0Fv/3y1mm0/qna9uIc/+gFgbadDrEybjTjC7/8dyoZ70Wc/rP8LLr5DSJUzYV6h5nBv0wJw8z3EcQ==","signatures":[{"sig":"MEQCIFQlgnkHOZGn7dIZDekKKJonMZY95WDDvxXC+y7pYg3/AiBOt15yo64RjHSWGfllQBUpX8ObEXGk1j9iFpv4vKVIVQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":430676},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.8.0","dependencies":{"inferno-shared":"5.0.0-2","opencollective":"^1.0.3","inferno-vnode-flags":"5.0.0-2"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"5.0.0-2"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.0.0-2_1521286672280_0.8805970762588782","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"inferno","version":"5.0.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.0.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"41a5e0416b55dab006bd6ec5478836303d4c46c3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.0.0.tgz","fileCount":11,"integrity":"sha512-yFbflo53FmHBtU9KGhSkxjUPWiUDVqmXU+eTPsH7wvM1wLLUnZ2z0Q0WW2/DpiTRfUaGfMf8Jf9F/cop/3d01Q==","signatures":[{"sig":"MEQCIB0Bo1idaYk8edzvNW+fsJmqlgsQSZ+pXw1gcjSWTMOcAiA4C4eUHHbhwWWBNPHhqbfjJIXCXCUcaW92n0ju94tx8Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":640094},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.8.0","dependencies":{"inferno-shared":"5.0.0","opencollective":"^1.0.3","inferno-vnode-flags":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.0.0_1521305221256_0.15346392570136502","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"inferno","version":"5.0.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.0.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"dee61c256629cce3b263bb2ec7175813a702be08","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.0.1.tgz","fileCount":11,"integrity":"sha512-0NhXGcLh1tNogE5x7u/TgVjoSThzyYfIfWgw1J9DyKnRbqcSVR0dootmDTVJasLga3Wf/5Giedbf1NzoI1FtLg==","signatures":[{"sig":"MEQCIFRT1MoQ6Ct9XVwE7QyDARGIrX6G3CbCKjDo+q5hA227AiAGFvGxCthAEfpIw8YrJmifKVkpC9x2lm6B4YD7SrwJkA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":640226},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.8.0","dependencies":{"inferno-shared":"5.0.1","opencollective":"^1.0.3","inferno-vnode-flags":"5.0.1"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.0.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.0.1_1521442647556_0.8510180604411013","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"inferno","version":"5.0.2","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.0.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"d1cef3876f40b57e1ba6a58846c83df4f77ea18f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.0.2.tgz","fileCount":11,"integrity":"sha512-6htHLn9A/yOzmNhZIMKcRFMo8e67iDHo5rS4ywGtAHRtjTp1DaGzVqbSQhHrC1WhcX3ixwA40VE9z8833lypfA==","signatures":[{"sig":"MEUCIAUDBXuT40rqrCWTqRKSOu9SMQhi1lUZTuvjGfyVBviiAiEAuMBc8lMf9y5pYsPfVreolrpwmcve7p7W5M2xSIHTwRw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":640733},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.10.1","dependencies":{"inferno-shared":"5.0.2","opencollective":"^1.0.3","inferno-vnode-flags":"5.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.0.2"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.0.2_1522852341661_0.4569502457466972","host":"s3://npm-registry-packages"}},"5.0.3":{"name":"inferno","version":"5.0.3","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.0.3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"7349411364b238b3a3186b697b241c12f7d37f34","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.0.3.tgz","fileCount":11,"integrity":"sha512-c7rDL0mDAIGs2bNg7DB94a2S8p6+adYg9sSfMttZ9jKHy9TBDkRW/4iIZ1s/PJHGGosW4wBoCnup1Gpts5JOoA==","signatures":[{"sig":"MEUCIQD8/pcwxpAS4E5zYexaYNnrZq+ncjaK9eQt6czhAkhkpAIgU26yzfdKn/J02GVxY21qktO+ZMjLhoWZZoKVRJ/9CoU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":641042},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.11.1","dependencies":{"inferno-shared":"5.0.3","opencollective":"^1.0.3","inferno-vnode-flags":"5.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.0.3"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.0.3_1523286785368_0.8206771095809184","host":"s3://npm-registry-packages"}},"5.0.4":{"name":"inferno","version":"5.0.4","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.0.4","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"8b0478b120df4d07888dcfd858c5c444c4c26985","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.0.4.tgz","fileCount":11,"integrity":"sha512-mBlzT5uT8hMEaqTUxeVuorCd8pw5MsxTegcQzy19oHGXrH4h3BVYfqv8/nFfpbCtoJredwhAlj7BB6WD7c+dBQ==","signatures":[{"sig":"MEQCIDvqzsVDfp0Hbyk9DSj57zBCow+cjQNwZ5jYrj31MHaBAiBiMiSTCdxITGX0OMAbcI3AL4YSeu0BQ4eaHl/ZH0Wz3Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":640992,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa07s1CRA9TVsSAnZWagAANTMQAJobmBcPVjVlsfHRcgqs\nZjbWJEV+kbXcyXDCenBds1ppd38UB4FGtRRe310UAay7MD9k6AiuqUAFjPQ3\n8iC+hH3Y3VLd/kerkBlyeoiRRgLJIThN5pUNnqnyAGtbWYZUwcDvWPXpg5hP\nGgQkm40NcINglsd28bp0yj+cVHsSg7WlGJP2bp3raRbokHiLN4Rlw9QaAMeY\n3WlgCsRjuMmKLHt/w62EeQBZSVTX7Jv2hjfaJ/XaBwMuo3Pri3sh5r3wmb8M\nEZNeSDc7GmpSaSfgmGp2k2ZuJ4iI+P0Ih9nPkb+7HoryernZzecjMjDdl3CI\nmkLQnrMrflNywbBWAacr6M84m5OfzcuXCFgMrtaGQUDsSepw4CEQmj7v4O3p\nL5nTO3Sfb/uNbBBYaNfisHeDpFOURQRRE4VXCoKCei3pW4cwdMWIfNUnOxDT\nWiijw9I/UKjj8HB2kHitbUvwZ6A7dR5pLv6HMoaZb4Z0q1PQbuK/LE5qnrEZ\nZuHu78RtlJPNJpL3d+DR0SsJ2+5COv22PKA1G3hPVfcAst3rW9aMSTMvneS4\nZISsMSAHgU8Jx6YGPMZF3iO6VsoHfYUey/qHKVFq/58nU6pH3xZJOI9UMZ+X\neku9wXRHiTVolio8T+bj18iHWoAbnSzZUV0xjihnwuXJbzJfnLf0p2cvGQQd\nr6Ca\r\n=kKDk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"9.11.1","dependencies":{"inferno-shared":"5.0.4","opencollective":"^1.0.3","inferno-vnode-flags":"5.0.4"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.0.4"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.0.4_1523825459382_0.8599560742413532","host":"s3://npm-registry-packages"}},"5.0.5":{"name":"inferno","version":"5.0.5","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.0.5","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"61f08735ae599a65ed6346a6d18055385ce1ba8d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.0.5.tgz","fileCount":11,"integrity":"sha512-K9bk3NbJvPXJtkmxKklkbqggUdfDxckJ7r+oizKCV4c6hmXVRBUIo72lDfr+pNdDDNVLpKfHaAQMjrvSW8Pacw==","signatures":[{"sig":"MEUCIQDH7o0w6S8T/fN9pE6kY2srZNaeAjHRAlILX4gCSOBodgIgMTpE/VvqOchXrdrqiYlDEPGpi0uMnAAEWDuMDhqnm2o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":640764,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa9rriCRA9TVsSAnZWagAAVTMP+gKLZG2IdGaJATbeFIXi\nHKMmVg/NvuTtvEnMhFhyVWf3RYEot248mMtSZDFUEhgTPxBp+mRG7i5y5MFs\nj8axoDlKeg2O0cGkia4Ka6iOjI/kOf3UqN79J/vJHl2FdnIU9j3dNmVfnr9c\n0dqjRYhdDAkyWE6wwM45Nf09SKAG22u/JLOaVhf6CMP8TizI8nfq4tbMrNh9\n5a6lSFUrJM2Zb5LK0gRFzvZ0l3lakHuc7kXrwyRXBkvKEKY05aKtJWpocpgL\nt1mBoUio6pzE2JdlKTVsxIB/hXfKvs43au+Gmsm8sIpVH433IHqTniQUcM78\n0a+Fy27jpoFosklcsYUxwEla0NHWqir8z9kkpq0YYvIMGIessANObPN4CQE8\nkUuzO2XV+2F8Lg32fTqAnWnCyN4IHZuV9Rza3IMVqa5pNMCHUVV6eSCcc2xz\n6LJh1q4NZXDg6xnQYTKfEuNJsP37PRbSqlIUdp+YkY7ehMU+AKkMu1A+laop\nynIoBrI1GhjFG4R8QXTAAna+NCovS5uq8MQOAlTWnwYSiU7ooC+uz0bw7pbi\nEnVD+sZHMfAgvyyapDBzcOWzJBPlupZk2DO2dTgUz25SZtYYWf+4bxp5cguQ\nuS6TerV76Qds2LnU0o6L5voAXrRzAsu2hnUH33rmhvYOAhXKUleUyGrls5vp\ncv+/\r\n=v235\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.1.0","dependencies":{"inferno-shared":"5.0.5","opencollective":"^1.0.3","inferno-vnode-flags":"5.0.5"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.0.5"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.0.5_1526119136053_0.47338345292866846","host":"s3://npm-registry-packages"}},"5.0.6":{"name":"inferno","version":"5.0.6","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.0.6","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"12fc7f0028d6846c14af94f1c0eefc082126ca5a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.0.6.tgz","fileCount":11,"integrity":"sha512-xgTm5a57TtsWpD6LojAzxKhfnYNiPP4cprE5JnQXyHZ+cC6UNmurq+E/Ny4EurczIlRsy2iSmDEx33D4KW2G+Q==","signatures":[{"sig":"MEUCIHqA2dl1W/oF9MgMZjzB4/hL0oqMg7LGy+CzxBBfKhxtAiEAq2CKsjYT5C89HYzC3hDQLLo1X1N8CF6HBUVkSQ6v8FE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":640223,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/IahCRA9TVsSAnZWagAAcdYP/0ipNkv6beZ0G6l8srE7\nK0ftA8jczG+tjPmoutGbX2GYMQhp5j8F2x33eLo+9xWiy4qV5Nv3wG8YPCIN\nvDvsjdiyZy3DnilhffqFXO+vjbyazzLlwUkEyAF+G/WWhJ9ekREX+GqMHWXv\ng+DCpWeN2N/qRdS6xfWz9DqCWedAth/K/ikk7n9MnbJw9kWheagDTqioZ/oU\negNFOeQVeoArl5etrryCIMLiOcdsrgZRjkw4FrYXE6NeLkrrfAtNPaY/laVL\nzfrXFAXgYzIpaj2r0QTB0T1x0LvU+UrQyYAar1Nm6C/5OppMYKYw9afLvVnK\nUruFKGLmUsftJ12gx5tmlruwjs06HwnURLgFJrcs16g4K4nHWRtb8v/StP36\nwQr0JlW2W7/7kAaDN+B5Qfqx60/Ujr0UQUFDwzHjuGR1Ys4NLKkzVIOB4WPJ\nyCeAKG7OfV+HnNxEfGsvrO0P+TFWIrb/7Bar6yXd+pcNvBRDwBQmtfNZKLPw\nWFUBVdGnwT7YmnPYs5i1Y+mDbv26ySmSIGpj14VoYOweDynmp70k/JgIRJAe\ng4+FBSDp450Axzms48z+QzzV88LaBMMVB1VUxBzU2J2PzOWjCXO7a/JgazFQ\nNy9+/Tu3m6O3PIU/ET5yAs/f7Gj7cAbVHqUDxTxH+zViTfvsUCIm/ir0+Kry\nZ06Y\r\n=ub1l\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.1.0","dependencies":{"inferno-shared":"5.0.6","opencollective":"^1.0.3","inferno-vnode-flags":"5.0.6"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.0.6"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.0.6_1526498974934_0.47711364601274653","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"inferno","version":"5.1.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.1.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"51c769e6803bce9398f443599d375988f33ec6d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.1.0.tgz","fileCount":11,"integrity":"sha512-wxW1vMBsqSBNoHXP7uS41lDDfFgW021F5ysJdBloq3VGhInzTPFAF6C67Bbk5Jdkh/IgtvsEgiKGPyqIibnEyA==","signatures":[{"sig":"MEUCIQDeVV17Z1cRAqapOH4ye7mapeZTFHjpRzorMLoRRvdbsQIgPqaKo4KwFgvmOpY+a1hj+4RR9gUbnaoT4pnTy8mtr0U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":632302,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbHX5bCRA9TVsSAnZWagAAMJAQAJDo2V3K2y/7BR4aDcjE\nN1EAjjeAqInFGUhyAQY4MgQYSsiu4rFH3NPejXTcrOaSPPqoy7HLBIam4zBN\neLRIjOpuENvADlLyL9Xk+gBqI6Cf5SebNMgJUowHod9XuStzAazf1mODVrez\nZjxOAvWjDv3bLyL8biYYWJKOXaGO19B1rhxfnB/UjPplyOMfnnBG9gfZq58Y\nqbkyGGchuJSZijRT5J7BP/7C8nK4LpCFnLnVyabr0bu5wPpl7NviYHCAzjC4\nI/JqLxXqzeRLFtxl0scjvMLvCMOF7ky12SrvMsxibc3cmGpkgQ3yh99Q4D/W\nmOBDga7F9eEF/Qk2YL4V6D5BCEqs3/mZ5IHsCxTMXGCO2sn4CMAJedp8e95d\n+Vjo849my8YtUKmE0VsSeVKsg2xcmAfl8XhpRQP7XRGlkHOvhcRsAaMkIs0Y\nh0LUGPicGzL9/GVbdkbiwV/6NGUGJUI9X5N39z7PD5B/Nq2Wxj+9aBd9aqI2\nU85CnSthp0QXCGaITNERsDCTjjH9MTsvNYJY6I9vtJOLmowWEEREGOwe/VdD\nyWxEnYoFNEFVLj1PmPwMfaRlvMG5b0rZQGV+duNruV0z5Gy2yMNE7T4+Jfsk\n2GWWKXv4PILstMl3xXZE/cx3PbLDLQcpUs/pPqQPW3DuUK482K3thb5VjBEX\nREz3\r\n=+36f\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.1.0","dependencies":{"inferno-shared":"5.1.0","opencollective":"^1.0.3","inferno-vnode-flags":"5.1.0"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.1.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.1.0_1528659545057_0.8478380715932932","host":"s3://npm-registry-packages"}},"5.1.1":{"name":"inferno","version":"5.1.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.1.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"fbfe5732594c9fa719020f091fb0e4b6fcaa70ec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.1.1.tgz","fileCount":11,"integrity":"sha512-KbYwXF0cPbQMAK3VGUVQA3zCc0Gu18Q9Vej2ZbUm7kKQbl6+FMrtFTGXfpW9geYgrT8rnTUzlJNhQg+PUgMzhA==","signatures":[{"sig":"MEYCIQDnnnnO1UHd+FUNnlkBTHjH235P29qeo5I5PGuVqd0n+wIhAMk+pvDvDEbJVx5udVslT9EpfTiwDWyERwm1qZgNUaNn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":632302,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbIDHwCRA9TVsSAnZWagAAe3UP/0SLLBmKXR538YJsjY73\nWejq9hyAYe615NArise6EmtYM65tY2LRdJkTL64GhJ2FWc6mWfNX/Ov4DRiq\n4EOuA/X9YHd8UaoHNQRUvE5KHwctBqKeWBRU+jdTjowkrtNa/7Jtz+llJcuH\ndFC8TOBz5C+NGhZQKtXteYLWunHc7+hNsVbLf4SyEKINLwn7eQQ6yGHU8pR8\nZd+3r4Z4YN1noDN69TPjDswVzViTmrbzlzOchNiAHAnz7hSPpxittYCU7WKW\neU6OrC2XmUlOrMaCiSdhDpTLxZOKEIAOpb3GNonK+E/d0b7ir3UAcvYCcrb1\nIu46PHq+0m9zZHjWqs2EErR6TipKCz13nLBZpMu8hSIH7IZtCaa6C7JchKxB\nLCn2Nain9ewNap4KLWmLvdsHOLxpS5BHsP0CYcAAJzTepTOZ9pTg67ZzY/1C\nTEK3hnEg3jmHbawcnbgVyQEZtU+YY1DHphatwRSsO+BAIWP49xNeUZOMpf8E\nMtCoYvTPhVeA/9BrNpHc164d5yomGfI13gCocePlHbjrs+I7TuCPeF8y1sNP\nRU6r5FTYA76P18oBy2LmfaekYO6uvfOY7Gyepwa8+RmEHMoJmMMMtIQMR3/l\nhpFeF5nzkgFN6P9NfbIlAt2+3OfbFHz+oHqff1H4TmmpqlZ65+PCbgKEXLw8\ndo7M\r\n=1uF9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.1.0","dependencies":{"inferno-shared":"5.1.1","opencollective":"^1.0.3","inferno-vnode-flags":"5.1.1"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.1.1_1528836590729_0.543066163676069","host":"s3://npm-registry-packages"}},"5.2.0":{"name":"inferno","version":"5.2.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.2.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"62d4af029e583d31822f03531a0acbb0201f3657","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.2.0.tgz","fileCount":11,"integrity":"sha512-IF6t7CWDLuMB9EhPhe3T/rOYVnAM0DmDbx7/WbRhhEpNiKSj1mDXd8Cd+Sqf0jQQjlsM1DZbZMbGLP3xQULvrg==","signatures":[{"sig":"MEQCICKLt2El2A5RKDevERZfivfq7PyrMhD4YnxAq6KyMJ+FAiBXkdVj/Rw9ThO0vd+DJTnqNdRkcH5RfJNqb0BM/r8adQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":631788,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbMnn+CRA9TVsSAnZWagAAIFQP/23oGymzDegPgXdBXKhy\nELuPs0eAllWgKJiZ3w2YkLBn4UeLXgn1+nHwT291905RwyWCZyndIq8+MDhb\nQ56J9A+egSB/1h16fyeIN4cjcBmvzCShCaR6EmHoBx+i/fUHic8ko3LLEd49\n4n4q1gN6HOKK2nbWimPhW8Sf+5hNIBpLQeVSrkdJiVUGSTpG7cO9gB19w0zb\nyOiX2E1nMpZKcuJtTLPm39W5n1kBt5K+bQJemY2+aF8asQj5H3LHfn6lCMHX\n2bOHyFuvde3l/K0LwaDdWMFNvI+Rs80WhTZ5eFGQVbFJJi6bJX+YzOE51H8j\nQYIyqNU2kQUjDZi7ewC08Gd2UmihsaiQepO3K1wZxSOvqSfRl9qWoITnrKx3\n2P9ROEob1+U24FWv/YO6ztttq3PogUAjwCqC+gDT4SrQJN8qN5THu6az8WRj\nG7aJC0UNtSKJGnlH25Hf7t0K0oyJAgJxY3MlsZBSkZSd2Pm1uMYUCp1h2FsP\nFL8gBX3RKE+9nDIyzNuTxDXe3gL0cc3tbVrO/iaDxOXXwsndlXDdb3obJ9mP\nyla1S9t6CRu6yUIxbX96TMqPGW7Rr4Tbb2W5RN801wPV2ij5qPqgXo74+dqN\ntLE817aLcxNFzLtD3xlA11oAG5jKZFea6hWR/G7ZvLb1gtzYjNr29/BDHlr7\n1M5w\r\n=Np+M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.1.0","dependencies":{"inferno-shared":"5.2.0","opencollective":"^1.0.3","inferno-vnode-flags":"5.2.0"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.2.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.2.0_1530034686904_0.9644591598581196","host":"s3://npm-registry-packages"}},"5.3.0":{"name":"inferno","version":"5.3.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.3.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"592e0b09d4ba85bc66880b7c097a8445b43fec8f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.3.0.tgz","fileCount":11,"integrity":"sha512-JtaPXu1QyvFYzp7ObmfBuJtOMOGW3RvreMPQ0DpiOFF1Z7CsZL+r2wb7JH7oAyxQdav0kI7lJ9ULC9XXJSGacw==","signatures":[{"sig":"MEYCIQDnV2cLPIrhinbKAukh3QxESXDJH7b88hVmY3txK1/QSwIhAO5jfNkskbcw4yDn8unOHOQQkiuVEQpyMHplf+LGvnM0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":631725,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbOnBqCRA9TVsSAnZWagAAMzgQAJ0jcr6in4qSuylDunCx\nfv6c6H3g4aDuE7M09CWZU0PjnLxybU7fVMe1RR5c5QZm8xUZnTS7mGzT0akP\ndY1PFNqUP+c+CliG+2h7oiv+OHF716nqRjXrFPr4Y+7gKoUEP8vkGKibtWLR\nC7Cegyc2WaqbuG5/eAMw5vvuDs275zpXZQ9ET9Qa1JFX6Q4gsiHX7K9/Rmel\ns4G+ZhhfEx23Px8HtUYQrzRxTFXYrqjVWJfymzn52fd6T83ZnF2NPNAQ6P0C\nMGoNZF+eEMTTDK7G5Eje3D/Wrn66oIY7nRBe1yzCfm+uCJ1tnOyeKExBVTKU\nVwesdXL0AxxVaFjTQsRz5uOCG3O9BUYErwqBbVdfx+eXYxmFL17iyPKikkNp\njukd9uWnrVXEmbhjtrxZZWQJSwYDzVzvvCYsRSgtTu86Yuhl+Hw9smEFGxFH\nEifSdVsKBynt6eG9suYZ+QmVlsXN4zd5a37yRq9AlKjP0GHNs8D8ZQvskMB/\nfR+pkT94pBAa6qxcPvDgN3c8txmCHNQuJPZCADiCk7EJdamCNrLVFDwyh+AF\nmFxSSyq8xQ/DdVA1vky2iJj3RBHiJKB8exSpAdtZ+icnNJ/VXGOmUnur6qV0\nW831xjfaXhq9pvLpKPM1uTHX0JHoNVDe5XTvajyqmv3my6QLcNKatCskntc5\nqZJv\r\n=mC88\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"5.6.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.1.0","dependencies":{"inferno-shared":"5.3.0","opencollective":"^1.0.3","inferno-vnode-flags":"5.3.0"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.3.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.3.0_1530556522575_0.3674325635478526","host":"s3://npm-registry-packages"}},"5.4.0":{"name":"inferno","version":"5.4.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.4.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"e6e8e39628f3260af6046ffb56ff108da73cc596","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.4.0.tgz","fileCount":11,"integrity":"sha512-i8mvdQodjgmDcOmfcDPJO4AN0EVlXYl72u7BuNTnKN1du2+5oWD4OU6VvCAw+OtYn5Uc3m883R4BrhJXv2NFDA==","signatures":[{"sig":"MEUCIB/pA0xxhT4jGy8AdMUr2RUBRfwNmVHIjFiTl+ZNkWTvAiEAtpeIcFnnu8vS5kH8vd12VOZj8f3YiYkZajkwZfwFGCU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":631080,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJba0sACRA9TVsSAnZWagAA1v4QAJz3I2GjDxXGIe/p2S+J\nmWW9TojaJ9XqlgvqoTbvW1Uu1EjkAfK2BDR31wkGG/TedIMv2uIjnSyAigKc\nChTjORN6cfKUxiHqvOj7063JxhEm772F3LR4KARTgjj/Dhbx+DeZ8KOcA7bm\nlBd+MBl3e3AkqYW/7DvoG1sPEPXsM/iLNNiHjaBcn4yJ7ZeC0DcjDlLpvvmG\nCtW0Cuz/G3ULWrTkFhYUy0IWvm4aGL6ozrzmQuMAmiAK65NiXvnHe8ksXFYQ\nJVTnUrRYVCL0IubnrVrd5g94JxR85mVPFc4h+eQituQoWA5iXtC6sDDyWEJN\nPTOPrSoRGzHsk4Ye4yDqRAFYbiGV5kd6VqFDO3vIVVmWtM+EIgdRokzqVdpq\nMa5BeMFgM9rmMokRAtq2YuR0vsojjHDKPWM8Yrvdn0QBJYjzSVqQ3MEBeb5D\n93WoyCGvsi1lOLyHG8fLHXbIiwijoiuj1nHdVoDIfkBuAOWyYjoU+kfjjxRY\nZClZ6wyxWqoaw21mzK40gZ/78dqQqLPZfIvb8x5APhShI5GTNa5A21P6DL7G\nQnzzwBijpTDq8Aa450ZrJCr8kiikNMCZB3vJfeUzX0gZqaagSyVfFO3MsI5J\nAx21cMa6fFuJtYr519DkNUl9NXi1Oz05TWFMsRfsr9wCQYviPdYbelmOjMnP\noAU5\r\n=jzL4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.8.0","dependencies":{"inferno-shared":"5.4.0","opencollective":"^1.0.3","inferno-vnode-flags":"5.4.0"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.4.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.4.0_1533758208613_0.40572084306661704","host":"s3://npm-registry-packages"}},"5.4.1":{"name":"inferno","version":"5.4.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.4.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"ad0b26715d660edf64e461849f14edd1057cfaa2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.4.1.tgz","fileCount":11,"integrity":"sha512-tkyQ8xsg95a/0qtdMlJQStKTBVTmZff8Dkh1AMbKOSdkDA0njLMFUOYxhxJAEealOZhdE3ypupWoQWSx+yXb0w==","signatures":[{"sig":"MEUCIQCVnzmG8wYCCTwjAbskONM7D6pfs7MhWdY+RpEQUepndwIgFa8TLhnVNSKY3Myw+iPNFaN5QU4MlCQK6j5kc9yvfu8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":617264,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbe6qHCRA9TVsSAnZWagAASDsP/iI+JItqc7GeekJSph19\nzNzzpuXEEhkfjUuRiRIara/AhiXPY3L7GCChPlL2bp49xIGGp18qEMI0W9dp\nmw0769MhMjeC8dKnyvH5+kGF6R6id+BeJhbo7QrFYA2U6nrIaMdKfGcSBolG\n4EiM98r0cDGLkTf66OJ/cVd945568QsmV6IHh0+W32/rYeDTD/062tg6TD8M\naUeuXpWx7TfiujGQjEQN+TZE/aGqQmr9TwKu5mTel1q8vm+s1IncpXFGwZSi\n9hAIOjWUvVNxEeC1HsRsOhYuCCHHeZiDheAlpuyZxlz8WRgDbBs9dlglyTVN\nlioMfzVGVVUb0kEUPH6wOdwpADpAU9Ud9212YEYw3ljvn9FVOA5kdTBx3pqw\nLv6ADZYKNVwMWl89Rm44ZXi2BS86dA38WBF6Lmur8T09kPiplBySQkOD9llZ\nCq54+lps6oevGF/RjoRq4fB7oVZHdIjT7L3NdoBBn/GAYus5zeQr2g0PZJtf\nyMwiUebKq9diIIx6FiewMfJOFSf+aIzMcGLqldhwBUGayfwbO2nZDStRuf3N\nnY5DPnzdr1ATSaz4kveu/gwXq2VfsDB0FiXv544HrHwl6RfgIdAak8+2C4zD\n07lP/K8Qu/nqopOVPploPUNGShIeVyT2P00FfCMWg6VZa9WawvJziFq5rPY3\n/+pp\r\n=kMq0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.9.0","dependencies":{"inferno-shared":"5.4.1","opencollective":"^1.0.3","inferno-vnode-flags":"5.4.1"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.4.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.4.1_1534831238959_0.1993800697222432","host":"s3://npm-registry-packages"}},"5.4.2":{"name":"inferno","version":"5.4.2","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.4.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"2cc271a663a488c86ae5161a97a4a4974ccdb91e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.4.2.tgz","fileCount":11,"integrity":"sha512-1FE+xTTXMfidwWnqmam1xawCEWLRlZ3auYJ7vl1kStUv3okWJtGQR5WGeSfi4rv0+17nFrsii5RXvHGvne05SA==","signatures":[{"sig":"MEUCIQCro4Ah5ysjt5FCMZdE5VBwAgWE9W5G7aqomkYzwpYsNAIgZpYuNu8DiOet8c30GElajaxs3Kghz5UQN8uUJkVVOkA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":617388,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbfFFiCRA9TVsSAnZWagAAQxYP/jY/9wreBiwuEsjTy/gC\nOMhVMPseqxX52qiGaS4FhJCVOs2BtA4y41b16qiVaXMFSF6mxsMRvvJG0s6P\nAy6X9iKuEPwuz+JC2bi/KcJTvlPJdsI+ERQHY4TaOzmJbu3qHhsm62OAlaYE\nkqLhFBisfHIDaUCdvuRlhD6rAzouCUmcUTQ923ZkgciGPamisLog2iPvFqtT\n7A/LGmKZ1B6mB03lYVChUb1hKbrsyjxbJw59lpd0vWSBnsgNxKmvPJjJ34Ci\n92xv07rdT/6rUOCoX5H44bxeHaRMDCYqzIEUj319gNKfDAmvwQ9IN0RYS/+J\nZ5PSBj1GFaMXaui3szUBDpG+k9p0Y5kWogiHVnfJ1WhQRRUB3TD1PmEyGp5E\n3VdRmt+dHOLzUw7Xh5kqFf15+jaIRlx10PVvJJKqEH8DnmMdyKtl4Ht0/VpK\nUqeXwHcNtucMc+O0EnH7u/NnBEdU8yKtfmvQAVa1gqsHQLaYeYnq5S4SbFhB\nS6hJiHdtZBKrrzS5Mqje5eBCdFhRrrfZj13hVvWxWzWw/gVZW5IWFkSAEbkF\nv6SMrGM3ObMsy6WYBrHWe+saJnq74O34SbCE4t/hySezyKZ8BTeQIzg+93+n\nR30LpbLIerzslsuwApi2KJNzV/3ZSNOh0pN0D1qIkeeYTNglQw9rlqhZtHVq\nrxri\r\n=IqmN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.2.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.9.0","dependencies":{"inferno-shared":"5.4.2","opencollective":"^1.0.3","inferno-vnode-flags":"5.4.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.4.2"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.4.2_1534873953685_0.7536351349710795","host":"s3://npm-registry-packages"}},"5.5.0":{"name":"inferno","version":"5.5.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.5.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"737df657707121ece4434bc1101d02fcda003d59","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.5.0.tgz","fileCount":34,"integrity":"sha512-4jgN9nuRBEmq5gkonTyy91BB9K7hGv+VP822mcFRG8nLH0GJdrm+IVDj1DFh+G4YzaSz0B3Y+SZdULyF76wacw==","signatures":[{"sig":"MEQCIDTpWYJizw3SgHXeX0pPKyLGR5g/yWVzyk9+jhXD3jPHAiBD/rgAHJLNlLF8WYd0MYk1N0LX491HiqTlyyQFKXphjg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":578577,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbisOqCRA9TVsSAnZWagAAVfUQAIFKkPp3PVEptn9RoYhI\nhQUy1COHpiVf6ZLaBp8ybh96gRhG3C0G/0dkMOAu7+asUQVtuhu6TU2Ye/Xz\nsoSqp4l9WXfpkLbvd6aJQm1g4+sCico48Aq01OfZhQailhjMf2cvCO5QSbdH\nnCaadKe6Fk5+NHu6faEowlAjZx/4bTFqY2YSWmTL1ll362P33xyJ3k099/lQ\n0xoLSCfcBsbD6wLpMZeeKfAQ/ZGvJ5xlpKM1tgx+vY7w6jptC30cBoRutV0C\n8GjgQVxHMdYwEy7JOg+/FqHaMJtampP9kJd0QVQbj5z6ouYdHI6yo/qds8ox\nISvSSN7R9jnE+KX+z80JPP8zmed8kxozbFmXau9ddEbmI+gUNjWuyM6qkZYd\nUADbycu+Habkkf+xdgD36g/I2Hvfq1tJBt0Vvn/nlWZVxWiGc2k4z7NtHXYe\nTLc1UlWCCHOzcQsUBcu92xkOACN/rficeo69eUStE7XCweMWGiexJSfT/rmp\ne22BgOkDnhuYoQ4ez2xDiJK/ZwSx/MVkpkELCW7LziLKsBmWrHvAU2nfkd2Q\nQDIGuNbfBGKjSgPsPtIS7FFd9et7jPyZC7ooT9z6BZKc1itnSbVYd/oCm/7f\nZa0+B3Mad6GN8v9sTiRbY8n7XcgjDOMLH/7ix0D4PSymeyAe5DXZ/mwBCb8p\nJ8M2\r\n=DXrz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-5.5.0.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"12b01d4ba007af4dfa277f73fae4060f954b44f9","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.9.0","dependencies":{"inferno-shared":"5.5.0","opencollective":"^1.0.3","inferno-vnode-flags":"5.5.0"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.5.0_1535820713121_0.5244156047702389","host":"s3://npm-registry-packages"}},"6.0.0-alpha.0":{"name":"inferno","version":"6.0.0-alpha.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.0.0-alpha.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"ee1e9b8a4e537cca3a1ef85cbf7639ef8ec32bb4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.0.0-alpha.0.tgz","fileCount":35,"integrity":"sha512-owuOdagIz4B+r4IFCYLBLbGbDJ6STn4SfMr4dFVnIitQiZamE3/XwB7ZlWGFBeJLaQbnzLYNQ0ifgKmdv9P0nw==","signatures":[{"sig":"MEQCIFJ2coSuwFhxxnJBt8mGrBw07uQSwVCe576XIXhVK6xIAiAv9h+7KqcNd2DtU7sbYuTBkzsqrR5GBSaaQIM8M5kdhg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":588771,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjtfeCRA9TVsSAnZWagAAWgkQAJowRS9hMN7R5aeWrPsJ\nTYirOIP/ypBCpnITpAGz8sUL0Ord6Lp+idlOcXvykIwamxxgcZzPgpWYTWSu\nv32a4FUrjpb59ogaRjyWvZiaUwkdXCh8DSSxLPa+9u35b1SyWq5aeY3HsiVn\noPO1MSLZsKoArjWKa+qmu9W8eJir8dTH3tRTXkhmg6yFB83TkYMquZwgX4sI\nGZC3G7m0+upI/LxSWa6iNG3v5sxi+YJan5H7UEB7NE1IYjWCXA+4ZKCBA47L\n/kOEYH6b7O96mMJTOnPH6j8TICD4x2+uem971lhX/r98vwNlvLwON4DZyZED\nhatYjvsE8DaRTTkHrbh3Xc2XWjpS+ZiuLgTBG63PdTFkXzOXzTZW9B0XT91P\n0O3Q/IOR8/mwnDBvmbK8IFXwLcEntIigZt7yza0TxpWEhiPI0fJIlxTFAFml\neHCmyzQLrE3tdeqqJfVEYWXzFng6WgBJIs9VS5RNgHJCTgn8uzSswkpHNkLs\nTylETZlfQfPdFWN0cIue8Pfjz5dTFceOZKkH4Y/SG9uYhMfKuKiCiRUnnF+4\nHEcm4tMxrJAGUCeKhGpCMliwAu2hGjCW3ujobQgjkSG9BN1+WuGmSayi5evc\nXoGEI6jyzY1wPYn+r4F8S3KhxccE4bcDFosM7Z1jt72VVCkHSfi3tToxzttq\nKMs3\r\n=7/pg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.0.0-alpha.0.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"daef0cc20fde3d39e2dd1181f87659bea3fb52eb","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.9.0","dependencies":{"inferno-shared":"^6.0.0-alpha.0","opencollective":"^1.0.3","inferno-vnode-flags":"^6.0.0-alpha.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"^6.0.0-alpha.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.0.0-alpha.0_1536088029467_0.24400366233958515","host":"s3://npm-registry-packages"}},"5.6.0":{"name":"inferno","version":"5.6.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.6.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"2616f4f81a614b886451cfcdfcd9dac92f2cd83c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.6.0.tgz","fileCount":35,"integrity":"sha512-l+xo4vRzlVXgAdnfnaKKj28wTkKPY8Uc0uEh39E1YICbkuSsgU+AmGseNGa01+nnrXnmxfV28AohqGzMN47sjA==","signatures":[{"sig":"MEUCIQDylT5KCNlLvEpDZ8iOYqjPJJ1vVNxnPGIdPu8y5b/BugIgSDNyaJgq1VFfMowVAKMoChfi53XSzbD2BbnFQD8TgX0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":651489,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJblO8hCRA9TVsSAnZWagAAncYP/2k2dugTndKTzwi3M2vs\n1NrCcQjqkr5T3swK6T5fOgwaVIR+nBxenNA9PqCj8PmDpP4Jr3aFJgO502Gf\nUQnfV2X7G1/s0Y8erjjURaxMHEBVEuWfwE6sTVqd74GX2N6/pLP/ZWoItsMA\nDHz4iC13mIroJX+YY4aQ36OBrn3Ge2cb14i2qHwS8HSzFet5uftNdFfWXntX\nNI+5+1NO/UMg0s9wXhm6Q9nUargL4Fht9QV69wXI5HcWMSzlqLhHPJnsL6sN\n+uqdyERx5Yx0NaYPaHPZcGO0puZAe3Jhxy+W/nDocEvBOFqxL+6bT+9TCdde\nziYscIVJ0Dzm8siR+9uvtnTBpByoTDq8apz4+YRPa+srz4PmlKBBwI3Wiix8\n4e7nY31wAjiwGDwRuYKCRZyhBvpSQG+oiOz6Qsbr3KwP5oGF4Ra5W02p8C96\nLmDTzXddkOgNgULFpv8AF+kuQwosBSuo/GUcyDDxALbH/+7aOvo1KbG2gb2q\nog6CWqs5+5saG0JAA+3AOpXOjuP3vcXuiSj5hNluWk1NGPs22jUFTwmJIkis\nkGsshjtxoV1shz4APjvK+wclifgzBI9jgi3HabmosNPRd8/pb0h+g727p3gz\nXne89E9dnKvPgU8s+jUOrpOFHDObERY9pb/aPOiiFBg7iYjAmgVtyAtouuy4\n3ol7\r\n=uL5w\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-5.6.0.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"b48c014cb929352e889250632a52e34bc49ae793","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.9.0","dependencies":{"inferno-shared":"5.6.0","opencollective":"^1.0.3","inferno-vnode-flags":"5.6.0"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.6.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.6.0_1536487200373_0.5662220599995293","host":"s3://npm-registry-packages"}},"5.6.1":{"name":"inferno","version":"5.6.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.6.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"fd48043a4e9a1d861856e09494e06bdb4a1776ba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.6.1.tgz","fileCount":35,"integrity":"sha512-wbOkgg0nO7mCrxf5DYpF5K+kuqVbNZrG4DoQldjUA2IfuL2Wmb27SsH/60XBs47Cwig3TF22Ek5VYOCUxytVaQ==","signatures":[{"sig":"MEUCIQDvkPkP9JumR8gw4Ttu39VKM/QHBar19xa6M1AeqYb1qwIgQNxhZ13/FKVny2erp8LuAsfLI+rwPqUoevwIsAvYQ5o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":651489,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJblsqCCRA9TVsSAnZWagAA1bEP/R/kCYkrHaFp0oeElPRR\nuYGMzL8IYe7UFg3ZoWd41vcjMSbf3u7Zk+05xPYcO6DXbt1EEMOsuklyiSON\nlsoRdXnekwn8uXKn49SSIEUJYpdcTMDMVsBrY/YTOQ+ViZks97Lt7OZ3VMER\n6PckX0DxUbpoINOkl+yJ+szXNa3E2lwfZ5JPfgDIxIiOP9ZGd3abeBAIrz5e\nJ3w5jCeCgryuQVhnkRLeus9qhyI0p0Vv0ra1X0sl+aq7A9dtCdZv8HNG73Dj\nPCuSfAUWdQv1YxhuNvSnCOOgk2aQaFCQrDf44gzigBXekpl0hWKMZkxqN5GV\nAzk3gz+HiweCdoTxVxfSuQKgaFx9SXkJmbPu9AJE1nyg0009VKi06feSNQNA\nbKNGX0TVlDy85BMmtm3qld+Yv0a/whlQ3UBpKsOzJpuRL6SyeqqU4NczGcL1\nAEw6cE0yWP9PF0DWp2J6YXtg/6ILdBLdzqapOlNMqegrfPvm994XfjdFLSkX\nfCXfBLI3fO7TIkEaVqU0jxcb89woe0nnEepD9LUrqA1TDOQVMt+V5zCB5syv\nhBlR3f22BK1fVK1X8fSj4YCeYZEOLUWu8azFdQsMEFc63TifKtmZMigYGiFe\nYQK3TV+c977N2ubZg5JRkdxR8Y9pigt5yO1qf4N2R7g6N8e1jDtOOtVrdrH6\nE+q6\r\n=4/io\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-5.6.1.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"83ac9ffd4ebe9cd38c8a05e40bbbf3ab6b4ecae8","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.9.0","dependencies":{"inferno-shared":"5.6.1","opencollective":"^1.0.3","inferno-vnode-flags":"5.6.1"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.6.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.6.1_1536608897129_0.4526803927039218","host":"s3://npm-registry-packages"}},"6.0.0-alpha.1":{"name":"inferno","version":"6.0.0-alpha.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.0.0-alpha.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"fd6f807de8772fbefe01aa5b90e74cc1e6976a8d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.0.0-alpha.1.tgz","fileCount":36,"integrity":"sha512-R5hWrVKeHJV3eJpSAp9I3JkQM21bc/y0nKCnbezyle1G8lqtQsVqXHuK/8z0Rp3jIQqrLiaIAx+7OoccZdrZGg==","signatures":[{"sig":"MEQCIGVpiHL0K2NQKNTsIFIBIOXerJVT0UmciCLxBbb4sRl5AiA8HyTgYtraCVbMd6gcWpySVn1d0sUU1dbMVBNKQl+ujw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":663602,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmVjpCRA9TVsSAnZWagAA6DgP/3Zn6hyOGIeg8ry4/Zqh\nXP0mUh7PAiZxoXamwLZhPENfwjnvbD22zdH7QzhEoauygO5udsYoZWzm56RZ\nDvJaOcTT64ssxpqLwVg0rThyHWoA7zsxOVrBw41+uBcqYElLvs7pqbKUMFW0\nNBOzidtSb3DbVlxoIKFyuAbDqI1AQDB/YBWL25KEdkxOg5p/Dpl21QDy/W6V\nhh2reoZYiFy3R68GqAC3GLbPgArRe1C2iB0B+zeYdQcBxI8k8T/OivU9+jQR\nkCRXpbQTVBkibpGnPrtdIyH/3mcwIezt6eZ0glYcYgTwxMNTDpd4j/eYEa6W\n6U19Ewu6id+hqkg9uZ8VAMEfx+fejdfW3G026WWrXgp44w13hJdc5hqW2E84\nDb0G/GBXE6oXBw2feMkR20ddEL/p0C30JV/RL3KLUUii5MqoJzG4V8yW4+ex\ni4jVpVIOzpuJ0X+EFmikbn1qgceHlQmBWKoSdyCk1zV6jmf5J6WMaLP3HhFH\n2LkJrzwz1zMVy30wuQgKPca3yC04bkHnG+jR349NfkdUd/89DgppeZZuwKPA\naxissDIKg2DXEWOvfYT3i2inFsxtnOuAb3LPfx9P1zFl6/j7dL2fmQ7McF+F\nj3uSxltV3mfvAhMU0x2DqVTRtwOErIVRi8/o0yCFz5CVuIjw3kqD+uyLwYB3\nnuFI\r\n=ZJ85\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.0.0-alpha.1.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"49db2a53f514a5ed187c6bee6dd162a0bd173154","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.10.0","dependencies":{"inferno-shared":"^6.0.0-alpha.1","opencollective":"^1.0.3","inferno-vnode-flags":"^6.0.0-alpha.1"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"^6.0.0-alpha.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.0.0-alpha.1_1536776424775_0.5697656159510625","host":"s3://npm-registry-packages"}},"6.0.0-alpha.2":{"name":"inferno","version":"6.0.0-alpha.2","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.0.0-alpha.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"b01b80c1cc473b8c9c2f03cc65bfcdb5a694bcaf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.0.0-alpha.2.tgz","fileCount":35,"integrity":"sha512-xk5fpmjOiQg8rT8k9QzoM+h3u6icQc0r2JXVIUqVC8nc6In/AWuQ8Pf22g5zoX9o5PqXYJD1mWvZptGdo6MplA==","signatures":[{"sig":"MEQCIGHHXTs5AQkuf73O/C+/OXO/JX2uLARw5OjKM9Nsvm6GAiBdZJfvJ8woDgOIJ4TKIA7OV0XPukx3VI31jKGRoII25A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":656169,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbn/4RCRA9TVsSAnZWagAAuecP/2DPL9Wa9rusneNqT7yh\n8y0A18BBGrR8d82vE7dwi+uTqHhGelMObs8Uv5puWZ08SvjZ9YmufC7AOdaY\nJKiE3GpNA0Mn0l76K8IQNqPk1QEuAKGCabScBceeM/MG+q48rujizfh7zkAA\nKMZiLABSSUfH1MAI5toxCeAL3iGlpxbmjf3jd7kXaKFL37fRJGEKwYz/hXVQ\nwtA4FDbyEpp78v8nABm7G+IXwS9ZhQ/5/l5yfGMDTGPiL928PXMo392WG5SU\nXFOaRiSO5Orgh4MvefGjH6psq3vDZkUhQzKDOtu0q8ohFdq/PDULuNmSq+7G\nX4/TX0+5Jm/iExjmp83U11mOfR9XHxgyKYy8YL9XtkHc53f/Lr7+nBDgOMg7\ng31IfFjaoF5cvmXvr/d+z26V6vnBNaPfiUL87ecoY7R6YC8TKrKfwTpaGIOo\nHv/ushd+m0H8SvANsy2YZknHSDcKZUCF741vKEREDZBz3eVPSenLMNqWgTT7\nXOjg5604n6KBEWBbccCReiE/ub13AYAiW4T64mp6eTomyKvQyRZCM0PNrve6\n1IIZXf7c3SNU3+pIowN6LR/s9TDUX9Cye6Ov/rWvkv6OptWVdRb3dge1gmxS\n/rhnBTunCnSSDYkBjjpxBOgLnV41JXZ9NxdgsPLbUkuzbn0WY09XSAXVVAI8\nkKdh\r\n=5mwZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.0.0-alpha.2.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"c1a292c16678ce01bdc3fc9a8783e6bc9986e83f","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.10.0","dependencies":{"inferno-shared":"^6.0.0-alpha.2","opencollective":"^1.0.3","inferno-vnode-flags":"^6.0.0-alpha.2"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"^6.0.0-alpha.2"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.0.0-alpha.2_1537211920414_0.950537099736805","host":"s3://npm-registry-packages"}},"6.0.0-alpha.3":{"name":"inferno","version":"6.0.0-alpha.3","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.0.0-alpha.3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"95d626b7a2257989cb77f6e699961ab32aa5df2c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.0.0-alpha.3.tgz","fileCount":35,"integrity":"sha512-yYhDDmxUsd6BnzWSgG6wevIsUwVk9cxVfgNF8O7GPbqWwEAmPK85QDqqObqBNAN07uasLYSEe/sqO+MWc1D9/Q==","signatures":[{"sig":"MEUCIQDirvDhY4rF3WOYqXSeBbYwSr+dDD5/oL5b/08/AbIqVQIgSQVXmfa8RVdIwJtpc65UNXdlJwsxmenrCbHnq0NtGBQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":659109,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboPwFCRA9TVsSAnZWagAA/OkP/0T90Hi36iAY2hP+hOy2\nlbXzlNoyIHIE6qZ+K2SAH9WMNdOMs51C5g1saH4G87yQAVo16tcDR8jYYogF\nBr7f19fCzSPJLPf+M+x80ePPoEJiNZ4/zugfKJpzlmBzrosmOwIWOK04z+jS\nU7gBNyBdTCb+jI3my4UBCZprP8IPYYB/YNPWesHm9G8qexkzrnVV27Gn1Dxt\nmKbhiInQDI+YYJ+7J48LLET6G2W/NJYmrjNm2HJRBGSxARA7amWQis070k1U\nXKfJ75Osj/FHp9Deb9KiuqI9qFAoSh0nyPLx7JOn5scdHmbZJ4ZC3vaZb/Kf\n2dswmVb9CA6WIHQU+hkQMJEzUVguzOBziaPrpDE9KvX/MpB4/oNv7jGropRi\nOLkzSNh2yVlJF53uGy0utlmu3qV882Ew/IHv8ory7WRYWUisl1V52A17C0q0\nQevZP3BScXKYEJvUhgc4EVeS95MOVyVG1nQl6X8mWqueUwZ0llxFMeesk/7f\nN6+hD4QwnokPQLIUOwfMMZD90/Zx2uF72kYHfJ9lOiIP+RpURXPb4t3oaPds\nKoFBlRLkqKxuZ/FCwPgxIGASTJwaNV9Af/bf4oMLfpMEnk5VSqk96BSkuR3E\nk++tYFsao+LQmkYNaebd4wVnPSaeg6m7tNUOAsloKdJRr7xN9+eCmRD7A0Fq\n0kw0\r\n=qLMd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.0.0-alpha.3.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"45821495021dcf6f41785be1523e880500fa18a8","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.10.0","dependencies":{"inferno-shared":"^6.0.0-alpha.3","opencollective":"^1.0.3","inferno-vnode-flags":"^6.0.0-alpha.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"^6.0.0-alpha.3"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.0.0-alpha.3_1537276932456_0.8501628949682549","host":"s3://npm-registry-packages"}},"6.0.0-rc.0":{"name":"inferno","version":"6.0.0-rc.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.0.0-rc.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"581b807b4e3f0654664a3a424d777b0d00cf4548","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.0.0-rc.0.tgz","fileCount":34,"integrity":"sha512-oh+myRRUX0+CGmh5yOOcdxiEel2ezMyxZAi64qZdXADHjG/V5gpykR+08UxRFDt96tFQ9wlh6OLYcN8p4VrqRA==","signatures":[{"sig":"MEUCIQCLFQZoSEIbUSBg7JQjZWsMBS7zNS/4VQsoNkXZ8UGRVwIgPrUsysqWuQsu/GoLnEboyD1IG17uTteWOgKmlfSYt18=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":637240,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbr3HXCRA9TVsSAnZWagAAg3UP/2zYvH5UuE17RZTbKtGS\nh1PCuxZjLrE8V+/X5Vc3jt5gnajdrSZ1Zwe874yclc1rwunVDvD5JCAc2lna\n/qr+pUHlh0fa+LvSH9Ip3yjl0tUJTpH804OFpGP4aKU6SvUAoLaTank9XcJx\nuIoucQmZd8uRsymjSf/JTFFqvZXane1sYysP516JdjZOy7Qx4F4pybaxjctb\nGdokp9sBJRdfqOjVM8dGqNucKUnZl+RsyzLZGhSIi67WcGUqx3YEnqcOsFiY\n6zPn/B+7Suq+rptuZ8FshXc06ddEFsHQEQ2/xB/sJrFBVL+c+Oplt4GQQLdC\nPIYzo42oBcLRJNn1VpWRRA53lTJ3TCH7CV8hFhcEPLO8YIf7MbyeTvnnBtD0\nLH4T9+4UgvMWST/b5r99rKVocp7WY+ArPenpbE0SakjgUAe5kULrCDN/FsXK\nohFyKR1eVHENkqDfsSOTWAQvZYOoylDfFV/j/Kpu2k4wLV4BCg5/kuXTVDk4\nJXm8nrD1Su2xHVyCbJax2JBZ9GvXVWIPnNVThs1Kq5r+lDSVMi9SQ+hjOuEe\nAtEbbnEhr8qvGjQ59aws10h7RORNGUW19iPoQeVJlf2UvwSObyc2iXBUN0KU\nAyV/+EvfiLQwOqZ/RaDasvB9tZlLEQkAZNf0Xj5+DKABvz1kBtAgRZGkT5h0\n8G3r\r\n=JK4F\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.0.0-rc.0.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"4a82dd9b5107e9f848c0dbdda9fb5f16f9dac4ff","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.10.0","dependencies":{"inferno-shared":"^6.0.0-rc.0","opencollective":"^1.0.3","inferno-vnode-flags":"^6.0.0-rc.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"^6.0.0-rc.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.0.0-rc.0_1538224598171_0.5536353503793374","host":"s3://npm-registry-packages"}},"6.0.0-rc.1":{"name":"inferno","version":"6.0.0-rc.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.0.0-rc.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"648c473378990ac86b567629e0d929909d812b67","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.0.0-rc.1.tgz","fileCount":34,"integrity":"sha512-HSw4WDT4BYMgUUxQsUnjgsXGSxR2himdOXV68U3SNIg5VaOxZ4xXqMIum1PXCDKA2CPpRqQX5WgGM6sxjsfVUQ==","signatures":[{"sig":"MEUCIQDbxOPjQQmojtzkV0lRkCfUdnKg42QmDuYKY1P04cHpKQIgEVn/CsQh8d+gOKuKZmByLGZlEKTBv/8Io2h4aWlq8C8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":639873,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbsILTCRA9TVsSAnZWagAABZIP/2kK/Jyq7YQEOJ946f6l\nJhoPLeKQaCHuFKmdRfrfo1UYveP5l/r9TbG6OTcx83kiDOPRI6ms7GT/Fge1\nM4GlIddqZLRLtR7ef/Vteo005K1puu6LnEjd42viKIWuhPDNcEFUBTE7Hti+\n2TBAPWDDShN6L9y5vOX3qoBdV4OGtpavnIZ5aTX5dUPlisDAOfLpYFlLpW9+\nLJRgqlp3jVCvADqDaILGePiAOjdfDjkooTCQu4/ZkSXjU4JVFV87eB4z+HJO\nUbJCJ8gdNMyYO5a1WvMJpm9ELmuExgsdm7o7p4W3ORrszCoDlaYBV63VKLKH\nlByZlkwtIzVuIdxcX5xnbnsh7/jjbsgF/KB2XN04kx/hjJr625pNwVrbgd2W\nXmOeelNLmamAG1nnutGQmWMF7TIrSlF7Uct0sr0wQMXWpOQItnom3KKkE2PU\nl+9Ln/rMmUECcKo1ANb5b2dt/HjzlYzBTJFdfSXrYi931a1uBpPwp+9eWrW9\nM7iajHTq59Q3ckRm9kghWjNTu90IbtwjTgA05JJSu2IZ8AKRRMHk9EFA8av8\nSJGheGlr0sh2PMQ5cPCduCg9/BnSgJMucTEXVWEoU0cVHjCgO4Mf9YSvb/Pi\nMurrmAFoinFWC0UCHk040qI1fSIaF1/sOi/YevHHv/7s6ILxZW4gP6lQg/cN\ntxd9\r\n=Gfm8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.0.0-rc.1.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"a2f594d841e75e12428ff4f7e2e92ea0dea9cae5","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.10.0","dependencies":{"inferno-shared":"^6.0.0-rc.1","opencollective":"^1.0.3","inferno-vnode-flags":"^6.0.0-rc.1"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"^6.0.0-rc.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.0.0-rc.1_1538294483240_0.8555827361300878","host":"s3://npm-registry-packages"}},"6.0.0-rc.3":{"name":"inferno","version":"6.0.0-rc.3","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.0.0-rc.3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"f41cfa21f45c271b358ef4a66206aa22fe70eb0f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.0.0-rc.3.tgz","fileCount":34,"integrity":"sha512-bZ8ClvaGTLYi62MreZI0SYXJUB0nF+t7JwK4HqMUnFzknt4KarlyJgMr3pm3cdfMs9vsdLwcZeB4PMdjU2n5RQ==","signatures":[{"sig":"MEYCIQC1UNxu/65UfOGNAH7j90TrY9lQWYVu4F8kbzNT0/LEjQIhAIUpnSdmO9MQh/SB3eUNv+8PklLCeXsObnnizRbfwP3B","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":634965,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbul1WCRA9TVsSAnZWagAAVXwP/0TGQneZKcrw3mjaA4Jm\nLttlRW7HNicNsA3POhJm8F3QxtIyVtcbK1+9eVOd4Hmsvt9wcbZCoEUwBV2c\ncieO9UybBBMj+MHSZs5ZIniBUq/wAZoYw8vK7Qt6LV1nrgMokqseu9JKqUCE\nh7K6AadVkjOpHUKAtl/YzbwePgN9tbNQC5PiCzYXrHnPDysW+ztL52I16e42\nmbOu73rgCbHth2ptAWuLHeO3B+d0V2x2zow+vGQsHdRv+Z8HhgdXFY2y3TAE\nV5qCs+YyB3yO8pkcq/V5fbjvQseaiMcsxvz1ErBQ8Gh+2kVfg8HN4kFxXsHy\nb1YYUCzy6qDdc7lECmddTFjay2+uxyKE4RgOG5yrI4RRIQ2RMxy3fdkZ3Ih3\n7yV13dRMWxFgf4EliEfxrhyIT7tQsZt6UHjj1oWtQx+lb8MR48ZyNKaA7MpI\nhI9Y4ThBIuye+EhKOVmv9Syy2NuywkuPmDsrpiRuJKZ8GlRwEs+h4fm5I9P1\nLaawm0i3jw+b28P8szbssEJeyQu6fQePrkT1Gl8WV0DQWkLhDfV6oTyn8P0G\neEJMp8Ckqyb/aCOpyLc/F+bVmtn7Yo+PnTwpSLQyM137sQVJTpwGhFUnsATY\n8esLkYt0GkQ7YI3a3IO5i1aMkqNJ4AHPnLIxZd/gSNKFEZfzZNzbBjVekfgC\nyg/D\r\n=NZ38\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.0.0-rc.3.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"bb3196c73fabc70e18ce2742c8e70f3d8f6b6661","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.10.0","dependencies":{"inferno-shared":"^6.0.0-rc.3","opencollective":"^1.0.3","inferno-vnode-flags":"^6.0.0-rc.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"^6.0.0-rc.3"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.0.0-rc.3_1538940245778_0.8329582241080078","host":"s3://npm-registry-packages"}},"6.0.0-rc.5":{"name":"inferno","version":"6.0.0-rc.5","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.0.0-rc.5","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"cc3f5192e55fc22d099474904450fde837dfd0f0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.0.0-rc.5.tgz","fileCount":34,"integrity":"sha512-KlDH/iuMjXjZJ2fG7C6ftv77NO+WeyHfxXubj/AkSwNZ6VoX5iuHkyVim36B75BO8DB5R0g8Hl/9FKZUauovsQ==","signatures":[{"sig":"MEUCIC8TiQB2e0FLujwn8mcSym7/BY50YVm47Fhg2jkyJ6xqAiEAyqKn31/3CKipL5zhl+TcxiWnuJfl4PUGI+jiNuvAzw4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":634965,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbu9SHCRA9TVsSAnZWagAAYlgP/RlUK0MZw07ZuvWeKUBx\n+49pPy5zZxnH2UzVJlgzMBn6x3chD7uoavzoDCkrAYZlDeIOEQaBpA/hz/pa\nnFFYCWNtntjQu6MrdKZP2fCaGXZjWbrFitmNo0mYC28QVqdyDklJUsr/FotD\nreYA4RSpigsp4O/SMlM8jFw/oDgxDVqhsDRLwK7Mbv6bisiQRtNgP6VoJMNU\nDUVP/yftG4crSLHyNT2cfXj/asRRJeNVbUMe5iXkxEOfT5LaXW5ECbK5UBI1\nzn+xd2GmZCHwnt9VHErWYL1dFxYzm+F4SF+TYWAekcg+lnIi78myDh6M7Pfx\n45idECqaGjSwqIFxtB1+IhhSVDZmIeivJ0naMQuh+YHbKjN9SoL6KJ3Oqj3s\nYtSV2NoO5sF2cxAzc8R1A8x3DX2YfaKbPG/5W4E2yJNKfRpLY+d6oqXJmk+T\nnwZADhuzXW608ZsdP1Ta4NH5Vt3FqUXtB4uHGCGpDPXKhT4cJoyGzxgkZh43\n8a4J/2Ph4DjGddjzoeiZM4ZFeMAsrY5xtnBgEoazZ6mJmeO2tESTikDlsgDe\nkWpvRiUqBJi9aaZ+WFsBIMTKmpaIFA9dJ2VBGrRTl4REmggKuPbS3MWuN00F\nlKx++4WfZlDvpeFRlRPFFKgZ7Rha/q5kaelgEE/qtVZRM8o0GvdVV0i0/gjq\nESZl\r\n=uu0W\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.0.0-rc.5.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"88028331dd874c1cf9648f3e9b15b795dfad546f","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.10.0","dependencies":{"inferno-shared":"^6.0.0-rc.5","opencollective":"^1.0.3","inferno-vnode-flags":"^6.0.0-rc.5"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"^6.0.0-rc.5"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.0.0-rc.5_1539036294840_0.2943556281497255","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"inferno","version":"6.0.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.0.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"890f99b57a2d01dd8bfe5c060306730135a5ea46","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.0.0.tgz","fileCount":34,"integrity":"sha512-evQGZ47rJlQEk2XKb1uZ4sf4akJ/6hTe7VYJDSY8ROK0RhdnIwknc3oBeQ+f0sckysbCoHdjWpRWAzrBZ0OtXQ==","signatures":[{"sig":"MEUCIQDCE9UcuirdVz77JAYrNGWBGuepOwZHRantZLiK+zrNhAIgY+SFZlSg5sGwTeHyah5dFttkY65eZgFuWhH847g2REs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":645718,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbwmA0CRA9TVsSAnZWagAAEmMP/28Oysvwj90ecDhVp1Ap\nRJtZTn/fD3ihmP1C+z4eVYlg+FdvEY0Ynwc+WYT2dj9b8BgAKsiF82E3Tk9m\n6ipK1LZTyLpQFRHkkHBg2i/mIxGrb2xeczpgpNB1xfpJLmRUR9a+dJvmxw8t\niO89sjfW0ek2IrwE0L56pD0pnHy15GwqiKmKuA9v4sHCnSavO+Rlwb1iLDpx\nYgz2erArlhyxikJ15quAvCdi7m1JTFR8NaZ0rzr0gTX5lkD8nTeMzwFcJO9O\n6dPMKlfEtab9gYq9etTFr2jSmmBSe890LK1HxLhIKIZRukc3FGIT5HQXHFi8\n3DW3jHnhXlTeW02q6tqMLmtRH1xjxTJHFeU3DysF644+gxR+FbbfVyOI6gXl\neACvx072ZSQaigoTMFAKKEyjx+r7mf+qhoUrRFhaZPgBtLwu9Tczd3rwKqxQ\nAML2Hnrp5WALmo9/+gIRj64GyLv6ImzYsouY4KPDCUx+xJosUvgJKC+n9RsW\n/mpikkhCzJf9zOTBgFT3LzGgW5z5XeIaQ3uf79CmkW34jCwXzM1L7vABEHF2\noRkDGZQ2jbY8qw8QB1us0cJnOjRvr3yHDDkmHafhbGmxC7wG66yEjmBTWLHD\nBJ1UtJsa6ndL20B8VKZuWuBMpvRQ4CUUFxCnoATsfOd2ISWz7M6AJjghEUaC\nanUe\r\n=W+ce\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.0.0.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"2d2cdb16147e9b0d5cefd83ebfacbcccbde891a4","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.10.0","dependencies":{"inferno-shared":"6.0.0","opencollective":"^1.0.3","inferno-vnode-flags":"6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.0.0_1539465267578_0.03974554235620098","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"inferno","version":"6.0.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.0.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"4be94ddfe7773e6493bab549fc9cc259eb8d24c9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.0.1.tgz","fileCount":34,"integrity":"sha512-YnaJzjiuXwHB3bjf/0XA+5BqTaOUp+65iMltBfdVdNXUS9y7z2ViEa9u1jC/lopl0PCl4QVnpPDmkIb0iyvU/g==","signatures":[{"sig":"MEYCIQCEgaGtJyxsEfQB52styi1U/p9NHAg80bHsZqEgMZ2NdAIhAJ6BY3seZ8OCuTyilTv3uGnUmmYNqn53XrNDoJRFlic1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":645875,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbwxSPCRA9TVsSAnZWagAA9LQP/Rf56/z0o/TMYeeT7jmW\nkEY611/qtMA4dzXirv8Rvf85mV6bKEmbZAYwYdh86LmCw0pbC8vK8Xm7KAxs\nLAgC+udsqphJYa3nS53H0bvjbPaP/J+T2XEerIME+iMEFQut4MJ5rfloI0yy\nwEx9mTAlwT+2BeLB5V2iHX5ucjkHnWRS0svNoDs+1Q9G86H1QONR0sMtbD81\nDnb88TsDICMG5/1sYZtNoDg66JMdgqHi/5IMs/rHwVqDjgpSBNqtmN/z+u52\nXy2pTvOmaFxytFSGq0F/2wj277IRpJ8b9EFkLdyvDpP1U0imbZCCURJXfbZu\njnWc+VfF7m2Uy34mtb/uYjtXGnz7FPPXOD/F8FtOO3hQRWM7ovHvAQ4SeBFz\nt1txlHvtPdMhcAHQeajfewupGu8bBId4iMrOQKUaFNPvkQokUh9gohmmA0as\nfJeiI80tfTfBuXcmqS+S+Y6AAGlpXaVuM20DlrPQPsonLzIE9xRwWHdDkGQp\nTeCNu2Xy8x46OZH502dcpyOTKMuzn4vfsKEXPBpMCind0kovyOsa89kEhhRT\nrqmRlpGPfbG5EjxZFF/3ZlQfu8e9K+S9KbLCPJ/RUoJJP3h6zfR+DCzXPyWn\n8UZOQDT5qxUA4lg9WvkoNjFw2knwngEu9kVZ33k5yrfCDis7eP7+DPfNlUk0\nhWTS\r\n=wO8G\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.0.1.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"88bb32529f7aa53e407b35651dd5fcbdc20e6682","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.10.0","dependencies":{"inferno-shared":"6.0.1","opencollective":"^1.0.3","inferno-vnode-flags":"6.0.1"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"6.0.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.0.1_1539511438774_0.22138744360239904","host":"s3://npm-registry-packages"}},"6.0.2":{"name":"inferno","version":"6.0.2","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.0.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"6eef1846eef0b3276f5a3288834e90b379d7bd85","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.0.2.tgz","fileCount":34,"integrity":"sha512-/qUK7gp01yN+tFoC/AKu1l13zwweKxQNpmGlaP9SZ1qUeJFyNo1VM0E6k1kyUGDNYOHUS7a4cZzuc+9H0YTFWw==","signatures":[{"sig":"MEYCIQDv8y8Odf5EiSatw4AA7yyoJh+lMC+PX68A1W/i10krEwIhAKYAicI1nqC8VeJFjKxUeYnzaWo7D2NtgVq/jMom9dL7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":645085,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbxkl6CRA9TVsSAnZWagAAnX4QAKUBZmMI4jXm63VhyH+Z\nToZG2njZ2+KmWJdJmW0ObtZiRyyhspMSMqeOn8uPa8JBp+LTqjuJ5ta8Dr0a\n2riSuC5oUXySBmxkkxC0eaDzdEL8TATmhM3EwL1zsPjiKUpZrgaxG4ve+hxa\ncd/ozymV3Hf1evlvH4feMWqEPypLWjE3NXzh+FVAKf3aw27V98EEMUUeg421\nygPY9ppMe8E6GOyGCy4vIE1WFNBsKUeinpi1zEuYU3LAu1jCT/fGY9e7XvsM\nVlxkdHAeMOqqaCyn/ZYfxfIte7/WirRB22QzrZlHjjqXBmUIatPnFI4/gzpL\n41BHUZ7CGHgGls5zMqWcswKnVf1bJNypd1IcLu42519SE7zuPaq3asA/TKbq\ndFQyXdN3+uuEbSCH4mWY8YAFkWhzvJqXqeWEe81bxlncRMZYlF/JctjqeV9I\nA7ttKussvp/q4WKUgbyOLFei3y/kNj+fVLWmkPJjU8bfw/UYuN7YSrY85WR0\nwHGldFT4h3jKw7stqBYFuVN4FbN8tVZ0ro71DVr39UXu+0ulHs6DYiJ5JPpL\nKf36HMM02JsrQu7GOq4/akG6OVrBvzbKoS1kmkCrv9ppvkNJY5h6XflnLgPe\no2AZfD6H73xpueuxBOgQ5SM27dbvLOWJbgMpz9rq65Uk+mcfHTqB4HEoawst\nqWPa\r\n=RD21\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.0.2.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"ac6d9a594e6aa56e282d891c5e332688152223a2","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.10.0","dependencies":{"inferno-shared":"6.0.2","opencollective":"^1.0.3","inferno-vnode-flags":"6.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"6.0.2"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.0.2_1539721593328_0.29777225263508655","host":"s3://npm-registry-packages"}},"6.0.3":{"name":"inferno","version":"6.0.3","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.0.3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"d28da3750bed99517ec012bc8e38833062205976","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.0.3.tgz","fileCount":34,"integrity":"sha512-Ecmo6m/3Awtjp1xMU+B+XMbtHtd1UJ6sP1LXR3CA25URQDGCiLPNyWBEnWKDZzwf6mMGPYZOVxifSf41qjeInw==","signatures":[{"sig":"MEUCIQDtbUiTyV61rUONw6uYfcDq2Lx5iPOFCTjs7hhVa6sPugIgGEsXOUPBFbmwnTpvFxSvQiqo7DP6QZBLXRhG1TcdTJk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":645158,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbx6alCRA9TVsSAnZWagAAeBIQAIHjD+GKgRJ8Q7+eQqZs\nJejU+86QUubO1a3nxlvHpzCMGmSVxJZxnrXH/53AyWWy2oRovf/cXV0OJLbG\nhr0MHXHa1qRGF5Td9k+krMIntjqB6KntdiNgX8SD5Hrfk03uDznjyPStyl3O\nvTYNrVwmSOwJuGPLrDGdAora1CJ12H8UrQ38y/OiPnobT0AZNJ+qzanx04Q1\n0QRUcaKJgGywVxV9Inyc3Td2gZNC0AVn3xnaipu4SjL4yK/GM9iq44/+/Usr\nZPdZo6xUFrNcxVxhMGpK0Z6nVwWS0ElUucMuXyvX2g1LT8+wvzK+brh2kW6u\nGh668iZ1jTQ6PTLPjerog4bOJ1TrzR6wLdmmH3LzyVIyCfrgffRQwQXPhk/m\nU6OPsMkRsHxFROUP2ngy1P79YRybED5t6/Uo6ZjzSf9avNCXr//YolwZE7sM\niXbdFotfnpYIzAK/XP5TXUchUEfH3OnYAKzXln5290EEC55em8nHdKa6W3AK\nJcVittMy1ys3EiBFdCMkx17zhPP9v6eHoWM9WZxr1SahtVnyDOn6Kgy/6FeA\nAQ5JxhLD3FSJxdQ1u8cn9M0XnE5/kGPgqUFWgBGxiu1F/WUJc50U+39tXWFm\nV+V7kOcI3IKYOgIkhiemzHTmh0+HoF6FZwqRAO8JZDnH3Dzz/Y4zA00uWBgY\nQ+ft\r\n=frU/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.0.3.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"7f14266c855c4043111b7d3db14d7a42309d116c","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.10.0","dependencies":{"inferno-shared":"6.0.3","opencollective":"^1.0.3","inferno-vnode-flags":"6.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"6.0.3"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.0.3_1539810980932_0.15087145396129054","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"inferno","version":"6.1.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.1.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"1fe45d26453df7cea5462b1a92af48b26e778c57","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.1.0.tgz","fileCount":34,"integrity":"sha512-oPtpEbMT3xhsJSwzECQPU5b4TxSNyJaONI6GoihLCkgpAQmwAzhVm6by8PeOlfFOIkYsv4MnHEy97S9pMChxuw==","signatures":[{"sig":"MEUCIQD0+idQR6QhG6it1irKmUO4z4fM5mrejGKr6wPgPptIDAIgB+ZOOTxEKwtpYeIkeL0JZt2QK4ef53ehHzE2pWpGWM0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":651266,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb1e7WCRA9TVsSAnZWagAAYBEP+wfUUiP328ecTJchvb12\nmh+btCx2LSuMVDUTrjqP6SqYi1syNpRFiiExOEHU5VekjnmmtrDP8pfF1/KH\nUiUVjahIrpJcN5vtX8hDEDWaJ612acth3Ud/10FNVJYZC6R2PW51QiBge6OI\nopSfXoQ8htFc0hdPjZ8UIhCgLANIrx76hN/YvqM3TTJ6bhnr8vClJtf2qdsw\nhe9wfGjvrOeu3DUFO9bFNnUDSWDcL+TIRjkXaaV9kSqUkOfZyCwcqPn+jhKn\nuPSHVv0AnYg39BuFXtKJUkx56+MbDiPS5WUs1/gUC0E4AhZGJG59upexsD+y\n1zeucrP1873J5U3/N5iKq/2K1B4Jx+yVOV+3oOVmmvIqi+EN7zEcV9ip31aF\nSom0c/YR55yMYYTxs/MXhTLMFiuG6X9IFIa/MsSItF8go/GSxHWQnvJ15bs3\nb99LrwoLUAdUl39v6TrMp3exCgGotHQbyEH8Fe+RMtf9Q706ied9QZkT/QXa\nnP1oQgQn7gxoKr96oOzo+Mg3Wh7i/5M8dKR4SPb1bdT6rYFCdfweNgjctfpf\nCFS91PIvn23u/DWofYwZGSXrqpVOBp5bkrcGCXwe3GUBOPxRbEXMtthKF1vu\n7+gGL5h1mDnfo5GROso1MhtsGhfDRluCrbd2qt/dZcZRnmet10fODpbxnNJz\nJK+I\r\n=txnf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.1.0.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"7b090826de32ad0b87d4e9a57bd539b457435c6d","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.10.0","dependencies":{"inferno-shared":"6.1.0","opencollective":"^1.0.3","inferno-vnode-flags":"6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"6.1.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.1.0_1540746965477_0.24554275629590072","host":"s3://npm-registry-packages"}},"6.1.1":{"name":"inferno","version":"6.1.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.1.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"922364058d7f07e727dc5610892b1fb54fe96d7b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.1.1.tgz","fileCount":34,"integrity":"sha512-Aceq8z5+NSezU8Lq/EOfgI+hMTpUirx+w00hSkxvPy/eoAhQVuFA1qvenlUq5thOL9akRacD6yVhbyvndC95Wg==","signatures":[{"sig":"MEUCIEV32z4jnS4LNAL3f6CkDFNAcivL4BEzlyXEU1X+fF2GAiEA0GinJ1sbeQsLRLB2PPTIW4fMuvKyo2izjDwNvohnpBI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":651260,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb10mTCRA9TVsSAnZWagAAUjUQAIYXHmI52MvbnbTfvGtc\nlGJT+RqyYH7ZjZeW3W7X2/U+Oq9TcJvR8xy8K46xiU/gSIDjgM4Cqs+jtx8u\nFe0R6MJHjfjrP+7b4USeeM0axOlXssk+z5NqakrA1hNseXIyYJi4NYpxtRI0\nzy+t12nSjQBAOmloLH3WmuFJ7g394wX9tvRlFEW4UsOxOBOvPdKO2XmledQv\naYxSdtnsOxN7E7qNsOXU4/R75vHTwyx/f2Im22OOmhm+a0OhelhR1GJgw48A\nyLALbuLRFHscJSPTFS2VJsLcQGZin8RuiwqqKcnB23HwDytxbOxlMGmd5uGN\n+Qp1196iAZKHj800DSZswdH9bPR5HbULhtDpIqd1ys/JLcUtNwGn5h9lHI63\nnoPR03otkWU8nITeyO5JyahjSbQ3Mz/nW202bNpIP3iEicZRCL9/E8BtZJm3\n9yK+VfhSOCv0SMwwLRPSPQQ86ybe7ZSN1548P+f+ns+8GzmOwZntys1Uhm+O\n+MrhIfTyOZRYYMDjocWLeppJs1i9nV5BHI1Flhm3clQyXnImoCtg1BH+AATM\nnIJ3Fgizf+CVp2sgIiyca9WPnyax1fSPv57ib6s0daa1bySeQBanysxFqNkp\nuUyG25lOCGt/n6FrYgPbdqFzgS35+ddJ9mntt2aGr5dyY2JE+s/4G+laipH0\nILIC\r\n=+ADa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.1.1.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"57cc986bd17f8886b88e0e79a4cf96a3f593889c","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.10.0","dependencies":{"inferno-shared":"6.1.1","opencollective":"^1.0.3","inferno-vnode-flags":"6.1.1"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"6.1.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.1.1_1540835730673_0.5472685526818073","host":"s3://npm-registry-packages"}},"6.1.2":{"name":"inferno","version":"6.1.2","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.1.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"35716a162106a4c931de3174d17a1b4fa71cbb79","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.1.2.tgz","fileCount":35,"integrity":"sha512-rAZNpjI2T+JDkEiRGFw5zKf7op1JgJEgo5TODZFmfljnG59qraI7MgDPmHirT3rviD/V1HKwrW2c2kqWsyloOg==","signatures":[{"sig":"MEUCIQCjIwuLcEKtOyPEBDjx5rXLDzEayKalmEUkuykS5XU6ygIgX4XkE7Xef9irIYpF4y8rhxZKAJU+HWXTdzCPQs1rVi8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":652294,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb21+xCRA9TVsSAnZWagAA+wIP/AtSOzch8geQ/HZlF9ob\nJ2qaiCZklJ2cJnxR1yqMbmzCbzm6xWKvc/RXn5kW5bqy5RCeI5EWnCR61q47\nzobOT/+XHoECnTUo1rzQiDHLzpnscxnf5mK4UCEDaYJCDIJWjnZa6yISlaHq\n89z1qj939aJcZz5i4TuUBdin10BZ3semxU/RiXMS3RfVMqze25j7vNu7sOTp\nPpWytohZvcvI13OZHKb2Lfjvb+E73beCD3M3cEVPksyq3nSoKt0z4bVW88Os\nBK02z0j33HsAt22E1GKZuQsigOsjCI0DFX8Ues2u3Fz0W/mt3fdOyxpAmjsd\nOIMxl2M2fHNmhA1zMMYy5ugiah9Scy6ru3MWsgvXgwa1T6R2AzggUnOdJ1yr\nVIAiciyITqgjzmH9d/aYo9lSibj98DEfr/1gObh0lT8ZLODfMYvEXcX0F9Cf\nXdR3ugV+bkYs24csgNsCpIneG09zSBwasL+++RnozXqN8tjhjNhVnWLsMAkl\n9d3FBTietBwV8CWqw4/jaeEVoPVTtBY3imXIRkYiov2RHYbqpDVH+jRGB0PB\nIvlYerAVBMCVPqXycWe/1nMM5Nt0TdasaRbK7Vce0rFob9pHbRYisciBtiV/\nIclX91kBvnVLjUvCSrV1QxeATBuaknU22Fg4jemo68CcXmh25R7xreUZB+J4\nckAc\r\n=nqgv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.1.2.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"d17800acafb1be111a6549f9bb1dd438045024f3","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.10.0","dependencies":{"inferno-shared":"6.1.2","opencollective":"^1.0.3","inferno-vnode-flags":"6.1.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"6.1.2"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.1.2_1541103536342_0.7237146094315154","host":"s3://npm-registry-packages"}},"6.1.3":{"name":"inferno","version":"6.1.3","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.1.3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"2cac0ea4d3c2344664926d7c510f9937342653bd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.1.3.tgz","fileCount":35,"integrity":"sha512-4URMfSfWcIizRIn2VSQvg+XFHvzg5psyV1/mB/uDTZ76S5jha7z6D+I+vwrn4UuVplwb8Z4ct5FQvFwSK6qfNw==","signatures":[{"sig":"MEQCID20mVIiyZ7gU10wIRKz51J4RaWenGbIV+aGud6+Gm6GAiBF6/EqJdmUElzSWKxtMfrhqCPIEB+CVMYuJVVPShxhJg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":652890,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb24EsCRA9TVsSAnZWagAA+CIP/3/Q7O0kzqUX5N+mXr6H\nJuMPNAq3/BsCcNFOjp1CJ7y6O4O0ppq6Nu6/n+DzLQS1A0yZ19v0a6auLi5X\npiQmfXMnqN8IPr2XMrPK63XcJQ+hmQ4GHWTzBmDuIj/s7yQ+eK7rUF0Lbwpe\nWEBT9cMizcs0flk8cOxAPWNQQlG1kWqZJVQ5SE6WCr5NG4BlLVE3zxmiOReD\nkM+m7voucin9nU5gpv3aJNWdHAz7BoMLZ+Mb+GFMMTJFlX+g9mwyu9+GLE9U\nvFTTjlNu3cxpQH+HUMMERz9OCNAxrHV3vhLx5vySbmW1QxANtvUTtvXsrSWD\nGQYDjhW3oyjMjWXeUA+PyycvIibxXW46IHmS606jMeDhlzy/ud80RJHxfB9V\n+XpeskpGpqilXataKFOEFgoKbXzNfzy/FPCDAnqU8008Mhd50zQfRIGk792E\nV/DTwEAuO7nlgs1lwYFGmkiQdfGLF+/bhzYnEpiFNiuVu4a/ZrzDfn4mmBYQ\nw1DX+ZyzJ7vi7Oj1xEui9JUSnPeG/jdbgly1rs0EoHnNTUKlUUNTYY/AQKAR\nu4B8Xf0JoqG/i1z0vuxpMrYYhYNBp8cXLfR57A+PeTHLxSavVbD+knnucxl0\neqV6JRw/AJd5xVU6ZuaWOWtBzhgZSnfVzhVoRjlzFCHaHvRuTafcAQZhBTQA\noOV8\r\n=RU6B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.1.3.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"92fa811762998568c65f8806d69d93bb96651107","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.10.0","dependencies":{"inferno-shared":"6.1.3","opencollective":"^1.0.3","inferno-vnode-flags":"6.1.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"6.1.3"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.1.3_1541112107782_0.4648668178746733","host":"s3://npm-registry-packages"}},"6.1.4":{"name":"inferno","version":"6.1.4","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.1.4","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"93de72b870b34bb07a69482d3cf29a76fcd2435d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.1.4.tgz","fileCount":35,"integrity":"sha512-vIieudH4y4vT/iatkbv/6HdKElQpZI00aIVsLTU04tJpmGYzmo3BUWSMuzPMaEPeKAQ4Le2UQuISkLM1Kvq8dQ==","signatures":[{"sig":"MEYCIQDvbYdB4nFFYg0kzfVIrnVIphpGRWo8spdBzGRMcx31WgIhALI3Wl9BdkWRhd3XOJunASxLoXX45MXJZpcnfnpxNG7S","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":653747,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3ee4CRA9TVsSAnZWagAAgbcP/AzOI07FEuuORgmKtUyo\nc3o/94h3M/IyZxrqaRJZYSAk2R4DjDex7JdoHobQio1xgEbg06vd6R6XMiha\nkq2RsuNA4ptcGf4rg9mXStBKzg91Qi3X09dNtzeI61A5iqUiz51mwJxb8TxF\nFYnyyMikRjyFAA9vu1w04tLELWEI8AIVODH+F+bLt0dipfqja8xn8uiyassS\n9p+Buixewz3Khsc7JdKU36wuflRF1B+e/kkEs2bZob/H3k0Sr1O8/GIsZoyf\nJ9m+UYP+Ci7fmh2Jue1YJrtfuSK1NY+zSHuMp3YYkcUqcFugf+lSPQYzWmsg\nZhsIM7yM2olZCPRVzPF/l6L5eM8bUYfjTTt+2QRDTV3hT0+lhgg1faYJ9/nP\nd9go4QAZ0Ec4dQPpFFLTVDYCcxBYeh1ugS/AjYeMsSQZ4pzNH6/dT9RTZOiR\nRQ0v6RRjp9nMhFnv82BBXdPG/8UY0Rak7iBwjjN/xUL/oesh0pAWveUM3Cma\nRyVUaj36zMoMWGf7q/DwE3ynZ5YVgL7k2e6T7uaF1mdn6gEtg/4qnEf4ppct\nXHofCedOUDl0c1J+LK/qIiHdJsvnRhCm6/OGrsqLtArMHzGbj5ab9AwRMv2f\nJn5ZugStxPsXN5d30YQ+ZLMBVtfV6w8IymSN6Vz8CJGM/wvWX/dapEYaZuPR\nMoPe\r\n=M+Ke\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.1.4.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"85a8b1161b0e8b0e5ae779fdddf1163fdb13aa1f","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.1.0","dependencies":{"inferno-shared":"6.1.4","opencollective":"^1.0.3","inferno-vnode-flags":"6.1.4"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"6.1.4"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.1.4_1541269431773_0.24265068860669503","host":"s3://npm-registry-packages"}},"6.1.5":{"name":"inferno","version":"6.1.5","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.1.5","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"4d29facb71306649b857e4007bfa3e3333d0ac50","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.1.5.tgz","fileCount":35,"integrity":"sha512-LOaFlOgEPZEyiR169Q627FlZanyG4hD2XfcCtfPJtyIbSYdJNEPwS6nBHQWYb2xWhHRn7AAOz5zsb1wxaaOxvw==","signatures":[{"sig":"MEUCIBzXt1Ve59vVZ31PnOUCeK1QagpaUkAlSj4rzOpLcIvZAiEAlTJ1mlFR7uUx3fOlWlnaoObj241Y1NuGGSOpXPZaxsA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":651719,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4u2dCRA9TVsSAnZWagAAALMP/jqs2oi6EGmgacPl7zRT\nFzV+uY9O0caoC60e5bQ1SBrA8+z4vqlakkSUeI5Jwb3rSBwvZ2qBVzFbejF9\na4RKrcrPFwz69ZvbnOJ0P8s2qHiUFQZoGs6XvRwcBBZdPy32r8wS6PASyqIs\nHri7a7TGla42YD9dnM+AwV6Qtoy1ceGwPHzPl6wRKln1q6SjMh8g+vTQ9cDX\n1tDnte492fmFcZn7UYyt3yM4a1SDeGclAuYcOFXrIjg48C7rjIjQHi2epIJ+\nfmE8ZF7CGE+g8yZcN6o8U3BmT3uqowk8uxTdvgs8oOV92vaR6zntig467tG3\naNOQ2NLDfzUVrRRgI7eLoSgzyN+tNyCqwx0uIq47L32z7/loTfTNF9gbakkf\nMU+M+bHzOWu5BJcxZJOGxAFjIcSWz7GodV8PYeMcu08BfMfUSX55r2bBpRZK\n2vqJMpWAyVUxpNSl5MhDh6MAI0+Ljq/5LV0NZxmHezsXOMtN4XPAsJRAIxB2\nrXsthLA9SJl8j4a1lwVHGwRVUxeIgAR55Uql8UHTtfGnPmjHR9/m471aaxHP\nW/L+72wMMytIZhXHPQKBbn8KvHLOf4iFy3LQOuTro33ZdV8q+5rA/nsvoVwr\nXoRdMHz1GvG5Ai4Z282KaQ+6jDzV3pXe+Ijab0+waz1WG30KXh6c1T2i6N5R\n248Z\r\n=RftE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.1.5.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"650414959adea46d8c96ecd50a02156fac3d3b26","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.12.0","dependencies":{"inferno-shared":"6.1.5","opencollective":"^1.0.3","inferno-vnode-flags":"6.1.5"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"6.1.5"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.1.5_1541598620370_0.26283486322580507","host":"s3://npm-registry-packages"}},"6.2.0":{"name":"inferno","version":"6.2.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.2.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"5faba573488dbf4589b44e8186c7f2ea15bf6704","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.2.0.tgz","fileCount":35,"integrity":"sha512-cgs4cZV2aX1sZFvQAFZKistPwmKceT9myheT9omXdHRxvLC0ja9thGb3BEcFgVNcZRETNscOdc2NBGvQ9gQU7w==","signatures":[{"sig":"MEQCIGOIF/APVqq5+WUO5e9/RkOOusAZO6d5HN6UpL1r+z/6AiAHqZBJC6zg9DWxEgDu/AsprQE2VS3VxRL4gOlN8OXwhA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":652908,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb6CFUCRA9TVsSAnZWagAAulYQAJLoPFph+AcdFpi0LrV2\n3urCmUo4qPKUZ0iRmJhrXFIZaPmJb7TR8jZ2A0g1TypY8Hgf4y0/1bXDyCRz\nJ6Poc9pBYvYBitXA//Njb+uJlmqb29O1zE3TTmSXuwx+EOyU/iIrX9kc2RJj\nmlaVvKR87nC1/ouq4JjfyIMkwLzZopcuz8zvtcSqF7eE3fOuQJ9LLcxvHt2S\nNefIv3mAf30aQU89K9ObLO+weROQH3wVGrW6K3aj7kcHwrRfwMt2n85MWxTI\n8nFFPf6D+ymn73jAtMHwFfAF4N45Droz54in+ltda1fOjDTHBhR/NNk3FQ21\nOgwe0myuyEqu1IJaLxQzbC6UX6ghMcFHfMSucCMkKLLRL9Gir/l0EoI0liTR\ny/Jafk7fSCgOSpKI2Zuekt3vZD1gBDuw9AwnI3ICy6orw3LQhCbum73ipDCZ\nCobrATYHAuje4R/XsO4xHlc/B2xysu7l/vRQO1lZGkDy1MX40+dkImrhUhPG\na0PlYPtTh6ATPOFpleJEo2UfbOQiHbZSeFm/8vYG29tpefBZh6bVKaIB3+HM\nFk2i/3IUkwCt3YzGl/P8RxpVY704tOIpv2qkL6tWmHQu3foPlTZ9c+cfHVum\nr67zhj0DSi3N2R0mCGW1vo/wJ8YNsi4aguxnbfP//YQj+ZtTlZsjOjEQNQj7\noiRc\r\n=x72t\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.2.0.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"fca8d3dd1492ce450c654a3d8939b2371274249d","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.1.0","dependencies":{"inferno-shared":"6.2.0","opencollective":"^1.0.3","inferno-vnode-flags":"6.2.0"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"6.2.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.2.0_1541939539442_0.6088106776163182","host":"s3://npm-registry-packages"}},"6.2.1":{"name":"inferno","version":"6.2.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.2.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"d3b7e7bc448df9062aaa6e1ff928d9605e191d21","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.2.1.tgz","fileCount":35,"integrity":"sha512-6zeVMAPnLIGnZFsa7g/XDk8VRk9mjKT8tEPBoopFjA+gxyJ6OQwH2Cm08orrKNTjKv4JSdHSHzRPtgzVRpYqmA==","signatures":[{"sig":"MEYCIQCEFDDHE2jGK/+TprVfv9thdkLSWNt53LL/iz43lKFvHwIhALTht8THtyZ60EoJb4tNdwBL8AAmCosDQROk5NC7+q5N","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":652957,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb6Cc0CRA9TVsSAnZWagAAHWYP/igx9R/MXRdijYmPnZqf\n6LzJFB+VRnY6ro2FwK4JTQhs7hcsAPknGondMr+60a0HvFAm8EBVkebOsxOb\nCkQJDIZllY1QG0oGEv8a5Gt2TIHe3uaFEAqWRuUY/p2Wc4lT1sdFutcXF05l\nLtGV/WVGtrCk+1n/MbjJJTdw79k7/3Sn03l7opqu8CHrqxkVmFqb26vmWGmY\noa/GUtfWZOtyYLclFdiUszqtIoMrsqMP9SQEr6FWIwXpw75bkCZ90R+WquMp\nv/ZMNxcRy8ZK+68fjaE6p1b8/fMfv6uR4GnbM6zVmUiRXwQp0sxr/4EyyYho\nOr3LqBIVX6jf8/DA/Ztb8ymMmz02YADARA97dtNik+tdQKopLPMDu+tRZeu8\n0FhSstaEZ7XzsT0gbrtlXe533+H2KcWGeDkyXaMaEfJvjRpf3ZPvFwwNWV/Y\nm2rozl650wen0p+Tm2a5QMeePrnQ18Y3pvaRtuVR8gd8ljOC3RY2bHZpJ6VC\noZnMAYlCPgBN7tYMUh145RuVHN9RrYLtQ7C1TXnskro/dBOvkl9wrrqWxyAa\nSRoOmf6N3ueHOB/bFSzxKa4X6edMb8czNK5EoFwfLfZtgZ+bVCMZeKXHjjrI\nViBslgqHbPC/efmjXhE1Q6XeKu3zgoRJcMzmo9AL/fiUFfhzk+UT+JJjUJRs\n5Rzp\r\n=TDs5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.2.1.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"f59a4162cf33f37f23bd5e3f3d8b1dc54390a123","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.1.0","dependencies":{"inferno-shared":"6.2.1","opencollective":"^1.0.3","inferno-vnode-flags":"6.2.1"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"6.2.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.2.1_1541941043484_0.39310969838376364","host":"s3://npm-registry-packages"}},"6.3.0":{"name":"inferno","version":"6.3.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.3.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"39cd28df296ea30d6a48e0cf22749095411a91ce","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.3.0.tgz","fileCount":35,"integrity":"sha512-WnQ+hDllzV23sULSI9rLGaLJZSjPX9T18Bm+GO75gNM4LaAoy4D27MWZ4SwqZWTiayecSYs6wj6qvXi1APj5sQ==","signatures":[{"sig":"MEUCIB1lEd/BMDhMSQm3BQkjuXpo26nYVX0tCKlCdx1JuiteAiEA70BnTTzdsN1jOzZm60KnhcqifRd4e+V0rYn3YpYyn+8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":654234,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb+ZNDCRA9TVsSAnZWagAADSYP/Rune3hT3wF6lI0zryHN\nB+kEoolcj71Ki29L8pLg2ELmA8F5nTcd8c5fnsTl5n5K/jzcE1lKMR+7baMX\n5iTTUgdDLj/eUNMMqMCq86qqAWe2HbEn39uCkvHsjnZj0I3Yk8rpsi4YmJn+\nIEfLgTmxNW7J2+D+hyLp8epDIH2Jb/e4SbGnvZJ2eO3rwYum8LXFL1QDUdSp\nLG/YyBReNs7UAW6uXvUJo+OEJsuhK1DklL7+gpK998T+RvWBzmse3FEYw+Xc\nJ5EpAHivLS1Gzkxdv7RSw0yub58wZHT4khkuJWMtQA/A3Cwt0kym3cVLfLvL\nnZBnik+FKDIgCEsQR1fVI0N+sqpSy467RXFIO+efnjyFJnA1yRO4nmOMWHzR\nMKmuGEpsIqvmjaaX+3cVtamsMEy7AquupxYH3vXJwOx27SRtcZQbjYr53fk6\nAsOaKF7kgyBSlV336Rzak+a9mmyLBQAsY17oWn249h2zAa5ALY4cCFBlGiWh\nstOF1PAUM54OT25i4bdtv/DNiSVqSaC0Bix3V4pTiBdchi+TEpnZ+j5tCWmm\nJV8TI/DP2B+BX60IS+wxh4/fbvWOmibWXqkGX5rs0pnZUHpCXdv/xfrU7XFk\nj6v/V4Uuwy2tgyGmR79IumTf2jN+9w8Lgtnl41tyebMKx8T/hhjNTD/86apm\nOyLI\r\n=5T4M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"inferno-6.3.0.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"_shasum":"39cd28df296ea30d6a48e0cf22749095411a91ce","gitHead":"e7b8c7e104a9dfd64e770c400bdd683be45580c0","scripts":{},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"file:inferno-6.3.0.tgz","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"3.10.10","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.2.0","dependencies":{"inferno-shared":"6.3.0","opencollective":"^1.0.3","inferno-vnode-flags":"6.3.0"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"6.3.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.3.0_1543082818003_0.29003941073571426","host":"s3://npm-registry-packages"}},"6.3.1":{"name":"inferno","version":"6.3.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@6.3.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"51c11787c9dbd311e8df82dacb0efef0d2ff51c8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-6.3.1.tgz","fileCount":35,"integrity":"sha512-FejSGGzymfFqvWG3wrOfRrv+cP1TOeq7aiBN7hZsCd0mcKnqMjEgdSXm1YltFekk+lpTFWEvCzD7SBETmYWwhg==","signatures":[{"sig":"MEUCIDoqx5bbCFvd+TjRpPLrefuwcJ6zocWuuSGKxMPbmexUAiEA1mZ3SCThEivXZ3ZaOLOYgtitx64wSgh96EUtmMzEwwQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":661902,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb+oH0CRA9TVsSAnZWagAAJqcQAI0ygdqDxbdg8bSpvoJu\npiTlRQrpOnjlLHdy0Lqu0WlYKIwo8VxmkSrX0jKjAXTZUPMfzM6aYbdEZbCC\nUxQXN3qBh1ne9Fhnav2f7Op2Of+NqvwwujWWZ2rNXDz3lLdnsrohspYao1oB\ngQAccF8A2aGkgAXMutSNdvanxrig3UG9iNdkJsvdZ7OmvyfIqFzPjO6DXwYA\nYxRkrc9ZbR/8RP/P8G3F3hamQWUMqX8n2fwPq8TnEn9p7In8g4M2yGb40yba\n/vx9/i/uxrIi8yH3a4n4Z8X0dBLZHpg5Z0oT2PZ9IMUY/abVkN5/4PopVV3R\nPWhWEvXtLHkQaJY1/dC32JbkK1JQieArTtfAFzH7buqpGG7hCPBDjW9ImKR9\nWUH3FG8D8PZDxymhWe4vDgO35FlS3fx4eUszUSU1hIhNmlKaieIjVyCwYmmp\noP2l9zVKZp7Uvs8KHXSr182ccvDTt+6aGTZMuxK/tyzg2809A5b9baU6vAj2\nhxKcnUscxwDMvkxZyygCkjXdSHJOZnWoUkT7LIuMFpDUaHNClsqEWmvNHST+\nOQL2jldVJQt3SLR2mdDZD7vS/FUsdYJn5IzQeBYTm8t2ntqHc6GIZGh8Hqdu\nS4Hfhri3FwUdCej66YurB6e82InGBhg01Aqn8uOmVBd+iDxya6CkjHgnGOkW\nAZM5\r\n=4W4u\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-6.3.1.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"580a3576f251ef18b6c2b294ee5bc11b3c06e0e3","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.2.0","dependencies":{"inferno-shared":"6.3.1","opencollective":"^1.0.3","inferno-vnode-flags":"6.3.1"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"6.3.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_6.3.1_1543143923962_0.3587081335098916","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"inferno","version":"7.0.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.0.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"f5be13aedce6ed8813acb0527645c3437c6ac6c9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.0.0.tgz","fileCount":35,"integrity":"sha512-x/XUcv0DMgBLLP0NOmLFiquaxZP4eDmIt60c09zolhUmaWHMcldmDd++pzFz0OiYmEcsqUoO/4lmCrPelUfbbg==","signatures":[{"sig":"MEYCIQCyKIspj8DOCB+QXC3HSmV+QhwND9GBSjtJW9OeHQv/PwIhANSTltwE3uJQALeXQYIYVIRqahSXZ/9ONooVuLSrpUqR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":661195,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcAHEBCRA9TVsSAnZWagAA0EMP/Rv/J7lzeDdU0tgi0HtG\nToOrV832tnB40mXuMRf0fNsXwqm9fc6mYjl5Btm89Y75JTn0fpYFHfp1mWdl\nvokFGtYt+1SZwXHcr4E01KUED6losqPLASesx3RumMRNNvOEIf3NIO2ND3ER\nvI7IspgRa5Zy7w5Dzt1mQw0oSF6y/MWKdyCPVsSm73/H1Vy1X4USUpOixYR4\nVkc2/lXmdfZjVDq1R+/UesNXG0w/F8UoBC+xBQHR4ZZVFu+kmPCkmipNGiix\n0TOx3iiSPVe+3aDQ2YYifNOmGLJ2yB0Ong4Lf6KgBGxdsWQKAaliBp+IYWSS\nQFABaZuTOB7sndcmCa6sNB6LKpV2/mmUelvDxIaDMb9Jpe/jXT1lzcIjyFx/\nGxsHkE3A2SQ1YKUQMb5vCuvcOmVDMTeCh867rfcySzQV6y607kHa5CIh8VMC\nGJ8VEWkMQTWer8/U6i508XjBX0XXRBiahz+X/qLOXMB2hQjjn/zZeboP+3HD\nQ0UTp17LoRJkOcFSeMmCjDGeE5WYsVivEhH6IuXhTCAm8yDvf2NwNflj1IFn\nhCDt302lI02+G8bj3FVJOGPXJjcUEgTVcsH0ex5z/zefMS5Zl5J6wvSU3q7x\np22uU5V5Pr+9TV+oxJvQgDSzjggfVWEm0cRi36CJ07PEifJ8690Hj+nwO46Z\nGffu\r\n=xUoC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-7.0.0.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"6265fa84f0b80c6b4aacdf0ad7b0c9cb5e45a6c2","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.2.0","dependencies":{"inferno-shared":"7.0.0","opencollective":"^1.0.3","inferno-vnode-flags":"7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.0.0_1543532800422_0.764962558585258","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"inferno","version":"7.0.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.0.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"5b7064b507474a1244d695115061e84fefde9a5c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.0.1.tgz","fileCount":35,"integrity":"sha512-DrxQ6qoA3T7NKEto0I4Are0QRb+GybZ81lH4W/rI4oJVKDp5MrETz9Q/nvAWy5gvl8PTwdulgRG1qefr2m62aA==","signatures":[{"sig":"MEUCIQCQbJryvp5G6O8O+n8AqjLGN5RsN7dYYJHvp0dFD4nnvwIgKWdMQcvVqETYe3aTY4qWcWuKBPosRFaI17hUtnhRMAU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":660626,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcBYBECRA9TVsSAnZWagAA2XsP/iS4g/vzzfi2M4RfDw27\nykTNWb4lZOfs0LzwzwC9wQYL5kymZVHwLaPDPxfG2Ob8JmXmws6T4GHxMyL8\njrArTarYUV4lqWsjuPSggVK/HgR5YhQiak85Ydr87pV77youTalpuAaR1JT3\nsh1/puTqoys4efXGLJprMyywp67iyC0Q5LEWE/MpGR/kPfQVGT3fH3gXkAU4\n39wbBoJ/mI/HcjrcHoufA0Z86GQxR94O2FbuS5NXR6c2d2R/U15i1/TfTfOX\nNhfTrsP/SmiX9ozvnJ99XWBBIO0PQ9sPwhZN83qadJbAN66kaIUKLY3CeBd5\nqKxUP4vDXKAtWGFSaMnUIqte549LFTwXYZQulRBzFBgdO5SbK5DsPttGbcK9\nWb3hVHIZ0uk3q8n2GPmS4X+CHYmBI757I9YDBLdpJDcHqHTiQTGsGLJxc528\nv6gDiHvNOk9c9qbRKRMWEYdeLq5MuB7pkD+MzyM8WxWUYjGC/HTPLlzMRGiM\nShOGZExZWe0Ot8JzKA4LwQY2og2uy6tWy3Wmep9cVSwZZUrTyNQBVynqV6Hg\nDLN+5euh5Px6YHUDNX69upZqYLEzmwITzgEQ1hhsEc/bcUixCv+2cuRkj79W\nSanuj9Xpse1hQta2loX1vnu7dKg+f2d0M5L2qAoftDX+4iL8HxJlpsq2x9Zi\ny+lT\r\n=jxkV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-7.0.1.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"faddb218f53165850d52ea971cb15b7c943519d3","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.3.0","dependencies":{"inferno-shared":"7.0.1","opencollective":"^1.0.3","inferno-vnode-flags":"7.0.1"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.0.1_1543864387264_0.11261219587975635","host":"s3://npm-registry-packages"}},"7.0.2":{"name":"inferno","version":"7.0.2","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.0.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"a90086485316e0f3a80e7c1675dc8238c512cc5e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.0.2.tgz","fileCount":35,"integrity":"sha512-Izas4CN3lcVUXfIvTUY1VrlR3h8G2X/68kXjQM6rbZBwmrSVO4jyfpccaKue6UUOWhZJ6ISe67Bp53G9lZkT1g==","signatures":[{"sig":"MEYCIQC3fGLP1ozq2E57/gLNBNASKNhrc46zsM1N/c8ch4D7uQIhAIVVPdDBHJUVJLPGlmhXFSkaQYOUKn8Mlhpf6EUkP4KE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":660896,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcB+DACRA9TVsSAnZWagAAkeUP/iawmcci5zDnvB2CJ6qM\nqTP9AJe7LnSXvW08khvHRt7fOXQ52+G1aJ5VmX8lLbdT4c07C/nXVG7rCOeQ\nzDeKHBKpXg0q8fAnHJIaulr5izy/XyO4kyzA7OmjQDK1vOyMmeYmxh4R+pSn\nBW2Cl9y9mZt0odPQz9XxF9V27OxaclvuCq6YcSPUHlQ1GfqJ3cfefO+c1Zst\nypaV/0RqT+ghgXTp3Kc9esQ3w1WXcnmVczbTUrFN0FVvquAm0cW4nCjUdDPW\n5i0+5IhMJkUdCxPzA3KFQeqH4ZRlb99V2cH0Zv8N/8qAGMHAJTdPq+C+WpXQ\nNM9GKBK/Tdww0o2SOcMmKYAgA/B9vo6SGeynaq6c+Tmr7ga4rzSIELIKwfET\n9F/p35yX0wJaN+XKKYv+/NnzU1SIkjiVN7QNB5GvTJitr3Hz0BB2+eKby61b\nGWfzkXVuXd1SblUX7w85pzz31exkSucfKqvbahDQZFV8kIirYIb2SriuzazR\neMJkVLiWkgKq66isiMa/PuYi4kQfI8jECu0VzU7FKEcMpeOoInp3fJpfKnT1\nxI8lAj+lKX5OvvKFfjhPRr56CsFkq7l/3M0Y3hBetT42xNt57TPcZq3hl0lH\nhwfg1XXIDGsmFABZyXDmaKMRwaxP3YrZ3B8MjNoLc7xRTH3Ewn7VGcbKEvg1\nU/AU\r\n=q8Fl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-7.0.2.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"cf3776b46c7080c7a41210143af1496865992f45","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.4.1","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.3.0","dependencies":{"inferno-shared":"7.0.2","opencollective":"^1.0.3","inferno-vnode-flags":"7.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.0.2_1544020159219_0.7144052195077331","host":"s3://npm-registry-packages"}},"7.0.4":{"name":"inferno","version":"7.0.4","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.0.4","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"3b36081e62da070893f8c6732afcdbda532bb554","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.0.4.tgz","fileCount":35,"integrity":"sha512-R5lk2e7F1Jy1l9+rwz/onTyx7kqb1aikbfnMwJ1GKoKX+DJu5skha1AQvI4ran6HueXFtfoNWpylgSVx0qd9pA==","signatures":[{"sig":"MEUCIH4K+m7HrMnHRYrX2hrru54nRnrJufDCn0ljCDO64rJlAiEA2NLbFn34BiAVN1bYt0NTFz5uRWYQ+BHWkOArN5asyic=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":660846,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcEqWGCRA9TVsSAnZWagAAF2oP/jphoQejbtw5yBcH7Idm\noXlyPEjJs1kzfFKMW2CsR8FU5pH0qvPhnqc1FWDbfNNK9jzy6xZrzvJy0gX1\nY+oxoPgpri6rmtcOVJsA/7ZDn1zmKkFu3IwAkSmpCdn+0EUuanAf9KaSzv3N\n+WxOaZhHOBdUzptSK4koiqV9g9955uBYIXRrOYmhBiApxIqGLiJqYeSRPqpD\n861c6+lBplX3rF4fofPj6F21G+t82kjbcF2QAMkl3HiFbE+e+aP57+MONwyK\nf0YFK3VuRv3IrxJcQB0/p9uvcoI9iloZmayTaF9j/aXAXmwttxdTvV/IcXRd\nNCZi6QuPDjwAfxFQoplvj8m5z4gB2lexeT60/VGluVhyUOrSQFaLYyqWKCpi\nSL3rql2fwt9JOt5MPN6mKcLsqFH962RZ2dt3p8mVUqRjYMnFwRyNiq/LREdA\nA9jwo9Vh3gA3XcH3Qn8RRQ5nw1+5omO2CMtbeDktEBoVMAeIs5fw1QRkuvfA\n0F8TpjkjyyTUYhW9vlc9wegjKD1KA4goRgwzm+dKRnbsSE6ahXbdL/L3PDPe\nlJOovgibGFByBzyD8gbc+tVsbTDujQllUs1cplieUSFu4rAvXwtfiHDWc7hy\nW6AJfS0nPWViWLu8uxfblWgOTQofwS1xzVF3vZPJMO28UiaGgGdsYOOJzanz\nbuiu\r\n=uozQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:inferno-7.0.4.tgz","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"b6c16c569d0036c726dd7c394eccbfb8305c142d","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"_resolved":"","_integrity":"","collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"6.5.0","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.4.0","dependencies":{"inferno-shared":"7.0.4","opencollective":"^1.0.3","inferno-vnode-flags":"7.0.4"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.0.4_1544725893874_0.40938417826405793","host":"s3://npm-registry-packages"}},"7.0.5":{"name":"inferno","version":"7.0.5","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.0.5","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"0ad099a1d7562dd8fbe2811fcf489f65380558f0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.0.5.tgz","fileCount":35,"integrity":"sha512-3pAU2Zy0dD3tHhyMKss27fIuV3w1cRAr/RZSqSRZ7/q95+624TM0YERtS/GefA/6MXfF4Iar+30JKEGKESZpGw==","signatures":[{"sig":"MEYCIQC0JLNpc+rGnE8wdngcA4QAu7aXt/sGtJsi2SgBiaLSRwIhANsCrkwo6KQbg7DhA3DCk7JTbEefuBeGCF+qcl7yv9yW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":660924,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcJKLUCRA9TVsSAnZWagAA8fYP/Rgk1F5b6R6pHf4TAyoC\nr10iNxEW4KVgDI89iVuuEQuVP0oSrfW5Oq6dtslIl6yNVh15MnwtYB8RYUvV\nv+WCLU3WPSsoAMXdphONB3A22U8dl/pv8AIT4LZ4JdNPfqa31Fq0yS8pYCJv\nu7bTMN5rgchSvd/tmf3VDw1L8zoiZUiJUZ+P3S8tw6W68RMqN9QS60N0EidR\ni8iDvrlYXOa+npOHiaXKKzk5LC9KD4o24xzpjWrAYPtkZn3EEtOh5dhVBDEg\nlLe+hPv+ZAgGQTs1m7ictVTTMis3bk+kcFyLCCQotAknq5GKEXHu5raPF7VX\nt2Soii4kc2y4eshdDiB2jpC0iaoXM0Qo02chrgUMzGbUzj7fNPm71bKcJWLL\npU9giZKYU7G1sEAteNO9/p9QUpr6XHzm9gQ4uyiKDjvlT69Fs6WebjXKQS6M\n3AHwJ0imLXcyGzi1Ps2aFppb3EQiwRio9CTs80EBsy7TQ8j8ds9LsbDOy5NO\n5ndkDz1Kjlqlbte8VK3Ddxdke5wJ2OLtp8UoCMe/w8QTksudi0M1oTewn5nR\nZMbQtgy5K1tIWLFGt96cWUaKD5gUJEVQ9Eai7l3/lPnWfE5BIb82xscHFuCg\n6VyHjkfqoY7hO3LtAzM9hyF1+NJzlhDNr0V8ASqjowWRwF3LGS5YD0QR9ou7\nZ8ca\r\n=vunF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"d022ccbcf384f4a440a4318238c8c6ec4396eec4","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":"https://github.com/infernojs/inferno","_npmVersion":"lerna/3.8.0/node@v11.6.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.6.0","dependencies":{"inferno-shared":"7.0.5","opencollective":"^1.0.3","inferno-vnode-flags":"7.0.5"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.0.5"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.0.5_1545904851157_0.5595483438779689","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"inferno","version":"7.1.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.1.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"5115fb9324346e86a80dd695eed13573c7438c16","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.1.0.tgz","fileCount":36,"integrity":"sha512-H/RvgeJtbrK8ErWr/xZsx7cHzK2F1JKDhjT40DO5QIXI6JG37pU6/6ucsZuxXglgDzkVZ409zbGUb5io/cg/Ww==","signatures":[{"sig":"MEUCIBQxJyky7bvP7+2euwcIKXLisI8FG2pJgSe58ltx9rgxAiEA73VTFmrP8VIFTly7n9LPvXDT4U+A6NFwPo6zcWmAMTk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":665519,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcRiQUCRA9TVsSAnZWagAAEoEQAJaNDB8tFNDaACcmtOjQ\n18mhZ6OyL/Lo4+COznZrhpMJxGkyvdzx1KFnxsAoD3SlfCpJGC0/okY5/qFc\nE8hmEh0TV06UCnpOt5O0m6PcIbrhLxpAEkyieRirnqctzxc1G+jkjge/Vo2T\n8dvK2CEF9TwgPd2FQrGlRWrGC55kKjYPeZzaJ/GOk0XSy9sYBN9RG3Y3vxiL\n6wh2A/k4wts4Vtd+D7/BzZJNogmkX/hJdlfSREDGjuZawklYvcRn1SuF92eo\nY3g3JZCTXu96R8k9wG9+TLJ6wV9k+u42g4OsnTFMPo67fvFv9REpwTidwVm+\nAVHDQvl5ed1NbLJjf6J6fcJCjbld+kBGZWdflFSvahyKzysTCdBFVVUkTxEq\nrfJ/yiD+Ngb2UaeHJana10Q98jVbV2I2wgbYOKp/3sJPb21hxEytka5iMd4q\nR5SLtny/Ugv++eRWis+F0aM4XPTDRb/Mk4usOjrZ4r36oS0ZfxLnFSoGE2HW\nOV6B9mFbI/y2DSpPPQhNH1+smrEBVQaMThbgoWhlldY4weUkETX25wrdHWja\nvo7CVl5dKFIeZakn6SuwQ6difWWnc/sEf4STSjd8samkBzSPOoSWap6GeSRa\nXzUbp3dwlMOqqkUL/AA0LSTKoUAtoJJI1mh96TLDDkxxTz/eF1RK4pEhF+Ac\nxFQ9\r\n=/qgk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"20f2063d2551d2179e35073e27e56f94dae823b6","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.10.6/node@v11.7.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.7.0","dependencies":{"inferno-shared":"7.1.0","opencollective":"^1.0.3","inferno-vnode-flags":"7.1.0"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.1.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.1.0_1548100627253_0.20420028950194236","host":"s3://npm-registry-packages"}},"7.1.1":{"name":"inferno","version":"7.1.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.1.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"8bfef0320aeef87aa42d34d54171fe853cd9e8d9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.1.1.tgz","fileCount":36,"integrity":"sha512-cPl0Cj8baf0t8otL9wtkanK+eFJyfb+3wMeHR6RGLm68SVVHtFXoqYKAdXgZP2VA7/z7AVVtoiLVDmKNiu6yVw==","signatures":[{"sig":"MEQCIDtUZ7kldZk00IJ9much1ZD7X7Zo0syrXQmt3sm0AY2GAiA12UgCnCSCm60w9MHuQowE1pKa8rRbIPsL9WRZkRQdVw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":666604,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcTjkGCRA9TVsSAnZWagAAbIcP/jt1VXzPTRdDyIoCS0Rh\nXIYocqJZjq7jkTBK9XdVQqTjL9Il6/Dgf2CiAmF9RWQ5lmBIodBch7oxzK6k\nrDeChaSgQyAzdBxlzx2RSVARyXP9TYFkcY6hoy9Ztm/YWpeHuR5SYs4B6jSm\nf5YPjUKvsCBlsC6HsDxOQlOZco3eMQzMqBpIMYzfo5Ac0hWsLBotCIqIlhou\nD8lPXrPA8v8SfDuUWsV1UxMdTUy4e4GaXg+sG8iFqXCwJOaB1bXMbXOj3va7\n99Gq3wVTu7LLBJvMneOqq7tboBhaeXe0+KhK7ovArGxhJ+76hMy/dAF8aJdZ\nxZQ0xFERjSapsenZrQf+68zhS7HsxNYCZpOHCqV7P23bzLKWnYOpyRE4Du6E\nkQimqHH9uqREIL0PG/69Zwcb5qrn4zN8Tk2dPqwnE6eGHL5CYQQqtMgQK4kf\nPCxOONHQMhPYdrk7WmV7AQNEAo/pak5Dw84nq3dms2BzLitEDDrPIyxS/T8A\n6ofkhXmsbWPOWhXbb1SWN8H1d+TbP7IRFYdag2NKQCOy3qFuuiWwwpdHQYIN\nXNdONNc32UdiwJsQniwmu17WaAvJU3RfFFHhhml7l8olb3RqRSYnDlm5iKkt\ndkFMoWurEO9WQN2sHWcmCJEiU+ayCHMMu0pWz5/4I9BlRb+SRk7VPJYVYmIg\nq/Oi\r\n=nNkn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"064d6bd02e3d45e4f30b01bcef0e241d8bca6fc1","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.10.7/node@v11.7.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.7.0","dependencies":{"inferno-shared":"7.1.1","opencollective":"^1.0.3","inferno-vnode-flags":"7.1.1"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.1.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.1.1_1548630277310_0.7520509017486134","host":"s3://npm-registry-packages"}},"7.1.2":{"name":"inferno","version":"7.1.2","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.1.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"8148b6b93b679b3c78ddba799843f776c44c7e03","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.1.2.tgz","fileCount":30,"integrity":"sha512-PBETZSnONZDFbqtXu6GwWJjpzzZOwg3GKjoLqlFJ9pS6ye5fwyB+b8HPlyIHT5DV+auvmVLbye4Saqsl30il/Q==","signatures":[{"sig":"MEUCIQD/bimKN1PE1PEOw2NR2Yko2DTdhLYwc9yXqGvSV0YkbAIgPcOI7nTqeCy6r+inobIfdZ5FTHU4Q/qM2C9tGQ3Fj1Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":518217,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWz+zCRA9TVsSAnZWagAAaAwP/295JEYxXFmQ1aqPyHI+\nokB771U3hGN0xYyba5K/MIFo92t5vn4E9apnX+NbQQYMmHZsE/T+CY4l5OsT\ncnv9kh5yJt89tNjVlMZhpN2lCZpWScGgFeqz62ukxVsD2sn9bPdrdLJmDgEt\nl/JglKI6pDg5wPIQpUY1KRZ0hVJv9Q58hfeU+gZqjgCnYgnObiybcr1UDUCB\ndjrF50BhmmMDb2RQBpagRA6fgSZTicqwaQDRhrQk7IYGEegAX/SAKV8dFcBF\nU00/Aa7vKqYC+xNAPGhI1iCdqNoqZCCO27A3WzDpaUcbmHigvSMHg9DTl2Ll\nDYil8xDP0dDPKgQTwYGn350VlQohvsTyzju3OluebVwPSVJ8bKsZgJH/la6m\n702m8/0+jNLFw0vl7LUineVCj1bR3AFiHPoM03LNJTy2sctHcmPKR25p6laW\nl2mHJBml/MyQ/Tp3b634UgaTiiN1GfxPtpd/f/TOfPIwmalDI1qP996/NOa8\ndzLDoK6vj8stXs2SbnLSAbAHDeVPxu+QwOQVGycnMpiEmW3G9l9i6N0x+Dji\nPX+1mwud2PwXewgX+aLCaj1RGZY2Ef6JSQWqcCro/UP+7BpBBVLexSxMkuvy\nuOTHuHVTgVSh7E0ysZzZh+BR6cpEkb/tKVTyJP3UcmGr9PzGOxjxMUXueLIb\nTmg1\r\n=Ctrn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"b32241592d15f8514975662e2d78145541380498","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.10.8/node@v11.9.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.9.0","dependencies":{"inferno-shared":"7.1.2","opencollective":"^1.0.3","inferno-vnode-flags":"7.1.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.1.2"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.1.2_1549483954826_0.36659933316994264","host":"s3://npm-registry-packages"}},"7.1.3":{"name":"inferno","version":"7.1.3","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.1.3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"84c8dcc35a323592938702efb15ac68a0f640050","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.1.3.tgz","fileCount":30,"integrity":"sha512-hnmMYxo099B9wmIvLsm1L/nHR97V2lTizYW+2saZsUsgh332hYysYva1HUt2+ZykdcVtjGj8hDi0ecHP+kTtRg==","signatures":[{"sig":"MEUCIQDQMc4jle1CeIKDxTfgSF32Yeok4hqZT03xSJ6upE62NQIgTSvab/7TFlvRc4TQ/PCx+OTVrm1NeRiEbsWcjxsi/78=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":518217,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcYTABCRA9TVsSAnZWagAALuAQAKOv0k+jDHNmZ8NRBhp/\nwTc12anzNuRk8+NQSDGJAfWWvT+QP+/NQsurCVcivTFAruUUftNV2Euen9ES\nACuEM3QlOYYmAeZwt4z+OYTKNmQ8xb4YIIk0pkiS+Zltpkfm0IO1ar80cpWI\npaWA3JchggSk8CzY80Q2wgp8UiapMbiT5V2+M/E6rDJPq/DW0jGPoKybZsM1\n8uA/YWuP1zU0MSEZ03Sf8QUQTRmIWswVF/++K6sCvSXPgAOZXye14jYS0rdF\nXyMVJOyLD0lJ59c9dl+vXwfxn4uCds9z5xqyduArit6+Vx7CzuYQChfiNudr\nCzFli5dyUSY7BMDYl6esvBtpXXyYjRa9YmtqLbAeUwcwM/X+W2Is+drViN6G\nZ05MwW/F0S6VDwHxA69Gib/Hd320sVbcm6RzaHBmrtzPbD4KNEdTP8uMSiGP\nUWm905IDNr4Hc6ifAf1ktCiZ1Hi1sADVsm7jyUI1Z1CMy7VyuPOlQy97CbyO\ny5CWUt0vRGm0mjQUIJxJINXlDC9E4aoVwSVR2kfKvPyOUKJlBWlsnCmWJGXw\nQRy0Bhs2JAHy+pmU0Tl3rmP721G8BIDKPFGN5a7HPltWEzGFcarQm1nJYhLg\nBEGdygjIFDJzvjdEly8jwhIoFeXE2DlZwJWaw0UF+rGkI/XdEe86JfEpaqXk\nkqts\r\n=rxQi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"75f8e9a8ec82de125f7524bed01ed17046cfe231","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.10.8/node@v11.9.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.9.0","dependencies":{"inferno-shared":"7.1.3","opencollective":"^1.0.3","inferno-vnode-flags":"7.1.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.1.3"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.1.3_1549873152477_0.2060011341915482","host":"s3://npm-registry-packages"}},"7.1.4":{"name":"inferno","version":"7.1.4","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.1.4","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"de7ff1f3a9d584662b317b938105e0dd92808b4c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.1.4.tgz","fileCount":30,"integrity":"sha512-ja1F9IoRncDMGd3rCWqUe4Wp5f6Vr6MhPsdQAnYKJrZKYpWPPtJsKfVMsb3ldJwD1f/hMbc9ABBt0YrwT8On6w==","signatures":[{"sig":"MEQCIDYDeciQGx2CW6j+vkAZgsJG3apL+9cw/L1lBu3cxsiRAiBk916HsK8JuVfnnTFbtSNbml+jySK84tcUdHJNglsLLQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":518217,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcYTzoCRA9TVsSAnZWagAAsi0P/1RIKUDN0Y03iAAEZyeG\n3GizTgGA60Zz2oESzPCRrjq1bP39zznt7Iz7I8T7XhtzsarRPU3tsXgNik7B\n4N+l8uEQmxSk+xWnZMwXEjPH0U6Ze+plasc1bQxbcDfBaKsPJQpT9pd/a4gt\n0//Xzc1YGuwp669GkIv1mhYPgcRy0tuUBQur9dChPgGVsoYZ657UR+G4oHqX\ncsjWkbMqgt9c1ISxnHYhmAZ+7mV4UpVHnAP1rP+/4D4VaLDcPhToquK12FqB\nsanplQIdohCtx+jrkgAZYYjLfTeElZzD3HrVaDzKYcepdxvs5pQ8MACg6KKR\n5fTDz6Ba809gSSIfeSwRx0riUY3DZeUkR6/cSGiYoVuWeOHkRcXSOMIFtQaX\nonFeUJzdS9Tv67XeA9x6t5qVb1KKLPCh0r+6Fq7x3GZ9lQCBwdqBp2XWZcme\ngdWrCz4CjJf+/w7WYL4eEgjC5iMVHguWiqjo+8u4RLlusRwfQTpEqBRaNLpI\nT72e5BrVOS8nK+rCd4nKRteoSBLSfEzlwnyWuwzd3A09W7LQ63pQ7Jt0BbDu\nlGFlsj0o5G8RSSBAfKao+3HLj1WVkBCVsAfpjUrpcxIiRJ21Q81+LLrmbJuI\ntVczd4A7Yre449j8zY99zfg/Dd7FEpULHBCnakHB/hzrtQMrbuZ99WttbJvI\nn70g\r\n=SXlQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"498e34880cc0f69498ec6373550f200b976da712","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.10.8/node@v11.9.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.9.0","dependencies":{"inferno-shared":"7.1.4","opencollective":"^1.0.3","inferno-vnode-flags":"7.1.4"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.1.4"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.1.4_1549876455283_0.19270602929121172","host":"s3://npm-registry-packages"}},"7.1.5":{"name":"inferno","version":"7.1.5","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.1.5","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"90210260da41da1200b58163f5bda753a990ed79","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.1.5.tgz","fileCount":30,"integrity":"sha512-/byRvwFEx2i0OI6JnTvtrZmRtSmdobaNwL8pfaCUc4jKJWiaSfbw2uEtga2+OXSf0o4LCbscCvdF5kKbSofT+Q==","signatures":[{"sig":"MEUCIQCP47yl1DNz4wVDhfyaUST9Yn9B0VPDiAonHRiu2nDOJgIgBcbiPKcUjhEd/6lcjsS7FKjKE0yVzUUHcdpe2lsgInE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":518217,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcYUwTCRA9TVsSAnZWagAA5MUP/i5hnGoWbp8SFPlSTNqX\n+DhMXW0y9akzQf+20OskAeEeHGuUB70iqc7BPY9KmaMFYlB2irFtu2CB6/Tp\n15Je10KAnUoet+G0m3wohMX3qNj1/wPkR2YQnzWnPS9snUcNmM9NmMPBWmgL\nw9M6QGgmlpJ33U+2iPsIeb9YqdfUlNzEfjIh+UOD5Em7oO4JwxRMsPlqDs0M\nEECHzVMU2w9gCxtTSnVG2y+oKWPI8cK3YO+q7kanW3SlKAUKWQTqTGmAIsOk\nOG23SYyC/w3sh+bLXB6H9u84PljupGytQ37FwELh31Eq2DPWdA8MwsR4oHCV\nSWysGHySazQxSAWOExqDpgXtGLJrpj/Y4UymJBsit+1Fz6QMrblvEqaXTtEy\nFblLkC6H5Z1AgwJ9HOjJZYDhW0xAb6MeF6daHpG+JX0ZWHo+PdjYdKkRlb7p\nWvCkZwdXyf3J/L+h9ZwBxVuRm1frdOgelMZPExy3GNb03xn7sx9f9QQEpM/7\n+0r0t+MjO3elBzkqAVvTj1zD1J/ACmUb+p9JAFbF+GCenIZcucQ6DuAH0bzh\nFKdVo+cE0B12W9B5WVpMb9DBGzWmvvwtGhuzuc0DlWjIpTE4fEpzI7RIbMYL\nD30Mvlvcd5XngjkqeB3s5TPW6/EyXKzxEaFdWaykHPfZkOgwGWXOpp4EkXQh\nWtlr\r\n=QvMm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"bd6b2a674157f1d917400f839218796f0bc73999","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.11.0/node@v11.9.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.9.0","dependencies":{"inferno-shared":"7.1.5","opencollective":"^1.0.3","inferno-vnode-flags":"7.1.5"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.1.5"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.1.5_1549880338532_0.5634623067661968","host":"s3://npm-registry-packages"}},"7.1.6":{"name":"inferno","version":"7.1.6","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.1.6","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"65e70c4e9f3b320571b1225a5d4d182541edb264","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.1.6.tgz","fileCount":30,"integrity":"sha512-+1845DH2DZkOlYTkuCsM9ME28EBK8GzAGhkMYoinWl8fKNRrIrYb1hgmf2nY336k7gWXB69tBDXNWC7xSu/ohw==","signatures":[{"sig":"MEUCIBThqwLYSNU2mqaAMJ75aTa2RDPzFqrJkz44KJROmD/cAiEAkTvDfX/D/F+Gc1fL1icOWyboW+L/3Zq8TaTcVpP+iXY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":518217,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcYVKWCRA9TVsSAnZWagAATZMP/27lYnmKtpIqZmmj5nKQ\nOA0EwXXBT5038L+QV4sIcgsO7xZhHGb2LsAG1+EqWase8b4Fme3mPeZLNHMA\niWOmmYh0tRtS+Hun4QcwM1Maee/D5dKOzmL4xpgoC2B5TUfEIH9Qx3lTenwU\nPmAo2kBijhrHPTZGXsJWbnzbUmDqjAUoJNYVdDnz4+atLNOL2J/kodk6XqtW\nL2tSLSOLA2oNjw752Lt5Qj1P1JdKhwSKTatv3lA3TIW7u0fjiPwdLpJzXMP6\nAeGvIkZbWjBSP/X0pfyltK9iUagJevgN9zGGUsxLL7ab73I23zkSbpqg14VU\n30zvDFPZJF8IUE9D79hGQCLsPwR5k4WlK92WVFLWykgR/l06S7Xj/wrx/iXg\nZnot7Ewp7994IQVUm0IdyJ4LI5htS/LZ/wbpkD9cAyAopDbas4KuaZbG6+dH\nvrQuUQAfd+MZ8+tIyHU7LIEk6ZJvzUr+qCtsO9o+FuaVtLIv7XCRklVjsfM6\nkmx4VGuTf7pUezmQq2OQ1Yp4aRrsafdNzmRz9fzts5SjO0G8j5Zgs5BavFcn\n9tQ+pfZgBRB4gO6j3UTn6BfHF1O2KjcjSBSY5SYvNk3x778HgqVEviFFZf3N\na6m00bsiCAFyO4amjmXjrgGJ5AyG4hjsGLZMaajXBGO5eWo5w/WbbazqG2CL\n2Sod\r\n=b6nN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"225e8797235a00c57c41b272a2228f6052607e66","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.11.0/node@v11.9.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.9.0","dependencies":{"inferno-shared":"7.1.6","opencollective":"^1.0.3","inferno-vnode-flags":"7.1.6"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.1.6_1549882005181_0.49544058471025876","host":"s3://npm-registry-packages"}},"7.1.7":{"name":"inferno","version":"7.1.7","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.1.7","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"bdbf11ad1fafc77f6272970797a0c9afc68f7bcd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.1.7.tgz","fileCount":36,"integrity":"sha512-BFrqFcevphZfLVOrO8t7jh0DQ94M/nM+XidFeKqeB21b91DB+WX5bJIBfLTfMlfL3KPozv22e28TcLnfg7Lajg==","signatures":[{"sig":"MEQCIDAsOgbvm58M5TbtUwOLfiGGm6G9a3ohtvt99uvxJ7D0AiB/5fbDlK3RdnDSblkW3g1kKkpm68PO7J1OmVN41kGGzA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":668314,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcYVn/CRA9TVsSAnZWagAAtMgP/jKONKuPAcHKKrNMSc43\nXGEhwYtLdENjlc3gzcplPsHFWGFVeSUL/datPtDQDK0cnKgCsZgrQRDIpQ2Q\njyySS/Ltr8r3kiSLRGy+Of+PYDAkViYR+f1jNc+sKZbSe7IRezs8e5DTVcmM\nn/GtG7JLAzmsc3ZakdLq45HzIhDSP52IWKoXzAalDuQt11o2N0qGff138V/C\nRBdtUqNvFhMAKQSrKwGQiFF2apYgqgEGvvcOO8xUqLADcmayZZ9dUevjK00K\nP2wtl82mPgijJMPXwKdkMIfzFQhfClhqztZNzdnR9GiU/RNVBaM80K963oXT\n0XELW2tTea1d3o6+V58EaD3E7vt7DRpwnZCKheu2l0nA3imOyv9sYiNHAhd/\n7F0bPh4QFNUMY36MOc9gmLxkJF/J3JP3V/7sPUijYPu+W1lSeRInZJRDWfys\n3MkWya9mmIOeJtJVy9j5ZtSq3Ud7ySBuMQnlhvjofLe7zlAw0GOHsyy6IP6r\nQ8nlyQdOm95IPrNux01jb70v3oYLxfG+USOeaQ3+z566zRl0hP5Q81h3yJp9\naEWYgMKqO2fLP6HcgHmpZaYtKiCfoY+uYDUtVUZ4lKxxKK8n8LJ8BE4JH9dm\nkc+XhmFii6QaeCzZhCMjkmZq7mLSKoR+TMIEaA8I8ERxR//0JB327CcZv2Ho\nsrLY\r\n=Tg3u\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"bd7f790d93c42f2d6a4a0bbdbea8053c6bd4f2de","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.11.0/node@v11.9.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.9.0","dependencies":{"inferno-shared":"7.1.7","opencollective":"^1.0.3","inferno-vnode-flags":"7.1.7"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.1.7"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.1.7_1549883902814_0.30055312651364385","host":"s3://npm-registry-packages"}},"7.1.8":{"name":"inferno","version":"7.1.8","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.1.8","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"b398d8354d88247e203891bb0bffb85708e2cd5e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.1.8.tgz","fileCount":36,"integrity":"sha512-wuXQsDpK1fhlrXWz7/mieMgP2lWZPKomtOPxh+Fw7nB+CI/gCo4jsyGhFmLR3xUViv4E6eGSvE87hZi4AdOe8A==","signatures":[{"sig":"MEUCIQDDlHSAZfcRdKTymTnkR9hUyZhANuWrQAA8E4et7YZVvgIgM3RNG4DylJp+YvK3jmCT6IHZi9IFBmfudEd4Y/mqHYk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":669496,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbGk9CRA9TVsSAnZWagAAONQQAINvTobnGBE60joGwbg0\n+DtXusbvT893T/mytoXz3SfE9xfuK9EKwEiE7aiVGcgB5E4r+xaNJ5EqcU/s\nqFVVYEmL8jmmsj3aHUOxYKT7i4BNFZj1zhpPxgohpBtvo5Ix+n4+qMHZdHEk\nYRGt1zlzLNDrgR+koLQSnAWksvm7REYFxGfuoCDwZA5R/+RSn5DqvtjYZpkF\nlcy3FBxpgQxN3GzdSrQvMTwNYahShuuZUmp+9T1TVITPAZ/21ON2GRVN/PR0\nqOOSLMRDcaAyD8ylVc6/vJ4BOZ1+xTypWxpW3GhfVkYXdSDOTsyiAnahgXyq\n5YpXRCnUl8hPR5Hx91bEOaLC1tlylcuhKjkSVSLW2AQcXvxeIAlCIOGCSz1S\nTL174b0lAsEXKX+2JdW8egBLVFZXP9R1C59tSfxeqq3tZXGGYGwFolYi77eV\neuIbhEGB6/3DkLZpS/pHVK7o/VuDoEmEAAhx/HU+D0BKmwh0mIUr1CbrYdgf\nCQJZXLAloVgIxQCd+K5Tk60ZmejHRHf2ZFAAOm29XNbHjaYAkhufiu2T69/F\n9jpUCGYNhwljsQfwchs/k6KykSs818Vt9RRVCbyha450MNKG3/U6m7qmz5Wx\nMZIE5mLuXQZNojDFImDc/zX9wUQf9jQv9cnQ5/31VIhqTBxWyNnCjkmLWm85\n+tE0\r\n=Fh3E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"67048b1b6c5c7697f7633cee14ef3aa0ada0fece","scripts":{"postinstall":"opencollective postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.13.0/node@v11.10.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.10.0","dependencies":{"inferno-shared":"7.1.8","opencollective":"^1.0.3","inferno-vnode-flags":"7.1.8"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.1.8"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.1.8_1550608700661_0.14076982817921402","host":"s3://npm-registry-packages"}},"7.1.9":{"name":"inferno","version":"7.1.9","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.1.9","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"53caca7376a839376516986f7bfb2291f339ca84","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.1.9.tgz","fileCount":36,"integrity":"sha512-eEc2jrrKUnKQPH/TzrqPvpgL3kjIbebNomb2Ak6UIeakf2q+8u2SsVh/ojEpTpJy1KVlIkZJd6uoMMQZ5dSNNw==","signatures":[{"sig":"MEYCIQD9Mio/lW38tFTTZs/xOhGrjMrOgfMLaAo0EH9DWVzS0QIhAKkeL3oUACGHmPkvTZGpTmHFuc6c75cRVZ3IrIeQdTic","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":669508,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbZG9CRA9TVsSAnZWagAA1EcP/iT+4Z5MMwIfxKhxkb5G\nWCg3Ph1jYrDZyLyAIh/Ew+StoSnK+vtftOr+k31f7lo77iMUJt+lusSWvGvK\nuv/zgFNA4z8JrMYMQZbJcNeBo/Xidnid7xsKsJ4gWvg99P8rLVb//anjlXPv\nzWr2vX9yLMkEEyN0eRi18h8zHh0QQV2npy9woxD0WWHCgKtHy5C6+jo4+bSk\nBifrPbIeC6Y34yv5SuvQUrCtwFq66wGMkPYpKmJxHM/GcVVQCmxY70R/wabp\nH1QZk94R49WtHGcE3jtDP6QhQYZuOvx1AS2+/8zhOPh0+lToI1wRBVp05xdk\n5UdOlVFuNo7f7eGlCXDvwM5vyErUQpe9teNcd3Tb6BIWLb/OU/nIFenPNHY5\nz0LP1vQXIzJyKouAvykmfcsStkNU9W/f+OJV6IVNl1s9qx8gzTW8jFfoQKcP\n6UqK+QTN/qyLjUNGIJfD8TejgI6nbWmH7GAOjpR9Y0DDosye8svYnIzSDb4k\npM1xCNNK8XyLE1pMnI0cB1ExvI+06QkU/ZjW/zI6Jn9wcwT4/YbPsW0W0k9G\nGkOCbTTjPl1faCTSfxY3pIB2Fsb5m7ZeRYdpMPi7wqailqOG2/wyFlSirUgk\n81bGy2eSZF4Ck9REwGxlX4u9WYnNTv0geo7kVr8ERlzr26mzl/+AxfooMtus\nhiw0\r\n=+Fxb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"ae0df8f957d6157174a89c1269eec74d03c879e3","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.13.0/node@v11.10.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.10.0","dependencies":{"inferno-shared":"7.1.9","inferno-vnode-flags":"7.1.9","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.1.9"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.1.9_1550684604599_0.9809910166465845","host":"s3://npm-registry-packages"}},"7.1.10":{"name":"inferno","version":"7.1.10","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.1.10","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"826a3bc7482a2567b3ac53cd25fb736ca98d3219","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.1.10.tgz","fileCount":36,"integrity":"sha512-slm6ozMfQVa7yfmenlcWrkK/zbuOH62j/59Z2lj8y0rhHGDrTA+K/EXXvoQBuy8te35Gjt+E85Zzm+3AShlJxw==","signatures":[{"sig":"MEUCIQDwmeEX+nC/cGvJS5F75uuq2olc8XWkarVP+nyp4HTkBwIgLFQ5KtcVqddjHVnQNhvXA2br7qTbcTu9+uofO7NA3H0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":669519,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcho0oCRA9TVsSAnZWagAAnNUP/j5HVAO3fxcKNDjsH3Cq\nw+12yfebMlmkN/N9n/Xs54QDOIHdslVIx2Baf5/9+n+uyCosuunvQMQWbS/6\nHZShIj+/bYgP9hs5UkHmnGGb+MApYoItCkomIfhbrjJPek/1r0p7fGFKnCC3\nyfqi/ZZ8JZ0pWNYj3DnISsSeQuz+/9oG7ADEcw0hXpJCBpno51Y+PVZa5NEZ\nEizGZxfQiwdQ4oru1VbsSRf0BXelGluHXD16ZCGU7jmmvcnSM6Up+zm26RQ0\nUzycz1HpKmEfiabNKVx9doBbyPBVMEa5smn9F9NLtbZmBtGeDiIegjNsQsuw\njju1vCBbdNyQi9p9+DdvyD65OKuxrLUjpBk3dFXFgTUP1nhf4eWdjfLqoAEh\nAnm+fm5XHY4MhOkxGMkwqdBzLxFWzImT3KuYVPDErvK2FCWbgzJLINJpnN+T\nJhKa8Sn1Ay9u5x1H5uwEiHoLHgZzbqPPNGZHlESp75UERqMs8PPoRX2PQDgy\nQ6z/VQmMopDUTYz8E1ijobEOKTX2DQTh+SYu0INBwDeWIlRwyGZ18thasmiR\naIRQ5osI2Z7MhIIfDwgBotwycQRZIoSaiyvmx7SYIjETwbAGq9r7C/GiULsU\nXxjKgnTq8MTdLOnn2Jn7X4On/ItjFQjTt5EhM3tX7Tx+u/FFrFCO9H7xKoUi\n95bt\r\n=Kw+X\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"ddd874d104924d6e64ae0701f5e1f36b48ed76f8","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.13.1/node@v11.11.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.11.0","dependencies":{"inferno-shared":"7.1.10","inferno-vnode-flags":"7.1.10","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.1.10"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.1.10_1552321831049_0.8464461589861281","host":"s3://npm-registry-packages"}},"7.1.11":{"name":"inferno","version":"7.1.11","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.1.11","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"a201992824e7c9bb0e9aa9b85b254eafa7615ebe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.1.11.tgz","fileCount":36,"integrity":"sha512-6lTntVI3QIktsuPuxqAi23Ry83cN/mhoGVN9hl7AQvSvnRkzJOTuAXJMXxCXUTy1FX5xLGmzfGropvt8k+TS7w==","signatures":[{"sig":"MEUCIC1Io8+iiCvxh60znERErUQFvK+OfP+RR8xHSG5rN/FpAiEAjNAfy3B90bw1qWS6Gnz9Ms7dvHf6NCnI5xOJlr1Y1c8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":670325,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJclz2YCRA9TVsSAnZWagAApl0P/j7PsCxvmH4sYimzYvVq\n1ZGauoxnkpXuXhefcRXWB9sn7bIEwq/nuunL0zTLZ5J35LLJQWAeAWkdQAQ3\nM/jDgz97VGa7LD/SF7N1S9VLTXLG+Nuc8B7gIewAFpm/s1iYVK8K34X6XlmH\noTvjfcStGYDcXfJQgILMeA/YPOjj7W7J9wsPageL4+c/Qxe/1Ep+YclFzRVU\nQJL+trfv1iT2W1LiU7HaFVj2sEkO/DR3IjwTz5ep3Kas7w42rimVOCXupqAw\n9C3fRj5SeLXGhPenI55M2xbDJU+vwZEEooG3NfhF+nVNt7AsmFriP9AkBU0T\nSwQVhBQ0SkzhL++9Wwtsot0TqnDWSqiL6Ppy06gYcYQYaH3well/yFWSWt0G\nIwwUkv+uJlpB4kqMaXjJUn19oFue0NfJYnbu0X9hGjWZ2N8ZK1JVYhWqDc9a\ntzCNRcx/6OCQVahEtCoixsw5K2f6H7nB93s722DD3j4lTXsHFwGKpJrI8uVe\nrqbx2NzCbdn/owOQS5fkwUfanXMS3L5VW66qbJP9KCuhxvisP/lGI+5y+QxI\nFfeMNG/Ly4HADtXqvUxmjqTir6gHniOIaZD85MQUtdUxmWieJSqunkrgRsTB\n56w62QKPpXE0WatNMWDrfljPCv9UqIozM9o1aULyGVt+JJaVdsVSP0z5Fw38\nyRqG\r\n=6PVE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"ddd40fc969a4ecef948d9e951cbeef6937ae1ffc","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.13.1/node@v11.12.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.12.0","dependencies":{"inferno-shared":"7.1.11","inferno-vnode-flags":"7.1.11","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.1.11"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.1.11_1553415575660_0.6045127056997988","host":"s3://npm-registry-packages"}},"7.1.12":{"name":"inferno","version":"7.1.12","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.1.12","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"673596f014b28d34478ca176ea4a09efba319560","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.1.12.tgz","fileCount":36,"integrity":"sha512-uye9syd9evO6iPi/o5WAWf217j9HlJD7AzzLZb3Lj4RSXrxFhKsUnQABngvQ/+M/wLxR8zB9kr6VLSuXXujq3Q==","signatures":[{"sig":"MEUCIQDbF9KX+vcnCLQV+kaaHHlRfqhrf9qY83Zimym1lEi/GgIgN9iPux9vOJYx6MMcSMQwdjSwQZrEoQCq4QiyCHzZU5M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":670364,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcwNABCRA9TVsSAnZWagAAYdYP/1UmKIQxMwqxBDuazI1W\ne/w5lS762yYS7Nh7XeIrlzOc0tg+T3zSbW6pjrB6Yw8LGsx+Rncn/N3lKwCb\nhxQBavv658Uyc1Usd/riCzKFCK/sFbDNL2iUqPQj6FeSUKrym6rTDIMTlLnv\nZpUun4Wef+4IM2kMv42U5RoLyQV49NOzbU3TN3M3J8kWkIZQE7GIJYesg2hy\nEgkZOEXWO58pBZrFUQhPHeJ7vF/f6jO4G9HDnec6xXbDFuADaKMtGpFxppHW\nz3hBf53NLmSgkNPwKJRZk5CUIOyLuG01cCfmtcX4OmWsvlP168+ddbWGHWKP\nW935Sd4RyglA8cnN3LIE+4TR78Rpc2pmKOW8ALweDZeFObQYhj3mDUWwSNd8\nXWulSSdOVgL/QHU215J1ZhICzAj679vW3ia5+08SMQQiarom13nDgF/Xa8At\nU+jvcMenbrbv1iB9QKhqIHkpZxPBWM/+z8ZuVH0RRf9cFU8pV0thFYjzEF1M\nBhubnnHroJYFiOMgxGInCrKQnSBcELQe28wxQ02Co/7kMADQROU5owZTzjMg\nCkGSKnZ+Crc2kXiqtLL0hkToe3bXUhNPCjzhB03qsgBe62efGDssYhd4QIZj\n+6TqQIJkwy2QF3W8kBNQt7mqfuTsB5wZtDR3g3lI+d7dzvLH14iLgOYnAFIs\ncBs0\r\n=gogO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"6f3fe7f747f100ef91fe85a8926ffdd6d741ee0f","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.13.3/node@v11.14.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.14.0","dependencies":{"inferno-shared":"7.1.12","inferno-vnode-flags":"7.1.12","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.1.12"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.1.12_1556140032611_0.4513303361070726","host":"s3://npm-registry-packages"}},"7.1.13":{"name":"inferno","version":"7.1.13","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.1.13","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"d8ce8384a07de5138897f9f79c25d04141228b93","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.1.13.tgz","fileCount":36,"integrity":"sha512-CrdzQRHMRkhrRTAB2tYBxnqe1umYkuKparHOHd7R37okd1TGp/Q8bQa58002Qh4pY+BU272mz3FuQC5LDQOLRg==","signatures":[{"sig":"MEUCIA7+Ntxc4p1c7bsl1WuySOOaOVWRuotEk2xk+0VCTHgtAiEAgpO0pZX0egNyu5u6pPKV2hBQByz0uX6EGAa5ukNmJ8g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":670095,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc8CiACRA9TVsSAnZWagAABu8QAI+4KDR3FMhSIjQdA5ui\noeCxAoyMn5YLkK5l2H3iX4w3D+vsXv7BP+rjHSUtOAq4PhQ/ilA6BjuzwJNZ\nftHMcoKb77kJBdLOyGWaIaby6Ypz0Vb6hX3JrpKzaSWbG3mcGTVZJDhXx3FP\nYp6v/FgpLRoCe5d5cguow2w/QFp+amd5hMUXc5JgP2Ssf0oVj+z+VZ64TqVm\nBiGBylnUv7fNuzQhzq3Ut0bWNvTCjIzyaeBKFXCvPg/1+MvIuAOj9eLNMo9V\nrEIGhD0MOSdRrWaBhv9xLFcG/Ncg5yOGFeESv3IxH+WHSGm0W0SedXBbVw8y\nIVTdhw1svfgkGcGnandAdBFpv79tMiBS46oXMCT7TSrqnxrl7TZTGmbF/5Q3\nCH3XMByE5Vd04DzeBIVR90h0f5CINQ2jXR5Mk5/drzlg6cMom4rsm3CsqKS1\n1RHNGyWuo/a1+dj5N0Kwy9gsZyFt6rvygYPWC+1sqpPM9Izd02UUWdP8/9JA\nN2s5bcTFCMSfUzSN816ZD8C+BujAqoEkKPcXvAGZ1Wa22oB5Z9IxxV/EUDeo\nGjMy4YR0jgXE7u3vLAA2G6psiXzZaZ2VvJ5loL/z5kvwBAymcz/72kXLXAKS\nnl3ByEKhxZ09gBD1QrXGfJD2FViJMWdGRA8ZdXRNRH07kc6gwfszeGwpwre0\npLLy\r\n=Ga8t\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"52edc9703cc9d7ff3163fac20d3dc3da4bdd4a0d","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.14.1/node@v11.15.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.15.0","dependencies":{"inferno-shared":"7.1.13","inferno-vnode-flags":"7.1.13","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.1.13"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.1.13_1559242879287_0.10838253031258693","host":"s3://npm-registry-packages"}},"7.2.0":{"name":"inferno","version":"7.2.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.2.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"7280500a6f4c28668883d6da88fd8cc76c987045","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.2.0.tgz","fileCount":36,"integrity":"sha512-V1A0b7xtLyEmaZIlaAmqReRHuYUVwM5N9G2mDhhyIGT2uL2VemzCRKoCfSdriLKe78PrtKOx7L3Hz/6r/7mqcw==","signatures":[{"sig":"MEYCIQC17HHHh6yf+DerO+2KJmFUdnQoss4fUqLPumdATnabxwIhAMhcxodekWIAqKSzl0s0mrzfsfrFkdov9KWmgev6TWav","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":669545,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOGoICRA9TVsSAnZWagAARNcP/0NWbdJ+/9rJ37Ykmeek\nDxBwcoebIQrYC3a3iH2HpaBjr8j83vmp4kcFXnRkSb0LWq827EduzoDdVu/4\nfsI/UNcNVuShhl2huab9XVh6u+dMrqZ9Jdp8d5mLRKzTE5xVqqJ9klGqzAa3\nYMXICmlLmWR4kzDdzzSTTAHc+zatFBmB3dJislQEHmC8/R748Q9rZx5eUQpj\n2YjziTdFE/ejLfxkrGKgt30+YuIbM79QTGvCuhOPF2t3+C4yaA4OGRvgPj0W\nulM/IQ1vx3l3+9lfCW5H2atSKwt8kF9D3cn8PV2XKe4vMlfRQcsrp9P3cqm6\nLhJ6GUWhhiB73ttrFbNJQ4Gw5GTD3ZSl988GrvhFewt4tHa9UU/ds6tZ0U7u\nG1b1T1nD32RPtnVf1VOaxmfVKtBIPfw54j+KBrZQK1dsLaJ8aqQ6NYF7rRxL\nMnQIq3zM8uO3eqfyktrB4FYm7zIDCW1m/q0YqPg8eE6xCmW9HSrl1UUXxItw\n863owlEl2zfAwerHRrGHGciqxPlRsbVNvD4uqHMpsJ5BR9sVLihie7w95/8Q\nEWAUJEppee41w2cMVBxtRm59cShUD+0YBuzVjmFMhreYhqC+ljODnp3WRhTx\nlcAZMzccDN0J2N7hp5cLDjFaRCrRieybEJ3/IRHvb4dZOU336w8EbUCf2qiI\nT/vw\r\n=7HjW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"fabfe9a399a04851b302c505416170c6bdf405d8","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v11.15.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.15.0","dependencies":{"inferno-shared":"7.2.0","inferno-vnode-flags":"7.2.0","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.2.0_1563978247057_0.22277450126374054","host":"s3://npm-registry-packages"}},"7.2.1":{"name":"inferno","version":"7.2.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.2.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"d82c14a237a004335ed03dd44395a4e0fe0d3729","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.2.1.tgz","fileCount":36,"integrity":"sha512-+HGUvismTfy1MDRkfOxbD8nriu+lmajo/Z1JQckuisJPMJpspzxBaR9sxaWpVytjexi0Pcrh194COso4t3gAIQ==","signatures":[{"sig":"MEUCIQDaM6BwNTOnFAH5Relnp52GdydZwDQhkvj9zO8bwV7JmgIgT7dHs8lOim//yryFF/Qci9Ymsfuyw9OLxca16VNQQuA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":671625,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOgddCRA9TVsSAnZWagAAjJ4P/AmbvgMcgJlRCmIb18+1\noDOWHGGJe6kfk7wJPN4A2xjJ0gXViFtk/4QF6ZAhY6eZ3cY8OHqOD5mAd589\nPPLMuyI2muQlYgLdMZ8Txak5QtndQ0cTaznyzEet2WJrMVpLnshtA6l/VmDs\n0ymCjwPfLcw2k5mAFc44SBVDAsWKzBMXjR8Wncjn3x8KNc7yYukvoLvHe5Be\n5TVb+Y6Sptmc19kv59j+ZkRxGWseKg4rE1sxuIcYD2XRFC/AVQEig/9/G3NV\nItlnNos1Ioce1r2M5PE2zzbqtT19aSTW8jey3lGn8uzCBs+y/5jxRr5iS4qd\nCL6zwS068TXRWao3TLaJj/JBzUC99FqpPvQesXxpD0gQbB3urqYCTMShVNkY\nd/36aRQP4ize0S32b4dzUqymuLIgyqSxsZt6GehncwPHtsNNb8HNSQxjXvBL\nHW3iIdAJbglX0svaiO9IM92OXhFNb6lxMpINKhYsFQBIAK6hYASUEXxZ3jyb\nzGE3dvlSrn1emfsdWF2L9/ZB3+WNwBcXVcyJZzvYXZmsvgBU9aF2z7KnInG8\nSpHROgxcNnzRGUj5ksIT/s0v/jnree1ZjG5lXgaCNg/E1nrGlqieI0HQUQQD\nAsTfm/RaOe35AdtsVs5fHiHfP8rF2T267QRziP2yFQYqXIsXc6dEvs+D3M78\nndk+\r\n=MKqF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"5e2b8e700b0ba88746f769a76c689693dd2f05a3","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v11.15.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.15.0","dependencies":{"inferno-shared":"7.2.1","inferno-vnode-flags":"7.2.1","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.2.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.2.1_1564084060115_0.9188515927912007","host":"s3://npm-registry-packages"}},"7.3.0":{"name":"inferno","version":"7.3.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.3.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"e6ca2da58df61847ed75e2a4b60d6cc1072149ba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.3.0.tgz","fileCount":36,"integrity":"sha512-yZLsYaZmjIipn7z/7YFpMueHpd5u2zXlmGVi1ySmXCLDFwh0KtJgb4BagK+MlSMKk0Xx32AGDyEJrhELFbvD/Q==","signatures":[{"sig":"MEQCIA62QSIzkiKQcXqVdXzspgXOwYWkTM+by88dUOA1k6SFAiBqsBEeRXtmj7tJ9+DwV+TZECLVoGh2MBgkWmCF/UJBxg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":673557,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdUxH8CRA9TVsSAnZWagAALfEP/1rnJWvn1AB0IopgWgoi\niQsjBR2hf9MkgU0uZLAjdOxCMz4P5ZIS826oM+NHCXjCG7A71lv/U11Fd/gg\n92zRxoh+06XPRJEMZBm8WFr+IGHqRtq8L0KwqpuIQuLsiOF/yDpCRpJQGvc8\nm8wwLPHEK1U+sOiRNdI7RDyHQ1iXbBJJ96WJBTz5y/TZgdQK7HFYr6uwhc/N\nmvK/1rsislPikOqd93Ihluo1tkpW0MMge1yNtfjyI4g7cGHwLYtB6qwwWn9C\nGkQYP4bUeocdVhDAlk8rO5Rk+kKlu5BCiGbMJnH2UHy6sXF7tjH1GZEGuM44\npGQGWL5dn2+5iG/2WpAizNXh5QVFZzON3x5vo0gmEXCCI3TmRgBo0Aq/6j4v\no9Bz/E7OEBONL4MoJIPYCdlqlhsnSbUeXSMxMdXR187DEIg8Puq/o3yRPb7x\nmBdC1mgXEGpVWDxBgfa0XUnQ/rPuuS72/NUYAAgdaEPMunoKbLkZphkLC7z3\nnEkzEn0JJ7NOgmh8FAXJIUrNIqgIxinOr4ojg+/LzlLQ8l2PB47PwKUP1hPc\nwaaGA5Vm+q7FhA6ZR9WDr6s2VI7iDVNoSlMowkuaWkHpF9Gw7ELfE62luAW8\nEF8wxxNFQYqZhL4xUOsGiUP6oXzT1iWG3YaWyH71bXuwfP/R5uuNPCsBFGfX\nDPWY\r\n=tg13\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"d0c48edfb7ee42d68d9dacdf7dd9463f2b349456","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v11.15.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.15.0","dependencies":{"inferno-shared":"7.3.0","inferno-vnode-flags":"7.3.0","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.3.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.3.0_1565725179476_0.907608799343794","host":"s3://npm-registry-packages"}},"7.3.1":{"name":"inferno","version":"7.3.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.3.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"5e356d9a5a218809eb4da49c333d324126515683","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.3.1.tgz","fileCount":36,"integrity":"sha512-9t4G/YjhbiC65d8GHxzfn41qALVf2fvykMdH92ySUiSLr3EQak8gs6rno52KuW7puDZcmJgmMHVA0vTVegtfsQ==","signatures":[{"sig":"MEUCIQC4dXlDiq0XuHKRXhEvkNjDAp9up/JTWbk1h52Q4P78IwIgZ6XVvZz31TOmriArlDDgATjK7YoydoxNQCbR2NBCwVk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":673557,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdXrGrCRA9TVsSAnZWagAAmR0P/2u/0H4AZZiz/F9Yk2QG\n6ZsL3I/XpuGWUNbg5rTdhpQVfpXnMqud2Tv8IQjDd6n5Q9DhpllegBmNWIl1\nDV3uktvFGRiwNAXf+sFIBYZpN8oyuRqx1yZcyZMQcRTQr1jVdB/tAlcbWgI9\nsfEKhhTw4UuRAjLoveTDByYnvW03TYsVnNKrDYWzfCYM52p+JobgE2tBFuHR\n99BCPHSfDHKbwsoQQScByx/9k0dS7HlkJ7AXw8h8ad03lPvVQTJuL9NHIzKX\n1ANP/Fwe2vPNU9N7u4HEj9swmkWQbcDiGlTU6kGEXm9wJ3aG2t8c6hvv7cSg\nABmqqlE1TWSo4mxPQdMG6UHDmTfXRdX25g/m+7+ED0jQbvAJeBsA3mYoSByT\n2Hj9dGQofg3fAKuRN5M5dNAg0Mp/12MD8GY6spmselt99XwOQxizfs24p1vF\nC/RqpapDqne6OuOiEOYkTwPj0t9EBkqsH67hayDpWi9PhAN9IxbC9n5lAZoT\nb5jQXZYeqnG9wXMdhEB6omSU1N2f6aDQguv2nn5V5vdIuTquGkTTc9Hpr9N5\nWHuWzePeXqq6HOJ4py3sPfiFXkUEZif1kPMX6gRqjB1OnW4BrgDhgMtEr3jW\nndJJiz1UBK+pxYvRk/oxQiFrMB2QeewmzA+1//801tvdNd0dW4qZo/Ms6r+r\naCvS\r\n=6zKC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"520273383d027e7aa0bf45aaeec45be1b28153b7","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v11.15.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"11.15.0","dependencies":{"inferno-shared":"7.3.1","inferno-vnode-flags":"7.3.1","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.3.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.3.1_1566486954703_0.10791297900137065","host":"s3://npm-registry-packages"}},"7.3.2":{"name":"inferno","version":"7.3.2","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.3.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"f6ffe66ef732bb030e90a05543760e9c9d27a32e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.3.2.tgz","fileCount":36,"integrity":"sha512-Ly7dFvrVnK5EdlYT/OmrEUJjR6VIPnQKL78/pDEYk3IBTD94J7hxg0rg+FBGr48AuEMrN4lVHMEP41yO5AEFAQ==","signatures":[{"sig":"MEQCICUgcT6ojMgf9svZx6M37u6ujxWANWEUgRY282PeiXWAAiAmgHJeRPEBJ3OHfJh/pl2ISPFWpYQPOISmb+GIpICg4A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":673472,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdnNzTCRA9TVsSAnZWagAAUZcP/2sB0mTwGQh7/irHdMrY\nDUXbl/dqhw2uLRQCCAGPI302z2n7FWM7wiltXdm6Ib3eoUh3jk5mlOjMkqat\nyR+2vgha5g1MKP7poAcuzY2iThYGsmgrGslX4H0gjNEkeyx1jCtYYfr0o74u\nqu3DdhMfn3NaXPauDyTQEmC9forBdJK7CAkUKKwFvzGiGvMCZK3w9u5Zg6Re\nuicv1m1dFEdv+7TORVKWxtzHmsXJ2PIeJfdtz87tnPy84UzltRwlfiC2aBj9\n+xHA4XRjr1EKtBInorrOWQNVJ/wVPKF/wpIbh7frCMXCetnO7v/t+mnSgBOI\nzZCEFKVbHc6NHMyb4tBoS/wo2mn5J5YQKItMZYeQ+NriQN4jclnzrKjkIf/y\nzmwKFloQ3jSyA63LdRBRnsF2umbQbJcSDhOFs4o3ncXmuVD1hZ2tK2QP3/Ef\nja5X9fJQJNH2/NwcyGJclqcNaP6V1yU28os1ts2kb+PWP7vBGKOKzv0RK+Eg\ne0HlprsEVDJNbqZnH4Aq8x22JWvyMkmqJASl+X6Q227ZqbEyW1pRtk0MiBD+\nwNYMBYFenYwFfak18KmRNbsUlDTRJ3PdNNhEdAUSRBSJuMV3GCpDKWQqtiJ0\niAe3kl+9NMYKMBC6trrl9uy6Dk5ZWozI1GyDZHEdkqzurfrzL3cRMaJWSTHL\neQX2\r\n=XmEN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"deccbe52e60eeaa070db580c6e84f7e225e25811","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.16.5/node@v10.16.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.16.0","dependencies":{"inferno-shared":"7.3.2","inferno-vnode-flags":"7.3.2","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.3.2"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.3.2_1570561234457_0.5799365873868982","host":"s3://npm-registry-packages"}},"7.3.3":{"name":"inferno","version":"7.3.3","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.3.3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"4098d5313c53281e44a857619764e74ab4438415","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.3.3.tgz","fileCount":36,"integrity":"sha512-FlTMi77+uF0dR3HDfrhysCmOPE6cj9/2jDLQzUSx0KciewVQq7N2KdsfsA0HVSzVb9Do1pjcRtnAIDXmfKzGfA==","signatures":[{"sig":"MEUCIQDQWu0h3f5VyNOQe8q/vKO+goYxLXg9yGM4tkpYsJAocwIgaMPIu/t4eezScbeW+5t2vG9FRlj8aiq/lr8BwnOJacw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":673287,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd1DVeCRA9TVsSAnZWagAA2zEP/02XRaap+USu8JU8b+Lb\nH15Hy4iOWxdDPD50o7DFLiqnyMS65tq146emuJWKwZylTiJ70yOZ49EK0Pdy\nE7+l8bOYWptrhvibuVC1zGmMPKnRAj3VBav8fouPSXSfeQnWvjLmS4VM4tSp\nVdrG0Q/4LJPeX400vUj5qwuTyCDtGS4dcWu55c36be3THkV8wmSIaBs3WLHF\ndre+YWsEFoOU3CeU3I419r1HOfXkY9tvaSJUsBvdhcYQT62dzAHi7wLZI2Jj\nA6UcFScKJQnvirJNV1wDmTV71QzQQ6FhJELJCCePmGROt+D38Di2QSKEE4Jb\nsjoxmCPvM+wnQS9EjVylNxBXkGbmo8I8AtGqF6AJYmIQc4Ey/y2hMlS6Wwd1\nbFr1mfrQnOQJDRhA9jLF6drh3V0io3WiSAiVNxaPo44eyZoCkDKBHeCAGmu8\nKq4GoR2xVhQtwovq9XBsFC2xPxpwfIsEytqG8gqwJT9x4uLGD/uEFXrGgMON\nTbfW/OXbyj8iQ0MYiiS12cyh9bfZMWopy597DXI2Wr0CpRsIZnc5sBecvfEe\ngevRsBpAx2DvAosw0EY026cAUFPTptWhn+cU/LIGeooZSTuUJp0r7xMZGAD5\nFQZ94GfIA1e9ttbCeZie7xXONn7P86uWrL9QZ0g5jScA8ASiaqOCM7rxoK0X\n6ZQV\r\n=JZ2k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"82092b8357fe9026813e06b8475d41d05112dfd5","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.18.4/node@v13.1.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"13.1.0","dependencies":{"inferno-shared":"7.3.3","inferno-vnode-flags":"7.3.3","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.3.3"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.3.3_1574188382267_0.9373627040928885","host":"s3://npm-registry-packages"}},"7.4.0":{"name":"inferno","version":"7.4.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.4.0","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"8d3dc03562c6851043a1a467fd509f222e9dbf85","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.4.0.tgz","fileCount":36,"integrity":"sha512-oEXx5iQmGXOvAPj1TZyCo6ndOc4qPg9zBLigMpkApAiV1SM/bri0M1eA/kD3e9jptcof9TwLBJD9bL6E6tq2tg==","signatures":[{"sig":"MEUCIQCexSgZZOlppPLUVXxhF9qhHRpBZEurMPXzMVMlGCMm7gIgVCCsugP1L+JvSRbfHjjUArXj/izUIU1bAbMX3bGqTWE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":673283,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeMITNCRA9TVsSAnZWagAAljYP/izY6/O/GcX+96HcfNks\nGgmn0aGCOWNaKzAlwAW7jWCaf5NT3GE8KYTP5cl1IpOw79rBU1MHtbUT361L\nzomDS2eWE4LFFFXNoOlwluze4ODG4Pi6QCUo42v5FMGWWRJGdt5JVlQPu2f8\n5YEOcGtvNhEW1NFIbZWr8r3zTrmF8WWj8tLLOLCVZMH7g9a3kbqRiLXiIQjs\nJk4aH8chkKByoHYlwjgOKziFZ9O5FteITCA746vOQJLus4FO8lyYpOivJEEY\nJHMVC1GTdfjTYUAFB2sz7JS+7szFf3ivhVnVKDRRkG1KartoHr8I0gfThThN\nctxBYWVChJsRIxyPji0Tpk59npuJ4grcHzKehpZmxwHRdoOB2D+Hp9XsLVkf\nUFma+vJ7jEPtzcYcFG5BnMs4DtZIFMCY7sT/uN7KH+saoXS352PxsNQCMzKL\n18OztjMde8jKS+zxAjz8OhBPGgCzK9Mt+m0fNCOJW/xfzgIXJwaocZo6YH3P\nyqqce+2Ki9lO3xDPHca6FIPDu475UVm1vMH5pJdHQ8ZxXgJOIC2pPpjliz3p\n52hXnjYHHYJddasQKyz/dHgw78ED64Jm0a0KxLCRCXM609db9g2zIjK5BWXE\nvcJsYau1BNxAkDERXXQbdwMr+Fb6KHkC/eTppzeB+jyvHpW4jGeohmFnkOeJ\nNaZX\r\n=8+rI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"df7b1c7bb1244a0f193adef7dfb4baa4b7ac00c0","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v10.16.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"10.16.0","dependencies":{"inferno-shared":"7.4.0","inferno-vnode-flags":"7.4.0","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.4.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.4.0_1580238028464_0.9636740328446403","host":"s3://npm-registry-packages"}},"7.4.1":{"name":"inferno","version":"7.4.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.4.1","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"4fb90471b7d2889ce23c678a8e9b1a4158ed0f87","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.4.1.tgz","fileCount":36,"integrity":"sha512-Ch3UFpBPhNRWimDr3C/seZOjTCJyGNdp8vc3YuRCq+J7TKdmyEtbiBcl4FVEZOegS0HCgCeHzP1+C13zRq7mkA==","signatures":[{"sig":"MEUCIB1Fq7Bc7/TCzY+fi7AK24DbDvsmQdLy8nXqI1bkCqAZAiEAqCOH21s8PGREvmXclQI8mPjSUKvLSyolMXAFB3eXSNc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":672291,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeVYnMCRA9TVsSAnZWagAAchEP/jNstqqve/zbEGmd3Oal\n4F7vVhv6S+rzYz6Ok+WzC7Nvk/13KeAWjWEGBsBDK5aJrZsbIg6pQ+6KFgPg\nQt40gZXSDYKtnJOvArQR9AcpQ3zW6OPrMbQKJVhWQbOGDiAKT5jLp7B1RPtA\nJEOye1sowymdhjWK1DQL/2n9zA9Cte+ejZssLiIIr1cUzK7ScMiFFwRm0d33\n6R0JqPcyWGf7WBSknghms494sAstxCu/5QMQsb43vGSKvXjI+aNDz9b8YLrO\n+49j3EDLCzv/EyhUJxK+7JwqGAr96j8QWuKpItRm7MXRc5I3mPZxBA8idn6Z\nr/DoyjXNSyCq46kRXT1Yakxx3XaG2a1kc/4uSWmzxTmhapT3pKnDCXVoPEHO\nu52nguZ8wOqWJOW3/V9D3iOPw8IEjtgSlP2IjV3sYtZ5A3Hc5r9jxnAUErym\nEGmTyS9lCSm5bmS+8Ycm8xIEpG2vr3LgbYeA244G6SEKB5SZMO64J7UiH68l\nSJXokbH2Pm1tg8am0UP/wxZqFETH+x7U4N58kI36pey6uKEosaGif8FWIXws\niflcx7qRz7ovi67fUQvVAuk7fdSkV7RunNrkVGfZx4SDJnsmwkZPfnhcHL2K\nAjPx5w9dy/M/2tLXiYbFdNfnIjBseeZDVWnXs4xeS4QKtQOMMO121xQsw4Y0\nkGYY\r\n=6z3M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"68ab63f9e1fa75d7dc5bf1c81b97eec8f140e012","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v13.9.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"13.9.0","dependencies":{"inferno-shared":"7.4.1","inferno-vnode-flags":"7.4.1","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.4.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.4.1_1582664139529_0.45715956098317245","host":"s3://npm-registry-packages"}},"7.4.2":{"name":"inferno","version":"7.4.2","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.4.2","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"833cc423ee7b939fad705c59ea41924f31c92453","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.4.2.tgz","fileCount":36,"integrity":"sha512-RsmuN8F7lAWTTuy2juf3Tqn/BihkRNdy0WZN+vuyryuEySKHBA1fruyq6K0covF3Ja8mAdha5NNISZz9ltgcug==","signatures":[{"sig":"MEUCIQCOhvNFnZPGwOley1Vta/OvxMGnOUsV23BzODoojU0ciQIgAa8N7ZVQfQiiXgfuc0y0mZEXyufSPiPqe9H7YCswmHE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":672597,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeXMVSCRA9TVsSAnZWagAAusUP/3crdIhBr5FYGtCRcRLd\nwOtL28uiArjQZIcq957wg9KNAQxDso7sIrqppWF1z2GSRGZS6HDIi8P0fuCy\n0GaU5YJ4iyyFQ3CpLRuGYi2GNm/4CWjSDupx/kIGzlp06MAh6SoVw1G6ypV7\nk9gI2W67geCxMCzIxE760HTzk5uAeEMAiZ7lhiWl0dR+TvyVlEiHB+85j40k\nLwtEWRAjvEmXZ9PJUtnapCa2JCJMagACHpWJ9l6ZKyxHvPnly5TSXBO5Mlof\nq3LWcIfu+g5WiQauw9fJ+e5KcQB6hdB7enQFJdVVNN1oznMyB/jUhB+rgHTj\nesdHRgt6tmLB/RJ38/VVIwc5R3a7n4AUCNww+VydyP8PsEISnHLWXBDYIlKI\nl9RzIyTHeJRZ/RiQCXnZWrxHN5G5ppHE3OmPlp60YLdV3UAbJvj22J0nbNFy\nN/ffj0938SIG2lyfDWJgY+jXifeP+BRYsupEi85JtE4BF38ZdiiLvdfFGM43\nbu4EXiRbp+MpcFoG7EGoXgRysftiNHuUz6deWu4QnhjHk4Cvz/oOBo6Fq4J6\nz8k24s6vnKKCzta4F7Sk8lJqGKTRbUt4hscVx3rgcUhLzqb141dHwOj6MLqE\nanOEXb71Gh5z6alnsE99e20JH3au8ANcqoF8OS+oGJ2mgiNsBisrH+JQo3Au\nzbCB\r\n=DboA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"c295c9ddc1e5ff1fbf4a5d2ea1e0beab16b02023","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v13.9.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"13.9.0","dependencies":{"inferno-shared":"7.4.2","inferno-vnode-flags":"7.4.2","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.4.2"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.4.2_1583138130048_0.46088332703106105","host":"s3://npm-registry-packages"}},"7.4.3":{"name":"inferno","version":"7.4.3","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.4.3","maintainers":[{"name":"anonymous","email":"sampo.kivisto@live.fi"},{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"ryan@megidov.com"},{"name":"anonymous","email":"dg@domgan.com"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"91f9f22227963f010ef2b6fa37e17f0c9897e2a6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.4.3.tgz","fileCount":36,"integrity":"sha512-ZUk7dUKGQRlkU8ssGEHTuRmzJP0X0BYjn+xQg26uTUeFZZarjmQGXLtzJZvQY7r7uvzZjSDMvz0xwg/Ai+T8Rg==","signatures":[{"sig":"MEYCIQCuV5zGBUGS8x+T65OYZ7Ubt7XwggMXh7Rb/EfDQ2YwswIhAPBbOelCwqDEP1XuBfv1oa/aAvoKqGFdthhrpVngqGBT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":670941,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfP2LpCRA9TVsSAnZWagAAXe4P/0Drpe+zwg53L4M+smWL\nl+GdnnMpDXNkBp8jeqp3KeIpsELuJ28XXkm54Nd31zILRgqcE+9z2LO3gTYa\nmfs2P6YYe/z9NSxIVwyFFO3yAG+BM+cIrmqoNC0oyG79Afzz8Aj4r2gSt2Yk\nhTgvd41iro09JehZKLAS/udJAiJYksp703R4qUB3jseVR9dxAdW5oMaNaIH4\nj4p9Z6NmL6CVhsCGCcobmeGY9uOIAHwZO/JXLww9J22TFzLGeMu86bF7IMEr\nsRDjrJWwQF4S+EaJcUFozAE46mZ29M3K2SkJC0Np6PrPqJOjCo7Btw8ul8De\nY1uBo0nxvD1SsDvd+gjWcxMCyKDk6Rm0u7NYx2agsb5sHfAdeBzQNfL16TUm\n/j7ipAo2e93ugT2U14ivB2cz75sMNFTcS/WsL+rfM4J2HrI3bghur+EWYLLD\n9oa60q+mCjiztf1vV9z78+YKmSzsG8ktF+DAVl1L4qgpk5V+u60dW4fUO+3/\n8FmYU2zuAaBzFniWNCZH1faX6FOCGO/KkYSu/8KpGASceQqkgzJwmZSmblYQ\noJObwMV1jzW7hZZIDgQZvho5TMxKWdmt+JU4XoQNuPWh5vM5FXY7Iavy9bHY\nmlUNWBieLG2H7cSvUIzdJ8eAltVwMiSETal76Gp06f0E0RcONcabaIfR4b3u\n9W8v\r\n=o+A4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"5656a82ca9945ed5472724a8cde2857b27542927","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v13.11.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"13.11.0","dependencies":{"inferno-shared":"7.4.3","inferno-vnode-flags":"7.4.3","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.4.3"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.4.3_1597989608720_0.8783770285897357","host":"s3://npm-registry-packages"}},"7.4.4":{"name":"inferno","version":"7.4.4","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.4.4","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"98c823e63ec51f08d23becf77bb727e35d2bcbb7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.4.4.tgz","fileCount":36,"integrity":"sha512-ITPZ/Li1EvyDDNjRY7+R1MRRlPz5+fYg8wGMhgfUSMg8QcQWoeM0hP5BEYxdDz4K/aGWHfey7CgHXY6HGWylqA==","signatures":[{"sig":"MEUCIHEBul+jdGA7xy9Flj1eYlQ4lGR0Ouga5jSAnqPFHdeQAiEA3PoNtNvAAiceWWeKi7RziGDNCbZO0CnX5TRkxlWk79c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":670948,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfZaaFCRA9TVsSAnZWagAA4tYP/3BbTVP9nKX9fm1izodH\nAVRjksHaRWNb4DE7Crl8Q9oi/GGvje/wZTDnZ/yxnWFDG/LP1mWvpNZaOikW\nl8n4Qp/uQwtAdYW05QZaeGGjAVB+gDuZMrYROw3Qe/h8VNRvJMfocHJSD/jq\nw869r+TIX0i5XcVofMTxW3EwE4Dn9UDTNrEUs2vgBUgSh7XDvS57tuVLnUr4\nQt9fdxMI3tQ0mzlR1sY/TYsbeXaQo7eBfX9l12MY7mqpWhycWnuABqfXTuxZ\nUIopuBHCCQ2CLOYkAtTmKXI6o77IMNchcr22mutZCAOM2jE6r6ySK2LSkJfP\nfNtpdRWdrSHdJ/idK0bzQmVPLf9THQxAMYxZLUMelkrwaajyjjtlY0gwjlBe\nuTUnFNiyWwqTfLF9yA6IMguqHir9ltlrbQ6V3a88do5M6zaSFDzF/5GUimHv\nI0Ro96dW4NAUYDNa1puyG3kaYvQ5MmwtYRwaEJcdmPIqOCCT0EtTUC2tGtSw\nYapxtSo1462bVAUvXlHxXl22hwiKSPa1o/mr0+85F3jYT90cKiX2jCcA2q/I\nmDHz1H1zcTCkgfEq2yJJHbNucu/t1qY1W+qH7PaSJZCdUXIZv/9v1epSriRt\n5xcaFxm98Srb43dl3nHWGR7dz9xKcAs6p1Xz0ZX5NGZkFvQrIPx87K5YSBAY\nQIhX\r\n=PKzW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"0a143c909c41377260df6f5a820e90be009d7059","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.11.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"14.11.0","dependencies":{"inferno-shared":"7.4.4","inferno-vnode-flags":"7.4.4","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.4.4"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.4.4_1600497285186_0.7482524925057288","host":"s3://npm-registry-packages"}},"7.4.5":{"name":"inferno","version":"7.4.5","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.4.5","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"3d751ac166fddc11d5abbf0baf5fc0ff6d68ca83","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.4.5.tgz","fileCount":36,"integrity":"sha512-J/NnRqcucSaqUaOXy+RwojoOiEJE6QGAO0JyA4pyvv4t2e2NwLWGOP+5UR6ui6EvecbHoOAcu3SQVKwkL22TBg==","signatures":[{"sig":"MEUCIF4W5yYMLTwi47T1WMdBO0v3a7f1aBpHYx5RKT2Jlj0sAiEA4BL3qdLBXMHL5Ac7CzN0edlnA9EkVgp70CbBn1KbvZ0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":669630,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfZcYkCRA9TVsSAnZWagAAgOIP/24T/E29sW5+5YuYQHxr\nGvAJzRJDNM5wRr6TrXsDErj2L5ssglRtbQrtk++HJVNhjqyuwyeFXAUIlMFV\nwARoSYmAwog3SiwDUKmYr1SMA+zpBe73/5lGQurOhoDlow2fVmaSSEInrMYw\nzMf06BBkhVlQK0fsJ0x94LZ3+UGOxiWIVqQfA9QVduqsy0BmaP/7obfvCdfO\no/U2g6SeiIlzAjpb6NdiY2BMEf5ZbqhzP6bqr1xNV7xQ6YTsGIbiY0Nixu4j\nSKkiQwR5YNIuG5pmkSQgr+nN9e6DKBCk7Ht6ppoIFc+FzfzSl60a60+f44ww\nqQisfvATnz/gFzPrX2Pru0QsWMncZxLFZ9Oq2Rm0E22WcQU8vhSmPdW+gGpm\n3xc+S8x9mX/KoxWV19Y9dthHyRflFdDp/7RCXbQCFiAIUlw5pozFzfP1LNCi\nBo1raE7YyOaVjdU/jhd7Gs0p6kYKKsfi7XlSsDpLtzbL3ugcqeUdrtxJAe/G\njpv0HdfLXw5BhnAMQru2TZl6NYj0cRmTnM4Phh0s+ZqpfaDKyOgR4GmIks/F\nZ9viIK2q3GYD91tFNUBNntZJv+3OsW/Rjhf0WyOONeBgSG3psSvB8CogabRt\nCT3UA5mVYpzB3Y3CbXxnkfhRG9vClj9DyA20NpoxPzzlGBDZv1HlFlju6EqE\n/Ix+\r\n=69dm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"bcfcfd8fd786681ab9cb666a7deb39738b34d206","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.11.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"14.11.0","dependencies":{"inferno-shared":"7.4.5","inferno-vnode-flags":"7.4.5","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.4.5"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.4.5_1600505380088_0.03143470904671086","host":"s3://npm-registry-packages"}},"7.4.6":{"name":"inferno","version":"7.4.6","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.4.6","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"2198743be748c4c8663d9d0e8e590378238ec983","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.4.6.tgz","fileCount":36,"integrity":"sha512-g5v3YOO6uuduN29XsZNQqlktiSNmKX8YM15pFfL6WYjjPXMA58ticw1rTtT8zCb0V/D8fF5y4yg3sAgVrlJBDw==","signatures":[{"sig":"MEYCIQC2OB8W7ci9AobZ5muUM92U6Pat8aoAu3xEISDVik2FKwIhAJM3MiTax/q1XI05s9hC038a8O0I1IGlJyC/2ENLqlvv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":669659,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfkXhmCRA9TVsSAnZWagAASTwP/1ED9qK6xQlr2/OuhnO6\ngjuycrfu3baVIlpcPKFf73i+dqWO9GqDS2p5wy4GJvSH+roAsCNZzBVByOnu\nfoHNKgXdrptUIWqMYc4zYlW14IoFEfvmNqKIsJVlmAMZvJY9RI0BLyU6hkkc\nUTIhCoRNLyFOyikVhwOjNt87/b390QCVv0TImhhJl02ewSnK8qPMr/SbjS3n\n2DfaiN7eAqCuJ97XmdMQHm1USlAeTGYPJECPCXucMp8ZZNk5GOMGfErQ87FA\n5WRcyYPJTmi1KN/kcw9UXUXidHRIuIxYcLfJpAxUdN/9kECODMMgiHdnuPav\ndnsZCiIY6dicukTon+dUg1/g2J/y5GllWj4AWKlQ6bd6EmFC1omYK4yXK5Tm\nNYLpV0jtc/i3bJWpQ8DbnZFdrSospbKUX0fQOBVxCyfUqI3ub9ejlyA9ALp1\nVij8gGwN3p3p5FIeShbLqUqM2KlST/2aR2xrliktfgJsbcWoEuB3PxtG3Nzy\n/q3AJ8mXGfap6ZBCPQr+OgKhLvcaUFPlWZ0RQuhzcEh2lw6g8SsxO7ZQ5A+c\nz9k10Y4WxY0ILLh1w61R5ZNlWDI5QJTUbnNZgOGY+Lu9qjCxPMjfWhHbVC2X\nMtqjzdrp0M3x4GryzDCiWV0orrVUQprBHZqQ3ssKaqI9MXm0NMkRsECqOZTD\nn2Bw\r\n=NiO3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"695247ea49dbf78ac8299603da2d79b10bf889df","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.11.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"14.11.0","dependencies":{"inferno-shared":"7.4.6","inferno-vnode-flags":"7.4.6","opencollective-postinstall":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.4.6"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.4.6_1603369062202_0.5225522411367842","host":"s3://npm-registry-packages"}},"5.6.2":{"name":"inferno","version":"5.6.2","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.6.2","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"a256a9de063287fb18d09525a85467cbd6c5b47a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.6.2.tgz","fileCount":35,"integrity":"sha512-+blJ5pI0+5tmxhDDF2VuAPvOO3LPN/jp2eYkGzkXq/nptp1iH1crOsbhp8be1nnAtrGcNSWLbziulkOnejOTyQ==","signatures":[{"sig":"MEUCIQCvpkVsxF6pvXg9xPY00+/FlLniGWd1tAhxZKpTtkmofAIgJ7L9v5D6LoRVzBrQYBv2H0ZeQKk7t1IKuLzBqyL9gOA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":650847,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf/ubnCRA9TVsSAnZWagAAG6gP/1qhszEJ9vagvMLtb4Ai\ng+xQxF6VuesxLRL/hKBnPbqoPlMXuE7TztcG/eRpRxHu6yU9na2Qkzi8C0n/\nwvGGI0hY83fN9ljIpnNN5eELg5mrLIF6OgoC9FGHrcCaxQx/b4WgbCWzny1x\neSWB9RnzfKhDAXK4yWEyTFOUCeUrlrf6rJzu/PyzK+UyMhEhoVUjEW/ttozB\nCi8mGgDutil0Y44on/2tjf17FtK1BjSriinRVjE8mNuJdBTK/oDDk/PJAx3L\nlFuhywiINRd4+yl6lC6UWYSA9jL9H31ITpnWTXMZBrATycC0at7Tw418Xq/W\ndQKSxlxruZrGDQbL8HEPJejYltdZ5G1UuN6dulYzzPo8bn8xWPQGG1Y+JCJc\nw5Cpk6chzQFYEcm5LuECfwZEArOC6fIkqF2amNN5fhlS9dZo4i1ZtSNQzYqP\n+e25aVBEIshTebA1Ic/ehZzHpCGkDPZU/QFc+XL4gTA9xXbQOCFfr1Y7CNX/\naS04Nylwk0LnBpOTu/bajlAeovbSue50j8h/9em47T1YHwZcu5sFpJxMZla5\nsPilPjDfpWSAdIF6dxjC9LhWfAd4VZnyapqqU0yYYVxaR3+K5SYw6qh4FPRi\ndeXWSBH7Z4y1eTV424qYlBvM+fUfx8IBtKsZuiifyQ6fI4teOyKkM7QXTdoN\nfrYu\r\n=s3PG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"27d6efd30f5f578770527926c1d9421b06ea3eec","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.3.0/node@v14.15.1+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"14.15.1","dependencies":{"inferno-shared":"5.6.1","inferno-vnode-flags":"5.6.1","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.6.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.6.2_1610540774552_0.41972548038343516","host":"s3://npm-registry-packages"}},"7.4.7":{"name":"inferno","version":"7.4.7","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.4.7","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"6f390bf4dcbde4c60bc53b3fd913dd80d96c7e4a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.4.7.tgz","fileCount":36,"integrity":"sha512-6CsXVyJi7K7tTO83MRMIR6+6yuhHuCqG5vVyrJKGpYquggPfdW4iTQKEarNkCNzlpQjPNsfvWXtyCSHFWodisw==","signatures":[{"sig":"MEQCIHWaVD/GAjoBtGdm4LwfCAsqDXDd378poRU7pMgCcLLAAiA3StFMXPrJN5+DbV8zIvoOS3OtxDTEJgBlKJlkQMZWSA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":669660,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf/unMCRA9TVsSAnZWagAAgfoP/3KdV+mcuxV57ewO151G\nfFgKGYcxo+447h4xdtlhVUEXnjrDy6hkc5CyrAHLIxafdG/HjrxAnqKkVaeA\ny0cw+d+zlQzCVSJUdSHfNmMtw1YIcvFXWWoX09iBBe7XCOtZIVwNRSgjEbtm\n8uo3jWJemZ8LzL+TXnrasSfUJh5pXmM9QExuRm7982ev9+buQbl7jMZxHvM1\n3Q6KxaInPBxqwiH2IGlzhkq/NEcFymickCKj6y5qb8HnROGb2+N0nvQZYvsT\nLpLythSHPkxP0f0FaO0Lr7sNBWEeF63d5striT5Bsv3RaIvTIPMfmWN/NffC\nMyD4uZkfz6FFZWJYzFNC958RrdVNSUFiPn7A/+tINvase7rb26vowuhPXTZh\nc98jW0ozthcYx3m+1M5gWwQRYpRUoRH36B8b67eKuHvXz7TbWCS7ENceM8/n\n35/HFKgOLaDjO2oQSr/qnHiFzd/IyKcdvuDMJDT15KDJMDQcm5H+PbNGaXRo\nSvcDRm/+8a/PrFWwbiGo+T93vb5DSpgu9HWg+gJvQN0vHxt3DOsdYqUJ/jra\nm/DsXZZSL78HDYkslL35uX3mcKd25ZXMU/VMvnSW5oZh7EEKbdmnPUWOmkpW\nFF8Si7DEpzgBS+EKIx0eQCbK3HyPACIszXUz/VzowLGvubbMsXxcJDzrt9L7\n7ZqQ\r\n=TRIH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"ff5245f6261b2936ec008df45794ac99654f7506","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.15.1+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"14.15.1","dependencies":{"inferno-shared":"7.4.7","inferno-vnode-flags":"7.4.7","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.4.7"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.4.7_1610541515878_0.7801209605883062","host":"s3://npm-registry-packages"}},"7.4.8":{"name":"inferno","version":"7.4.8","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.4.8","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"0d5504753e79903b0e4bbeff76fc11fd0b9ffe92","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.4.8.tgz","fileCount":36,"integrity":"sha512-4XwGe5Kd0QkSaM/jqAQWjM0GfDLv+KujcWm5zbIow80G1tOEnZurQqhyF8u6m/HX3SnrCi+njlVdtPKDJXQiDw==","signatures":[{"sig":"MEQCIGM7hpuzpYvbuU8AxbhNMnTYUjuzDjM78iTcvlicRbtwAiAycVZOEPdLznca1MgXtmLLRbga1sDWSt68umsUJslALw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":670687,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgKT99CRA9TVsSAnZWagAA/t4P/RWuaesqr9f1PolGyj8+\nZFiAT8462kr3oVW9+6t+BE23K1F/MbiTnKqAQuQLmdtT+KswavP2G8c/kmtg\nclDJwdY+hPJZLAsVlUA9VdnpShYVAevOtHrs8sTMxxF36xmmsW6YHI9rFgyG\nUGsSLKtRhwEUyeVeviBFOIuw8Bf15UB5jnvEKwXn8e/Pvd/hyZa2Us08M+XP\nkCjp8/6svhz1zbfdlGqlf0TPdC2OzA9RokoOnY+FMdtZRtqd5a0AToAR92DK\nOTXc+QB8vnQgOQbe/ypCXueMq8MFirFVVxPUrOkDFKXbTETjJsrouobTG6B5\n+0QewQOJFrsybXQWV/TJC1POIxD+4Y+GHXyayxZOrW/j6D009l7y7FSq3Dz1\nUQANweI+EqOHD4v5GmibkIZiDb9dlJAaCMmoi34BGnwVdPfpBdA/HSeSTTqA\nvt+RnWtmP4UjlIePCENLKeLxU4lkti1E8vBvL75q2POgGR51aY/NOhbaVKig\nUzYJPVjV4FIZT9DYuKm3UWh/AlgG7I7sP+fxfngrQcYGVzp1oyP9kMomuRFO\nZGh0pvnunLrgLr2/FAeHvKWQl/E5PR9jW2rI0+xI1ngYmBCVFtqnstADWt07\n8qb18NpawLYjoIHRJVXtB9rucLxpBvUPO1Y6BlEc90xlU/3WmD8ma438sVo3\n8zz5\r\n=NmgV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"521a4c39ca229345f76e43d6b2255fbf61b809a1","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.15.1+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"14.15.1","dependencies":{"inferno-shared":"7.4.8","inferno-vnode-flags":"7.4.8","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.4.8"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.4.8_1613315965183_0.3020528149351047","host":"s3://npm-registry-packages"}},"7.4.9":{"name":"inferno","version":"7.4.9","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.4.9","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"3722319b53b7e902ab194ad26fa6e80332d85c47","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.4.9.tgz","fileCount":35,"integrity":"sha512-YxUYo3CyFGRkeSne87DacSAV1yXOp6dAu0toaEkwxb4dIIMilxDmJ8ap0EKxr3ZnQpX7EKmGrLBXrkYQVcmfvg==","signatures":[{"sig":"MEYCIQCR8hKgtj7rJQfQn6kHDvLvviWovVok9wB6uyyF7wDe0QIhAPIQaDEDUC17bZGJG+XYUFw8YyYmw38Q0/DpJimnGCav","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":670265,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhIVKKCRA9TVsSAnZWagAASt8QAIfdW3CL6Mh4Gj0WFQt1\npBHX7R+LWQVnQWLY2MBWKHsEsuojcPsp6ByNYpsbfrrTHLkThY+EmDvhqbRK\noMp+9+ZOQNqA4eKyM07WrABW1MOp0nRBl63bDlx6h206PeC8AmJWUVRy+gX4\n+YXe0UHsrXdCrRzCr4nsr12TSL+ywvgstPAKT+XMEqAP5s905lPq/KjafskU\nzw+volQtl/6jIIS2ZYrpUrMogYuJg/ysQzVCgcXwtUb5aVGhMk0J8ytyAvqf\neX/JeFR1fMkFolOA6ZbHPXuUboK1vtq7jD4wWilnDtjYJEgMO4x8mmeWcFuX\nF7daZ61GgrUjP+QleV30u/ndUxNkoJdO25h78ncdxzGi/LZp6ZYkknil4KUL\nadS7QWydQfRXSeWKD+6EjeVf4yIRrOI1lryl9i9viUpjCv2mIIrBJF+Hu0Mu\n/JwJaDqWQxb+2JwkZvwuBmnUGf31bXjAK14HpjwKiQ2QgMW7kaAZLf0+UAab\nTnwBy4WFkGibvONtbLkjo8iXQnZnKa2UEbiksXRdUhOMK2X1Nn6YPhKzz01K\nv1N3rtP6xcKKhBRgxmaLzs2IX44NoWoR10EHR7YO1g2bFQF+lSpOjMTojLK+\ns6M5iRsvBGrZ6uR8QZlUV6M2BGVrs8O5OgF0wI5BvqPNXtQ+WFm4C4YIDqRm\nLzYm\r\n=F/9k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"7.20.6","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"14.17.0","dependencies":{"inferno-shared":"7.4.9","inferno-vnode-flags":"7.4.9","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.4.9"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.4.9_1629573770068_0.09461070545360828","host":"s3://npm-registry-packages"}},"7.4.10":{"name":"inferno","version":"7.4.10","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.4.10","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"edfeca0db7dd1790aaf60e6aaf7edae8fe97dc63","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.4.10.tgz","fileCount":36,"integrity":"sha512-L/qPVapN/b4WSrQND6fN0LOvhIeCVpGFQRbDplZvovOJoxRRZyE21k92tL/C76hQVFOp2FIgjZ7fjy9AnKPS+A==","signatures":[{"sig":"MEUCIGC/Onb6eE2MBqF62OySUG725xMUUvqRNCcIDyJZP+KtAiEAu64P/Q7onvCJ+vpWmmrraA4CcXvFTvEVOjbs3QqlD0A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":671489,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhPE1eCRA9TVsSAnZWagAA21UP/jcdXfb0pjQrOZQCmQGV\nsPYuaxgpxQsHsP4RE2qIkXCHV+dXvt3luGoQ17Sw3PeLiWyc17/Mc63OYIen\n1LGIsGSe1wKtHpJtR5zwpsp9fApP2NbkpR6Ct6mdItxKNuDJlv7okSL492vY\n6iYCEIj95blY/zmZyxGGXLGB3f13h2L4z56FFA3/DHHUaT5qiTdW0AZP7ftv\nJnsYAoin/qTCw60MvDFS2hH/R/28xwhTMQd3ZnlxnEnxE6mwL+pNqEKE6kzy\nlukPnHLoeTGTtHLdipcduUw/7zlzeWjcuCoCyheFOgpgPaw+ewd4bufcTefi\n9Ev8YJrLJlVdh9FzWcfSWtTCuvzoPzEC4sdPJKBdn6l1+nSEzlDnp5oe4fhF\nOqTuo4i/6eerQ/c9LkUnROCwwvkfa4yHCwquSB9ixU/YEIq7xdlzyLSoVryh\nB+6iSUb7qI4uaOJ2qUH1rmyEYSlewJu7n+34SPL8MgVLtuaH/Dtn5N2Y2F7i\n/S5BrByvmHi0M2MgyOvCIrLKUsQj27KkSUNU+8ker1ucTgWEER23ev+iDmEe\nO3dC0BWIZ3zuCSgrJLOCBaZBv2x8OSv/+3Y157Ca6oXCvkzfkI//AZE8ZxPx\nGHpUsz+w4L1Cxn3HBwmG8HPa67zQlgahoNP8d/l+U2nYPrt3d/jlAylJc+lP\n/vXV\r\n=lpUI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"50ee5642a8adb5f95432da69e51466eab9b11de0","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/3.22.1/node@v14.17.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"14.17.0","dependencies":{"inferno-shared":"7.4.10","inferno-vnode-flags":"7.4.10","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.4.10"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.4.10_1631341918649_0.9538622705395514","host":"s3://npm-registry-packages"}},"8.0.0-alpha.0":{"name":"inferno","version":"8.0.0-alpha.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.0.0-alpha.0","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"3c96d8c81e4bc47bce9e872065a11c352aa6a94e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.0.0-alpha.0.tgz","fileCount":36,"integrity":"sha512-xoiZML+/jwZnit4qGA5phfPpdYpZq6D0GxtZUQJea0nBIJeTkUsNVDGOpo19VufwLsB3gRf++Qvf0MEHIrDRGA==","signatures":[{"sig":"MEQCIG10t9H+t5Sd6pTtGstSkrgtLRDFD/f3dYowHnw5Cjr2AiBGYVZqaEJ63BfKb39QsAVqRskWjQIXGF3iSED9N6pccA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":725704},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"7df70a812d233af097acffcc336ebe9a84dfd831","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/4.0.0/node@v14.17.6+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"14.17.6","dependencies":{"inferno-shared":"8.0.0-alpha.0","inferno-vnode-flags":"8.0.0-alpha.0","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"8.0.0-alpha.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.0.0-alpha.0_1632312374928_0.05858125745963316","host":"s3://npm-registry-packages"}},"8.0.0-alpha.1":{"name":"inferno","version":"8.0.0-alpha.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.0.0-alpha.1","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"ad659fd3502b287014f07d574806bb713452b29c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.0.0-alpha.1.tgz","fileCount":36,"integrity":"sha512-0Q0BZnXijsBXqJ/MNFDzW5hJeCFMtib3JYPTxT+j6iNUF6Pp5jCJOGi3uQRTlXbCbq59JSZsUhCGHI6cVQflXQ==","signatures":[{"sig":"MEQCIFu3W2RWvIa5iY/Bm1flnhSIgebt2XONqN16dO8jUZOXAiBtqbymo2gWuyTUJYYSZCialseHvZUvVHfg9/G17bP0wQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":725854},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"62e55a7ba586dd8962aebe171144972cac0fc2c5","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/4.0.0/node@v14.18.1+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"14.18.1","dependencies":{"inferno-shared":"8.0.0-alpha.1","inferno-vnode-flags":"8.0.0-alpha.1","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"8.0.0-alpha.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.0.0-alpha.1_1635150753206_0.9079969966906243","host":"s3://npm-registry-packages"}},"8.0.0-alpha.2":{"name":"inferno","version":"8.0.0-alpha.2","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.0.0-alpha.2","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"258a030fc2caab2c3b92231a0927e00d35117959","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.0.0-alpha.2.tgz","fileCount":36,"integrity":"sha512-MYOMxKHBtnhglLaIS8rrCdcpA8BVlbWrPyzeD36N8unUHAXV/Cte01CxK9VzZ69zmpOZ9VYWKsoIkXoyAqWYiw==","signatures":[{"sig":"MEUCIQCKC7DHfgFOYkhX4pzqHTW0m0pRP8cWZCm+/v5ujajc4gIgBxvEHbdK9bLuDYa5S8o2iKBpnGskvCS/ObHEVh+6080=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":725854},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"1d22205ec3d1887d9487a111be6b8888507e1ed8","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/4.0.0/node@v14.18.1+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"14.18.1","dependencies":{"inferno-shared":"8.0.0-alpha.2","inferno-vnode-flags":"8.0.0-alpha.2","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"8.0.0-alpha.2"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.0.0-alpha.2_1635971869304_0.348886793875959","host":"s3://npm-registry-packages"}},"7.4.11":{"name":"inferno","version":"7.4.11","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@7.4.11","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"fcee308cf0e4a2f6066d96da74e3b425583bfc66","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-7.4.11.tgz","fileCount":36,"integrity":"sha512-N+cs33ESWI8fdToCd98yMRYl7jkLnCkJskxov3FKKlaKOvk3PRlAttbhmUaYdWXlRvt2WeXi+J4MbzNj3V6G0w==","signatures":[{"sig":"MEUCICD3Aq+z0BTlsITSgCgeegxgpNc50Y8ySR2MAOWcfp2MAiEAwpvypSW5Muvsp+j1YOGnfWgP1eHLYVpXrG17N/p0jV4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":671484},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"def458eb6f2ee735b52ce6509095adf34770722f","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/3.22.1/node@v14.18.1+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"14.18.1","dependencies":{"inferno-shared":"7.4.11","inferno-vnode-flags":"7.4.11","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"7.4.11"},"_npmOperationalInternal":{"tmp":"tmp/inferno_7.4.11_1635974589632_0.18718216298937795","host":"s3://npm-registry-packages"}},"8.0.0-alpha.3":{"name":"inferno","version":"8.0.0-alpha.3","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.0.0-alpha.3","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"36e02f99330821bb0d4965fab605e805396135b9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.0.0-alpha.3.tgz","fileCount":36,"integrity":"sha512-68YS0TNgHYZ5xbITwXjJN9iFr5hjnGjpGuVbA0yR+41rMPOzS0uL9jls+qNEgMt04EPij4Pk23lR3+bZBLXHIg==","signatures":[{"sig":"MEQCIGn/pjyyV8ZEgwa5uO8USKgopbxz8QvtFNtG2b+4v/zWAiA6wqSZxNRLtZjzd1bha99mks9y4j5WPZY5hBF/Eh5loA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":727310,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhnoknCRA9TVsSAnZWagAA4GIQAJ0LCCJZsQn1LcpCCMLd\nUoLwWH67dgmRuO9Uoy+z9auNhLTh9g/dHu2SKvNV/96dVRVg6KBc6f6qZ0hQ\nWiU6JhrPrf5TvvqLw8b+NE3Wu1M8+/IgqXG1lRpzzD3cYLzARk/16AV2aJ+w\nw6K9HOopCsLwThvbxwtPE+a41p+GCdxTsXEcMdu6MgAbcZB8di0TQlUIFYpX\nOQCQl0+qBXg+9Btepg2AlP8ZdjAh7mf285d5SrPLmc+ZU0B2YxSN++sDBspi\nDbOO1FsBeqA2W3GJ4GjBZw0sSXt1+o1hzveBpuB1ZkW0JNt1lOjFb9fq6SH8\nTpdwkKbLB86aBNAESQ642nkE9mQjf/lWpfH35pXc8/Ihf9bnGo0f14d8vbT2\nQsCJ2xZz/2FTYXFHDExV2fg6c2skBpSoJCGUBxhv+tEqIKyrVjahbdU7PBVe\ncVmqXCKowfEb3sLylXyuUqa2yOmlcYKGGQf/mFLyWnydlSGT50RsWk/XvShs\ncXUOwvU2RWg1QeAFp/RkQTD/Ozp20XzjalTLRsAqCQquCJl6y/0zwM3s/l2j\nVZUHHD3Gw09uSAztqbiU9GoFIPU6ipmsFn5oF+hk4QOHp3TwLSUPOr7+V1op\nGwXrnhrfcvFJg3Pn9q1xTRmEI+VYIGDxWfgxt+NvcIMvALc7yYjgebtUvSsi\njmNR\r\n=FH+n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"d44205cfcf802fd533cc9bd4b27d973fa44cfefe","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/4.0.0/node@v16.13.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"16.13.0","dependencies":{"inferno-shared":"8.0.0-alpha.3","inferno-vnode-flags":"8.0.0-alpha.3","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"8.0.0-alpha.3"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.0.0-alpha.3_1637779750891_0.9149911572411746","host":"s3://npm-registry-packages"}},"8.0.0-alpha.4":{"name":"inferno","version":"8.0.0-alpha.4","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.0.0-alpha.4","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"8364cf29f3fa18992bfdc75cd29ca751412a3787","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.0.0-alpha.4.tgz","fileCount":36,"integrity":"sha512-OqfDboNgSZJ8CTOS/PJk/Dgg18/QdBAzR1ndky0BgYBWRF1dL9ZpMUT/t1kwMB6SnUpZ1FMWpQqxEViEIIqQsw==","signatures":[{"sig":"MEUCIQC1Dw1GfeM0jrnjRhUkVvRyaePkcg9F8gb6tOAu+wYvKwIgIOizVOQ2GaMiIs7P7O+wrI8wUJ2hwUNwHUIw037N0Z4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":668909,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiEombACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrqyA//WzdlrqivpaD7vqBNGJy/LKJl5ClrcpNTT5dvtO1Dbca+WvnK\r\n6xt63zfxBu88xj7PNFBUr9PnEq6NnrqDPHeQiD/7lLQajM15jVicuS3OrK90\r\n/TQxGjV3buRQivFPEPmS2GKaovWJSlvmQRItodwx06VnI0Wj5LZZz+Af4ro3\r\nYlHtlRFo8u0N3TrLKvBxGmOSgD60DxVh2K53NbtpLJMuoVPlshv6FIErFKml\r\nlpqT8kNR8O9PJEi/IwBJCpTt4opbAXJUk+37T6InP4KfYTncZ3fpOgOSAtyp\r\nFTVrXDQ7mpa0KUhsJmcdiE6IsaI77lp5UIxsjPuyo4hW2yoezzkoa2vhq7HD\r\nzQuNtN3z94nCPJMxtOpMRds4x0HzzvEDFiazQtvtJtiwyBRINHDcnGCliLLt\r\n1NLUwVrmZZIg/Uaz9RDMRV6kkj5y7GFkdYFOvq+Jq7ZiNfvT2XXg1OV53hdD\r\nF9zNcctc536cFvju0I/tgzoro9TG4nj4Y5R5giooPFq1zteeEsRAM03mRhYP\r\nFtXvhRTbGUW6m3jb0d+Nz+QP+3rGTZFwPkphi2uuG1DKCROECKVcmNrhz79g\r\nLZvIh2cbwsTmmzhIzGagVtticXRm1vpSnIz+qFU7vyprsiMe1Hm3u5tANWqi\r\nPmvDY3C/83xunymCIcRA4m0Bf9TZXtP1VwI=\r\n=Hnv3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"0cd49d3658ac9dd0b8138292f4e5c73958c1c12f","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/4.0.0/node@v17.5.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"17.5.0","dependencies":{"inferno-shared":"8.0.0-alpha.4","inferno-vnode-flags":"8.0.0-alpha.4","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"8.0.0-alpha.4"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.0.0-alpha.4_1645382043000_0.16113757217375313","host":"s3://npm-registry-packages"}},"8.0.0-alpha.5":{"name":"inferno","version":"8.0.0-alpha.5","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.0.0-alpha.5","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"540a99eed3e7b70651ce7989d9d5160162e69981","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.0.0-alpha.5.tgz","fileCount":36,"integrity":"sha512-LcOmgL/9h+V2gC8rfynquB2MTEJf5/AuPNkOCUwxLlY56BQjkANZ3lx2+BuolJq5nOORdh0AkqbtFYiEYOOBsw==","signatures":[{"sig":"MEUCIBtmKozc1Dl3bx249GFQaygxfAIzGKJi8wPJOQDnoQB+AiEAmBSHVGAEXWxEG515Z58ZZKX+8/nomlHKk9F2WOD9nNk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":668965,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiK0BwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoF2w//TJWUuLUIXZ4TSsDGxXLCl7szPex8xoVdrOML81R2c0CgOnmS\r\nGCPAeMtEZBrC7BepbqFRLqIk04Pa5A4a+T0pRtJgz0V6JhZbzC3PUKs1Ymtm\r\niW81ZkV8OqrN9qVy7RY+OeNl/Qxyovos9CcqBjUJ0NiiKFJTDdcyo0jBeNB+\r\nwG9hMlAIv4ef000k9cAwGBRW2LyjbDPABLSBX1gqyPzUd93zR+GYXRPhbqHQ\r\nrDK2tPxxprc9d0VKT06tEKBz61fKAlFtDvz2DQEtazY/DYS1DFnHxu79B9To\r\naZ33l5qJXjvMTqqxB7iJlMbt5yXFBM7K+mXYmauaCRcKOdPnQeiXn3zx8er5\r\nNsnIjVImonDGj11NQYnXN1mpaO0o/N6Qj3EHrdxvCYXme/+puePWAGpS4+XJ\r\n2WrLGpxnzI/Xs9HJJRfIrDZxaiI2EWWvQOiM3I4AQ56nv5L4oG73w6BctoJU\r\nwiggAL3uUeW3oxYxUbYZRHxodc1jAJ8V7x5SK64+dk5JnFFL4AQuH7CDV51G\r\nOTb1L2Ntzgke2qu+vL2RouMIaz5lN/MX0NH6v9Wkx3qt0tJPYkBS11hQ6SFp\r\n36PO7Fb707boVO5u0giLS7MHX7IIu37ULcgz94S+XLulDNz4n6k9h3AJy1GS\r\nDiCsJlmrycBAg+M3gQV8dGv9Y4eg7jpRpVk=\r\n=UUQv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"2dc9f0fbf902b9078cc25d47052475d4d28ea010","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/4.0.0/node@v16.14.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"16.14.0","dependencies":{"inferno-shared":"8.0.0-alpha.5","inferno-vnode-flags":"8.0.0-alpha.5","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"8.0.0-alpha.5"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.0.0-alpha.5_1647001712270_0.8593406296260571","host":"s3://npm-registry-packages"}},"8.0.0-alpha.6":{"name":"inferno","version":"8.0.0-alpha.6","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.0.0-alpha.6","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"392f86e2b40b966fbb3b98bae3c9112fbadfc166","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.0.0-alpha.6.tgz","fileCount":36,"integrity":"sha512-qRignl7Lttceb/5y9WVzoRU8slS9WSNxT/iG1sUC8vHO3u2vstiq7wVXEWJmVOfI1yUhlQGcTldPDu6yedoULw==","signatures":[{"sig":"MEUCIQCsA7weq4yCyevxoQZwf4xgmb8oNWAW2w34aT/JUCA0RwIgNhXsAeXVY9fOVBujUIF8X9szvfSqQCRhkJou/o7SZ0A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":678123,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijUm3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmroCA//Sd/KNyYa03bL2VJQC1+X8gWfwAkMwYUq70bw8Nw/ReRf0phB\r\nIxddHhICtQ3ajZPMyBO8kMst+W+SmgqqS7pOfxiPr9Cx1Fvujqs9VxZJY3B8\r\nNdaEjFNlwBGAt58UdVu/F279UwC887d4Qnmyl3X7tUOM5y9AEN9ENi6dxk/+\r\n4JnR2aAUVtiVapr5M5bM2NKGU9A6vY/8fK2VUbkABhQDN/zyFXTOkAdVVoQW\r\nD0IU6tF9tSM1LHuuFi+8BG7b/Cw+I4xjgL0LCYSkbLkzwntQ2jJLO4YEcZxu\r\n09+RYEaaslrE63G1bS3IcQNt8Br2/rU8/rBuLbE/nrzJO7u+23HVkqxoxZI3\r\nmvOR4z8hvvNxzoYWUhLOKJYe2AqxrbpZjNY/IyJ6HVnU1RXvgVgEobSA/zQt\r\nE0MEX4ctWktL0rQoCiS1TgGMX8TWteRgpmpOfqAyjHwzhmj7DhHZimwdXPDl\r\nhYN5Xou4aonWL6CruhiOcpTG2pf0F+aa60dLtko/L34LyARKGX2MoH/lCnpX\r\n2jqHe8GpNTXPg0x9Ss1OGw24re/b69qapxcTtJz7i+sbV+ozYb8tv18JDE9u\r\nJdEnyiwbidVoiF1w4EbD14D88IoX49R60K6K8HAEkWKn8x5+eMNNbauEPSwT\r\nK+IGRQzfMqt0uuuwjqWu4XC0kFNU9bGKdwI=\r\n=U7jh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"18bd10ccdbe70ae60116151c34034678f098ac14","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/4.0.0/node@v18.1.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"18.1.0","dependencies":{"inferno-shared":"8.0.0-alpha.6","inferno-vnode-flags":"8.0.0-alpha.6","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"8.0.0-alpha.6"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.0.0-alpha.6_1653426615601_0.874241516852595","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"inferno","version":"8.0.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.0.0","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"06bef21d5f81d794bc0356f5676326654619f68a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.0.0.tgz","fileCount":36,"integrity":"sha512-VrO86gl22DtuATQlr6MUdZDWyo5L0JXngk86wOjcGvXhf2oNxonZa2dIQUd6xsVlVyWR4WLU8D4fGx8YWzDJiw==","signatures":[{"sig":"MEQCIHNVRdmEI7uAAtkahKuvsig88Zj0otCsDMSJ0AQpTw4cAiARwHgT4EqFTBK/kif/yUn/G1OCnynxN9UHEihyQbdZBg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":679072,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJirGehACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqrjQ//Zk3qBeF5dsp8XQgZDP95bWgjEACTV5AkIU03B88Bh2l0TqH+\r\neCRhwJVNhU5o8KjpnEueJ2rs5vmDoI7P2n19Pe8P3tL7ddjR7PbGPNobTJhv\r\nT95gimM7HfZDVRoBn3kjyXafo8zQRPjR5751yfycJdLE2Ek8qc76bLfCsHHN\r\nCBcdMSXz53oBlMqy/y998w0WydIUnOqMQvOSj1hQ27xOQOaPHbNkxHJm6C1o\r\n/23hjcGXCI7DcaYnfXEJMNletLLgKbt2UQoVtmfRfyLA8QqFcSZM3Cot0SAy\r\nKhTdUu/jNCGoVhPpE7WmAuAfq/39voUMVaLLur2UOzYsEwPkBVfE1ybz161M\r\nhytPdp5jol069zSWjVzZjT2Xebty1cf+wHOrul6A0c1JDFHyq8Ij0izFbyPp\r\nOx0kteiiM+sPfoZrRo90dT2hXDeI6dH+LsFJM+sFiMwHx4IAt5mcqsvJWSpz\r\nyBGaPnR5c+TcETA7A85Cip8ems/1fFWIsQbAfdYg/wn84EAdUJTeQ9NR9qqy\r\nI5Jqvxg9RvhzkxqBXQgABD9nLyUuMVhzCl6LgGT2QDTXi/2Z1DElMjr/+PKr\r\nE4RWooNx9uxdB8fltpEIvviRMxHUwW/l4htay6Hp8PloXpDi0mLDCOVXtlY3\r\nFjwoJ3M1YDkQEYqn+fV/LLx4EK0I51CLLb4=\r\n=prlq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"5e7e804383b559ee18b7c7e62edc910c492dfd61","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/5.1.4/node@v18.3.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"18.3.0","dependencies":{"inferno-shared":"8.0.0","inferno-vnode-flags":"8.0.0","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.0.0_1655465889382_0.9897692864126646","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"inferno","version":"8.0.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.0.1","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"cb4e3c1076502e0afdad2785cb9ae6365265af84","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.0.1.tgz","fileCount":36,"integrity":"sha512-WXdEcYtil/WnMlMYHDFGFUO0g6+mavpgBbT8mxE7+72ScUnnDU1CNki2G8FTwuhJnsnzB6c6t1LbzO5mKiPOiQ==","signatures":[{"sig":"MEQCIC37Ng4pLrGXedMCI8gh4/75xnnv2ykxgkuHENal8ljCAiA6BnSPVQEu4iOtkyvZq4GLE8eEOYyc/PkwaRrRx7sQEA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":679038,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJirsOCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmouYg/+NPF3tH01gujIXd6u+HRIWiR5Gprz86085new9/tCbtc5slHN\r\n5ij0zx0W0KfLwJFJf8Y/uBNznC1QX9AJQdmoFywXL2j5diuLfF9Z42XcZqPY\r\ntGtS5DbTN9U6wUHdKaZ8musljD6BgSS/W0CVZxbtNJNDvax04kqmiUYUrjnl\r\nQ0+9sSTJqAkXTh2jOgukJwlfuE8EJks9TUYwGaJPGjTZmZYTdu6WM3tTnmwr\r\ncoLe8juVfTEyJ/8Qnq65caqBuS0yh2QndztHLoaXJ5+ayvpTD/zSR+Z4uUSZ\r\nJYersvij4KpEtMJI4Jj/zdzJ1axIQIgphvOnYGqvf132CN0PLQsXdIupXhfM\r\nhfiO3myAAWUX+v595Az23KdumqsKK0a53r6x23TL7IELuBWf3sYI1XVt5gvL\r\n0BdGaUuy8aADFsNzsfUcq1iH3+HmRXHKjD4inj71pJLWrvJuea7gpqgGbrwN\r\n2sv3Z68cODXqqBNrPD7j11rdeRr1IokxkXOAFdi0Rj57b3gBBvpvNViTeMig\r\nXa/LppoAW7+6H/Lv/i6IkpT0MXEMR0SgaVXtKq+pOo6jHUyOjVhh4MZcukvQ\r\nbYJP0xwJFOlTJBGM0nHX7Vxdd7UHvvJp3ep1iX5dOHfJrzNGdVYVjwNP7g80\r\nUqKFboiW0+SOOpaoHC19+9maGf1ejJz5g0A=\r\n=M7oT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"48d35cfeac426bf36159d72d027156582a358d70","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/5.1.4/node@v18.3.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"18.3.0","dependencies":{"inferno-shared":"8.0.1","inferno-vnode-flags":"8.0.1","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.0.1_1655620481982_0.19700991347982666","host":"s3://npm-registry-packages"}},"8.0.2":{"name":"inferno","version":"8.0.2","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.0.2","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"3f47d62eed4ad41efb1e53d00d7d990241a61fa1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.0.2.tgz","fileCount":36,"integrity":"sha512-o+yiSXUiICB9TX7glHckGky7rWx0GE0/qYWRvhrp71Re/6VS8e/5HjIY9x/OKmpAgB/4WVevjs6mecYSrfXAmQ==","signatures":[{"sig":"MEUCIAUU077PBNMrdQFYC4OmhghyP+gDlDbHTg9Qc+5ILJ57AiEAth+i9Hi2brSuiF7STtq/OGVn27YaN+Vo+ANyt6lg7CE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":678829,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi6UvGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoACA//aTJRAXcCPC57V1OU3Bma3T0Z/Vm0W7CzCB/vjbWkXTZeE9Ef\r\n36EAVpx/iyp2B3TK5c9CvsTQ6hxx+IbjtCOEbtEnAT5wOXf6fDljPJ2ubrLu\r\nW7FB6cd3MWdvGvdkt4IYiBjchLHSvY5Dwn5bLTj9nZa+cvwwtvsJbeTR4fBF\r\nZwJs/C3injzhZNh7QPqwQm6vW4hmMWZ9eSj76v2c76pO0g+Zd11A9VHjCJFJ\r\ntCgnvWlotXolie+YftJuhkUlJDEjMD5S59av9Q/6wj4G6Px07b0bL3/JrpaH\r\nQyFHp+7mTrZqUW5zvOm9tCvcSA9qJUY8+XY3pNhFtXCBR4y/MYahT1dRcwV2\r\nxRCiJ57KOqDFMvlZxBUKDDD5KFzGBJYGeqNTnwQ0nOhZi3bieteA1s9bBptD\r\nQuJhg/72o79P5IcFyxCyOWUgiwLRM5x4CfIX9drG2LiOsGM/IvqZhQAb2Glq\r\nuDktr3Y3vfJCDt8vBYOfndleLftpfgD7Mt66x3qsKvdpQ21odMbNsG2EnItv\r\nTWKTjw4D3EBFzB2e9Eab4wntcWE15sy9nrwsIyGqIpmF1E7eo5DEPxQfzt+M\r\nFWD8jTMVYuwh5e82YYYdGkHxorMjQ+YI2EwIhpxJZSPA3udV8FXpNGAbdexd\r\nxooXzMGn5xINI9RKbDkA99EXy5ku3dKkZQE=\r\n=5Sd6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"bd8e39f7837bc68c447779e00a5ef3c98bb0ee76","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/5.3.0/node@v18.7.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"18.7.0","dependencies":{"inferno-shared":"8.0.2","inferno-vnode-flags":"8.0.2","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"8.0.2"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.0.2_1659456453885_0.1606147774501263","host":"s3://npm-registry-packages"}},"8.0.3":{"name":"inferno","version":"8.0.3","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.0.3","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"99124f050a9c60995dbdeef8ac258a936df7e62e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.0.3.tgz","fileCount":36,"integrity":"sha512-EZJyGfnlNoX4rQj9oX09ZqPmG8Ejrzqb/Y5O1D+QBN84VJ8uQGTqhZdmz3n7mhUnSyHg7VLt+rlbLnlTI4bs4g==","signatures":[{"sig":"MEUCIDsu003ISmscN9DFrBwmcmMPr2zl9sZvKXZgRzstXFUyAiEApwQmp6SAC5dHqj4JMiaU77fB05izxRs31t2naEY4Wr8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":684655,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi/mZCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqiTw/+JtOzS5WWokzhgjPTCQqmQm568onbZ7uuzj0qQnCcwtFotIwM\r\n/qsx2gz8qWZcpEkjs4uN3VFn8X4YsAqisDLd7clc3Lbp5diVIr5saLGkky7f\r\nPQ+cniBdrUxFQhidcMt/DAb3KiZMySmFteNqMI7p7PT8niK9AGynQ41Xgayu\r\nQYzaVSBHV/ynpacQ8I5EbhVQ9oocxDQlagtq6fpJxJSpGzD50VJCzm+6RE+0\r\nmEKdRsDRS+OB7DoFpmn0syPLdusJpl7066wHLUmgQLbd55w/g3EqXTFZeHCA\r\nmjSA7Tu3lqt4uqms+GjMizI9fx7QL6+erf7dja/c5EI5FpFESu92jQ5j2VLy\r\nAyTk8Cns03uq3miFZVmHv6qReWozJWDjnMd7wOmXHZ2Vfca1Xk1tx4dmotvc\r\n86fd/XGY76YBrHDX6ZulxFjPUvCGveAEba3Dh2Rysi1XGVDo/qqCAlpOIgGL\r\nXqD/HIXCVRYfUHo2BnYHNlatK0vde5DJfGNAFdwHnqp3ElZ6Mcieq1UI3RSm\r\n3RvEkTNlkC7q+CQR5d+v39egJkJV5ngRb4BuV/2gyYDBZAeruUU94TPvhfEe\r\nO3R+zWjK58TejS1tzWfo+h+yu1eQaGQdoHM9BURV3i/7IKE02URBzUDoGlPH\r\nu9KHwNlD6ELcR2fpHiq7HlqtQDJ+HisVQpk=\r\n=U63M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"9734d7259ed85fe405530c9602696ba588a8cb86","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/5.4.3/node@v18.7.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"18.7.0","dependencies":{"csstype":"^3.1.0","inferno-vnode-flags":"8.0.3","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"8.0.3","inferno-shared":"8.0.3"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.0.3_1660839490707_0.37983349405086964","host":"s3://npm-registry-packages"}},"8.0.4":{"name":"inferno","version":"8.0.4","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.0.4","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"6dd40790bd80051cafc00795d46650afb3b9b2ce","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.0.4.tgz","fileCount":36,"integrity":"sha512-wz3HppU44Oq5187XMgdoxdHF7jIgn38xGKAmGaQGAyOot+K0W+mMZBhnx0/wqHujFcdpxZIPFI+D/EyKkURdeA==","signatures":[{"sig":"MEUCIBHwuMdapoB2OO8e7uHWedFNtl9spmoF3eAlpuzKYbNBAiEA/9LlRJG5tFvWKk6CheiaMsshpQJ/oe3423nNBoRNFDE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":643246,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjS/QnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrZ9Q/+O2qXEr7+FEXoTwlaVYqz8zeRZn1ch0nPrJpq+whZzyn2Y+10\r\nmeIZerGbBcbh2ZVmou6uZNHVh/8604mGLvLDbsn3GvkwmrX1qs6ofixgAzLi\r\nWBBHmMHKlZ1Y+ayPVF2VkzUS70lKhC0SHYuCyXgWP7DQ4DxQD0AHk5p/IeOc\r\n+ISbVwZFvvR1QHjjOqmwE3r6+25dcDaaktDaf3u9NEDatSnyC4JTPk30Qy6c\r\nJT+B2XBxOj3/84N776XNVRX9T+lRZGtIJdvGuiLPTMomPkT/CLWmZOLDXTd2\r\nHN5tc8m4YcrA6EHNEAnj/gIz0T0GeGpefxlZdr9eblMzDIAdEL/utf/U7XmX\r\nX47l7H75FwgY1Z53wIw0fHxTqNpSsjmcTCU0mephNVXCIMmSIDkz3RsB994h\r\nLVyCpc8Y/bHFJz1Czs7oR33XGm9jKS5cO2CdKdQenQ9E2VyCXhAfLlZRRV7j\r\nHLBqJo++HGwvs5pvQf4irqEXBeKE6kjSyeL4zsM2rqkgVZztMBnBhNZTjmYG\r\nmlnrBnnJCsKPl3R8om5Giw9V4vREJNr/oMC6/j1hbMChPtpNLk9mUYaZW39f\r\nPpH/gz6MXDmZFBIVmnmNPyDU3A59AO7jyVz8+xkqO63oHZGqHX4URy8Qw+Pt\r\ndUuRlUW4AlXdJevy3COkVZCeaUStKUFAYMo=\r\n=mFfF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"d03e86ca6b7863d1dcb79adacc4d2dfce45bf0b2","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/5.6.2/node@v16.17.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"16.17.0","dependencies":{"csstype":"^3.1.1","inferno-vnode-flags":"8.0.4","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"8.0.4","inferno-shared":"8.0.4"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.0.4_1665922087642_0.5164511234591123","host":"s3://npm-registry-packages"}},"8.0.5":{"name":"inferno","version":"8.0.5","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.0.5","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"6c480b92eae6acdf2eba9d4986f98b2b71349977","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.0.5.tgz","fileCount":36,"integrity":"sha512-dg+h9wdQOR34lTSh9KLhV+62wdnWXI58e7nam9YxXof45IBzgWsKkVuGL0Rp0DkioPNA47bT3v7MvbsGgL58Tg==","signatures":[{"sig":"MEQCIH72jBgnxchxOOgHjQ0J/Vs8xBAtw4rKw0/w5vAyrK82AiA19s4iCOhoqSCGT48YhjC7Iek3M6yup0KEy01hHemOhQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":644376,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjg3mJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmox/w//ah46VHVGE03hpt2zM9x31mOYkhdJVH5oEpbHhODU8LfT1EFC\r\n0ZYSiehHb20As5kMU43aPfoA5nww2KFguH7e+EZE+Bmc846FDT5zM2ZuV3Qn\r\nPVxDNcbskQDPbc+BxTsyZidt9Dc0C1ff2LkHV8yG/yIqvYpgaQvZq7Mj1U+W\r\nEgid7nRdpmFcPlFmMK8zD3ko5006RTC0wRIrJah4VaJUlWqSbqQs7gyzFabq\r\nD1FqkmgDV2fl6IFfYHjUWSgNsz/EdbeS5X6EHThGWCt4X291mNUUyTAERM+o\r\nJohWgLpC7D1XFCmHb2CUF08kk8TTHTI4lLEGbR08JBnC1CNoSzzqv8UmyI6p\r\n2yQZrkea90/GR0hano+ai16IMgW+AgcDt3C5eY5VFjmSdFiO1dxdTG8s1Kgq\r\nUXnlOEj0DKhFewgm+MnshBtFH20fuTY6VPnVzqULP0nH0SZG0IjFZ+sz40Dz\r\nsTxdbai9eaytkkp7eS178TALnPTJr1GI7mSgrjk6lqdjNWc6C8xZU3Vtk0ai\r\nTs7LdnqBKdEgQ+b/N0/ShK2sr8Ybw4i7wrY7waBO9kFz+hMS+rSX2qYerAnj\r\nSPnqJltSVtwMewzuI6Je0Ylsi1nUiyjii96Uv+ObCQVEy3/0p7KgSSAvG9Wb\r\nhJ7qB8ZjJu71spJ+ngGfHavu1C8Gez46FIw=\r\n=KJuO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"9a7b2c06b1894cde44d0762410872d3915803a4d","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/6.0.3/node@v18.12.1+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"18.12.1","dependencies":{"csstype":"^3.1.1","inferno-vnode-flags":"8.0.5","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"8.0.5","inferno-shared":"8.0.5"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.0.5_1669560713503_0.42740273793838957","host":"s3://npm-registry-packages"}},"8.0.6":{"name":"inferno","version":"8.0.6","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.0.6","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"df51607cd3f1dd3dc1a4d9647881d465f346e935","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.0.6.tgz","fileCount":60,"integrity":"sha512-hHJRPi6On8Dbsh7WwIkZXKs4q+RrK4ewIUbAHZj7Gfagb5uXuxqH5eGbgkF8ayBwxj6PYp8a2slEFnuEGOs03g==","signatures":[{"sig":"MEUCIQC01dPk+7EfnNbEm33k5i5QfA6SG2Z3Lm1Oy+HJb6ActAIgLCgv/szwaAV2w5VW1FjeqtJmtAH08VPZ5BKTGyON6QQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":741329,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj4+R6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqdyA/+IOnL5uGOspdqFsXoK7zTlFsi9swxwB+2lgkUcu6obrOjZT3E\r\nw6LQrkipJHTP68zM+rNPmlBtC6l+Fm0vQXP2PeePLEI+iBkNHE65Be7WD0yg\r\nuUhnIvfy5KgAJjVlaNRA8rYJaU0L0LYUKgLMbEhheBrPrd8ZMoy+63y8bZKd\r\niyi1qx3zu9Yx3I9LpKRxT6etIBVP1aXd5PopNpQJdCsK/NaJaItKV4lXLRgk\r\nYFLgUeUbtOBWGONk3zb7xy+8I3s7NOKIW0L6H55g4AIhheEiCz5iHVSIYiaK\r\niMVYLT5Ry+lquKnGXthGdJbfaZuxL/8UqwiqT/Oy5C7p8ht4DZ9xPPwkwcnx\r\na4COR80YzC3Z7MKk/NfXlfoHkcq8cZqLvuzwAjIJBhbrKvvyIoqXRF24I5WL\r\nZIS/h5c5/Mbs/BB9F1wquNj6Wpr65jqy6ESn367vMOSFA2feb4n0rAuGgbiO\r\nA9K6fHv3SYWt5s8PcEtXrzsVGkx0qAM8uO01GvwH9QmbfSZTi9b29Emjuyhk\r\n/rpolI60elAYHqS8pxIqoTiklYlHBnqNiIOWR8BT/Hpy3KqWs8s4aUHgT6T9\r\n7jPxmOcaNTJaOTDD2B1Tbb2jQEvVEejSvVWgTGfqrpwy2rM2yAfL6cyujKB6\r\n3csnELpUSim0VAWx87ZANRkqqh6jE+uAJpc=\r\n=eZ6a\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"f4a4e3b06f8853e9d91e7380aa9c94cf09c6afe5","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/6.4.1/node@v18.14.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"18.14.0","dependencies":{"csstype":"^3.1.1","inferno-vnode-flags":"8.0.6","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"8.0.6","inferno-shared":"8.0.6"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.0.6_1675879546284_0.6615912185385338","host":"s3://npm-registry-packages"}},"8.1.0":{"name":"inferno","version":"8.1.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.1.0","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"8c5c7c5d8a0972a93022dc58b004a80863c0aaa3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.1.0.tgz","fileCount":60,"integrity":"sha512-LfyC5zOejkBPPnnS4s5qGvxWwq3e333BTE0N4vDwgWzLXTY8s46XmF1L3O5dAML8JLzCko5IPquBzAUbig8rpQ==","signatures":[{"sig":"MEQCIBeECekgrdPe+pYmpZOl/0tEZ0FBxWTUIiEfHpKJcSfQAiA9Bkh6njmA0xwabHf8LNw686tAB7qCg90oCzMo2ZmcCA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":743945,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkIAH5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqCOg/+LejwgtK7ymfT/XT6bBhkfuGfTpgq8hr+6EE1VewchKNy2Sc4\r\nQME98uri/KZnvSXyF+CzY1VQ5nPzu/6F5YV4GXK4kO7CeSxUS1ux0haOXZCr\r\nSrdC8zKvWfkChB0ecfAKBZ4vo6o4nyb1KcowI1ameyxLxXUajg2U0yniV7Jh\r\nO7SnxTHMzOqKMZffzS5PkCnBkbb2xhD2eGsuUSu6c3vf+ISe0LEmfWjiCrDH\r\nGEo+7Fjb/6D/IuBWoovHqZJu9e6G03PYi9SePQaIWK2OHoQZzn45pG2f9Tvj\r\ns7odAG5gVMvhmbXQFH6j0TyJmb9t0FfR4RTLe000kSJp/JtxwhkybqFcsQDZ\r\n2Uz2QGnhYWQWEDLKaTvBu9TiucjLxg4TPuZfESB6+bA5dJdss0XcFBwKHg0+\r\ndH1u5BQI16hqwzeDlhiPSdisR0bltaOKBLWSL8d02Yi8oe1u8MHe+0tSGaMw\r\nqie9vRSWOPrBEYWUYjdN5Re+DZVqvK0mhucLgDJKB8zm5E8tAmxLGCtxffAB\r\nWT0aeZdrkGDANgzw6emf07iFK1qJSEdSCQSOcJ3wu8rUVD6D+zRtnSsBvtuX\r\n+jTBgFXJiVjbPw6CC71vZrrgBgg5QhjcMGKBp0Z2cnYnzAV81Obv1NUykF1Y\r\nY9uyl8vfwbWk0cJLYa9f1fMmh21kT2Ocwlc=\r\n=avgU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"8f708bf0b97c9b89caf1b6525f225f2a1e1e4a24","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/6.6.1/node@v18.14.2+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"18.14.2","dependencies":{"csstype":"^3.1.1","inferno-vnode-flags":"8.1.0","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"8.1.0","inferno-shared":"8.1.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.1.0_1679819257033_0.9932226428216524","host":"s3://npm-registry-packages"}},"8.1.1":{"name":"inferno","version":"8.1.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.1.1","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"f2e7b02eb32e7fb3da0f8b4a5a38640979546c0b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.1.1.tgz","fileCount":36,"integrity":"sha512-PjpQkS1uYLeK8FHpMBgJi0qE5traFZs/jpgk+Ddx1Y7HGp5kneyus02eajgWzPM4imGYf6S3h+qbjwSXGutveA==","signatures":[{"sig":"MEUCIQDrFqukK65FFx3pw3L2BP1JrRL4EQlf5m/CG/Sov4RiegIgdeLqQd1evOOQdiSZUNdjKeVMLetf9b3xT4OSCu+oNmw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":657196,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkQEAxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmodsA/+IYzwR5jWz+xoXRRlasO44bwqDTOSGXQIxEjRsp3FEJas0xNZ\r\nlFzLjPEEf4ets1lKx70thmlesupmaXdcZXiGmVKYFWif+bxpv35y5WKcdr+H\r\nYHRt2TPbrwx6CW26L0P82ooa+POKwAIJVmjdy41Mu4yJWi6jxIFj69wgljPO\r\nVDz420yXcq9CrFJcuwsiRQFc99E1rqHVVgrlqcgTr4QtGfwz3/nN5ch1WALr\r\nh39WhzA3KpFapMNpIJuxjyvgfD9XCB3h2weyYkhfI7RHjRkG/SmmbLiGbOjD\r\nlKo5J2tLjNickulylOBE65/e0STJ+hpDq4u1va7vL2YNyunHf+YwlXvA7qxo\r\nRuzxYJJTUBrDLdmOsKW/GgMWxjypfrvJ9aU5q1CO5Sitz/4dlqU7ucYeSjY7\r\nKMpcoRqUkeuyo62PABEZlwEnwuTb+FPjSHHTdsP8Q+rsY43luvqeIFE0Evam\r\nBGkj4/32aLb6H111Nplk5gSV1NcaoZT+aYsWQZmXAe0EB9Ch88gFmWRr2RDx\r\nIFKSBLzG6tqHz0QFVbF4Spg+1/mZhYybpIk78gJy4FT9hSrY1qijVew4wwY8\r\nrFMYQzoraQbk0+zf3mm0RKSl7tjGo8mDt/lKMtXYAauwVOb/KCAcG24hmiuj\r\nHE9PBSyZADlhJJR6kZ0plu8lImSsvx099Rs=\r\n=hrQX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"43437ba912135a7d941a70ae8d3d448564955e34","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/6.6.1/node@v18.16.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"18.16.0","dependencies":{"csstype":"^3.1.1","inferno-vnode-flags":"8.1.1","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"8.1.1","inferno-shared":"8.1.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.1.1_1681932337530_0.40053791030885977","host":"s3://npm-registry-packages"}},"8.2.0":{"name":"inferno","version":"8.2.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.2.0","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"872312fef9b07cfaec748b1e2a8c0adcf4d84b89","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.2.0.tgz","fileCount":36,"integrity":"sha512-Pz571E+OV6uIfVyzBaOhHxiHJpUXmGjXTojwtiXuRexz8HxZZ5lBnnyl2U27UHJOl7Kk6fdPPT7gs/8q2JMNTQ==","signatures":[{"sig":"MEUCIHpVGXIF9NukfRTdexKyhB+j17uGsLRbBBsFWaQMZCOVAiEA1HgRDSa20ksBm67y2FwY/9EFSHBp8Q1mmN3iN6jTq/4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":657345},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"b300a894b1a76ea5ab11cf41deecc8edba236e52","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/6.6.2/node@v18.16.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"18.16.0","dependencies":{"csstype":"^3.1.1","inferno-vnode-flags":"8.2.0","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"8.2.0","inferno-shared":"8.2.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.2.0_1685023005419_0.7007725006422127","host":"s3://npm-registry-packages"}},"8.2.1":{"name":"inferno","version":"8.2.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.2.1","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"b374b7578166f45239edc72d3e2b76761325f9df","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.2.1.tgz","fileCount":36,"integrity":"sha512-cg4CYcIhBQoMOWpazLBGvJV3J7TCHCG2RTfQDVDFVtn6BIwDFp7xqpI0XSCVuo4GAUfMG9G8/cA78pBoe4PuKQ==","signatures":[{"sig":"MEQCIFxZAPmKz1LNkI8x8NoSJlTo/qd7r4E6Dr3A9Nyyj1NGAiAkAjBCOsUPwJUbOx5O8uo4yoxH/lMt0EqOKZGt+4uGEg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":657379},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"b87ba8e372921e63242032d41f0b39e856f599ae","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/6.6.2/node@v18.16.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"18.16.0","dependencies":{"csstype":"^3.1.1","inferno-vnode-flags":"8.2.1","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"8.2.1","inferno-shared":"8.2.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.2.1_1685263017661_0.16186410928660044","host":"s3://npm-registry-packages"}},"8.2.2":{"name":"inferno","version":"8.2.2","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.2.2","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@live.fi"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"55d5491937386d9d683a9eaf7eb2c6c31aba04d4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.2.2.tgz","fileCount":36,"integrity":"sha512-KyCPnsK6eEzAzC6Ulmkc2S3LQSZC6DJSLHdH4zurK2DQ7lyu7e+Q5SziG7/qKufhWtCUgTwUHVzaYk5E2BzI2Q==","signatures":[{"sig":"MEUCIDIpTBwXWm2QicN+3jeFb21o8zFqUxOMDCi/weeYWDVsAiEA+KKMKxYPgc+KHC/7p/KuSNaKMfCu4btaznPy0n6Y5cA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":657379},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"cff5381463171badbe5f23cc19d767ac508fb80c","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@live.fi"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/6.6.2/node@v18.16.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"18.16.0","dependencies":{"csstype":"^3.1.2","inferno-vnode-flags":"8.2.2","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"8.2.2","inferno-shared":"8.2.2"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.2.2_1688117665057_0.7206932177247847","host":"s3://npm-registry-packages"}},"8.2.3":{"name":"inferno","version":"8.2.3","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@8.2.3","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"150cadc898c206c8d05c14e84aa3d4e40d13f819","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-8.2.3.tgz","fileCount":36,"integrity":"sha512-LMeRlCe+RlXw8kHCLyOWRk2PsZ3Fo4jkESyAR1g4FfPT48N78i11YhTVXW2ukCx5MFjv+qrfa73JzJWU9sg4CQ==","signatures":[{"sig":"MEYCIQCLVv/tl4vxfUfo+4udoS7aALy3jmmDA0csJfLpG+rIPgIhAL2NbugoBXyOVNH8pMQzMwohw+JK+RQTr55pv9xlsT2d","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":657422},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"6a482641d2405c46a1c9374d889312d98ca9a4a5","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/6.6.2/node@v21.4.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"21.4.0","dependencies":{"csstype":"^3.1.2","inferno-vnode-flags":"8.2.3","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"8.2.3","inferno-shared":"8.2.3"},"_npmOperationalInternal":{"tmp":"tmp/inferno_8.2.3_1702235862575_0.3979383392921516","host":"s3://npm-registry-packages"}},"5.6.3":{"name":"inferno","version":"5.6.3","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@5.6.3","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"2cf753755b491e3b8d3f168c26ddad10a685d404","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-5.6.3.tgz","fileCount":35,"integrity":"sha512-2m7bEo/6D+pbxFkFKY/2QOVdknxxXyrXyDdVFobJcQyvfv3985MY+VVwyRZoVJylQG+mzPY5/uDNuXygp8jObA==","signatures":[{"sig":"MEUCICtXahy6YQA9QuszihfXF6jzYlzyzZAl0v04rar2828PAiEAt40NYgD3+DWpfKW8b4Tng/QdrtneA+U6Stm7ErMSgSU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":605695},"main":"index.js","module":"index.esm.js","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"gitHead":"27d21a45676f357dda8a30b5104c92e6d29c5656","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.esm.js","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git"},"_npmVersion":"lerna/5.6.2/node@v22.5.1+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"22.5.1","dependencies":{"inferno-shared":"5.6.3","inferno-vnode-flags":"5.6.3","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"5.6.3"},"_npmOperationalInternal":{"tmp":"tmp/inferno_5.6.3_1721501342304_0.08583898209257024","host":"s3://npm-registry-packages"}},"9.0.0-alpha.1":{"name":"inferno","version":"9.0.0-alpha.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@9.0.0-alpha.1","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"4d557fb90c89a74959f4d81c17e29c14ac570478","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-9.0.0-alpha.1.tgz","fileCount":34,"integrity":"sha512-BQZUQ1AFZ+aaRElB5fQdvnfnxF2z5nrYgJ7zGaPaum7YLYx8zVMgZ0txmOYS4y+nti7kz5OPXnOldmNmEliBAg==","signatures":[{"sig":"MEUCIDyh84RXa3Up8jwE2j2yOUOh0yXQnirkkG0jeJ6vDMk8AiEA+ntNfK3C2aXYJ+3tBH1DJM2h99opdCHpGFMULasyhdI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":585450},"type":"module","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"exports":{".":{"import":"./index.mjs","require":"./index.cjs"}},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"902106d6b6abf20cd7fd6353bb9bd30dd5a7af4a","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/8.1.9/node@v23.3.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"23.3.0","dependencies":{"csstype":"^3.1.3","inferno-vnode-flags":"9.0.0-alpha.1","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"9.0.0-alpha.1","inferno-shared":"9.0.0-alpha.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_9.0.0-alpha.1_1732653525485_0.9872555190529348","host":"s3://npm-registry-packages"}},"9.0.0-alpha.2":{"name":"inferno","version":"9.0.0-alpha.2","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@9.0.0-alpha.2","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"08fb624a6c5826a9d4918c50389b16074e2842e0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-9.0.0-alpha.2.tgz","fileCount":35,"integrity":"sha512-kcvI7kkwQo1FHDgKW6D3lQOOY86bRE9o7pqXCGK3COwZKvjrSmwFiXAmQ9WBDfdVqk4ArmMijCPzyEl+ZfY1qA==","signatures":[{"sig":"MEYCIQC2X3ipbbRZe75NEzg0TdNeYY1HchYvmZUS1QOnkCCvOwIhAI9k2PqOLV3bKzc155k+xwVYk6BGZI3Mt2NgSAxET2MQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":585629},"type":"module","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"exports":{".":{"import":"./index.mjs","require":"./index.cjs"}},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"5df76afa8932d05ee02ce9ce6de47ede52f569d6","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/8.1.9/node@v23.3.0+x64 (win32)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"23.3.0","dependencies":{"csstype":"^3.1.3","inferno-vnode-flags":"9.0.0-alpha.2","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"9.0.0-alpha.2","inferno-shared":"9.0.0-alpha.2"},"_npmOperationalInternal":{"tmp":"tmp/inferno_9.0.0-alpha.2_1732654778565_0.46183053480351877","host":"s3://npm-registry-packages"}},"9.0.0-alpha.3":{"name":"inferno","version":"9.0.0-alpha.3","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@9.0.0-alpha.3","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"5838242147cf1a490549e730dcbf3e1aa52b568b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-9.0.0-alpha.3.tgz","fileCount":35,"integrity":"sha512-tP6m8jk94Cx1r0X4+haJaXGT6ckY0E8QTDu0mrxuK7QwCj8kmVcUj5nyVxPv+Tun8gOFpg4qYQXY7X0mhef2rw==","signatures":[{"sig":"MEUCICjJuRgb6YXa916ZD7Hf93U8vCxLdM/XrDQAF+UekrqJAiEAkcE4w9jHa1zcYp6nri138/1lToqJ4pF5fD0QYdEwjBY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":585016},"type":"module","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"exports":{".":{"import":"./index.mjs","require":"./index.cjs"},"./dist/index.mjs":"./dist/index.mjs","./dist/index.dev.mjs":"./dist/index.dev.mjs"},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"b242af50261bfe56d5bd4a2b060dcef86b074444","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/8.1.9/node@v23.4.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"23.4.0","dependencies":{"csstype":"^3.1.3","inferno-vnode-flags":"9.0.0-alpha.3","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"9.0.0-alpha.3","inferno-shared":"9.0.0-alpha.3"},"_npmOperationalInternal":{"tmp":"tmp/inferno_9.0.0-alpha.3_1737585698144_0.5487087760431044","host":"s3://npm-registry-packages-npm-production"}},"9.0.0-alpha.4":{"name":"inferno","version":"9.0.0-alpha.4","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@9.0.0-alpha.4","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"dd7c185bf071535c41a567eef428caac66bc615f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-9.0.0-alpha.4.tgz","fileCount":35,"integrity":"sha512-ZGnnpD7RX9yVyqiLnipoOS2JKJkLxNz5d5SCtqEq4zZ9IPHCFwvfrKRswPpWOzjAdPOczuJwV3rfHepJ5LAM9Q==","signatures":[{"sig":"MEUCIBLNrPrDksXQXHfpFAcq/3wbLUDl5Qp9GmXWi2K2xn+7AiEA/MVsWmJi3lBv0+cjKvE6i3HZsT7X33IuvGwfOW1nAMs=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":585016},"type":"module","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"exports":{".":{"import":"./index.mjs","require":"./index.cjs"},"./dist/index.mjs":"./dist/index.mjs","./dist/index.dev.mjs":"./dist/index.dev.mjs"},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"d45ab329f72f781c069515be857e2d09eccda204","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/8.1.9/node@v23.4.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"23.4.0","dependencies":{"csstype":"^3.1.3","inferno-vnode-flags":"9.0.0-alpha.4","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"9.0.0-alpha.4","inferno-shared":"9.0.0-alpha.4"},"_npmOperationalInternal":{"tmp":"tmp/inferno_9.0.0-alpha.4_1737671062366_0.1653299642717172","host":"s3://npm-registry-packages-npm-production"}},"9.0.0":{"name":"inferno","version":"9.0.0","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@9.0.0","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"22c978698a7cbb8e717326a9920ceb946e637c16","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-9.0.0.tgz","fileCount":35,"integrity":"sha512-D4KdweaDQ21kX6wqKxrXoR+L0U/jJrIPxt1Qs1gdiI4Cw3ZZ9c1Q0o/DVeYpUCCVvv3HNEVvrtiGCJwAAl6chQ==","signatures":[{"sig":"MEYCIQDUYhQR36FPtQ5xaETllTw9gIrLiyg/M60BAYa0Cjj/uQIhAKMZ3C3+RzAyDvnTJySGhJzIACwJa+lwptstj8crtTAs","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":584936},"type":"module","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"exports":{".":{"import":"./index.mjs","require":"./index.cjs"},"./dist/index.mjs":"./dist/index.mjs","./dist/index.dev.mjs":"./dist/index.dev.mjs"},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"60f4d03df2e64b0b6026ad04c5d00aa94be8980a","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/8.1.9/node@v23.4.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"23.4.0","dependencies":{"csstype":"^3.1.3","inferno-vnode-flags":"9.0.0","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"9.0.0","inferno-shared":"9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/inferno_9.0.0_1737701374318_0.2643418855079691","host":"s3://npm-registry-packages-npm-production"}},"9.0.1":{"name":"inferno","version":"9.0.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@9.0.1","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"f9ad2622333d7bfc62a5420ee717efba69e487d8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-9.0.1.tgz","fileCount":35,"integrity":"sha512-CuUodlL32NHGTcDEnaJaZDODsv2fXeWXBNq61O/7aFdw/1kT63bFssfL7H3FMygGqByeKXbFYnaau302byFz0g==","signatures":[{"sig":"MEYCIQDWIry+hT+po1pE0HJKhtzw8V+17XZtABZtVAGukmyGJQIhANIG8H7alWgne/Fp8QVYP0Qwye9MISzgsBIpZCjagpZf","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":584972},"type":"module","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"exports":{".":{"types":"./dist/index.d.ts","import":"./index.mjs","require":"./index.cjs"},"./dist/index.mjs":"./dist/index.mjs","./dist/index.dev.mjs":"./dist/index.dev.mjs"},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"61f772aba67006eac8292502d24cee4d389b924c","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/8.1.9/node@v23.4.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"23.4.0","dependencies":{"csstype":"^3.1.3","inferno-vnode-flags":"9.0.1","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"9.0.1","inferno-shared":"9.0.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_9.0.1_1737788625429_0.6118042048436567","host":"s3://npm-registry-packages-npm-production"}},"9.0.2":{"name":"inferno","version":"9.0.2","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@9.0.2","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"6bdd0cf4c02b7e0e0ac3a860c0a257b88d53f758","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-9.0.2.tgz","fileCount":35,"integrity":"sha512-jN1hz3IInNyt+G37b2SULfAyK8Mrbh2Az+OLYQYW2zKIue0TOoNKWh1umyNyomwMrG5vjHQu275CUOPPoTIWCQ==","signatures":[{"sig":"MEQCIGmVTUf1/IWm5hs34sgL89oW1szxLhFibHETH9O4NDBCAiBuwcjf42Yw6xFxWJOUqLyHn1L3/AxIT+JHvgBrHgdrTw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":587149},"type":"module","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"exports":{".":{"types":"./dist/index.d.ts","import":"./index.mjs","require":"./index.cjs"},"./dist/index.mjs":"./dist/index.mjs","./dist/index.dev.mjs":"./dist/index.dev.mjs"},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"e93765c9947aafd0fe6b0b479e1d70c06e08e8c1","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/8.1.9/node@v23.7.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"23.7.0","dependencies":{"csstype":"^3.1.3","inferno-vnode-flags":"9.0.2","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"9.0.2","inferno-shared":"9.0.2"},"_npmOperationalInternal":{"tmp":"tmp/inferno_9.0.2_1739124729459_0.11809430859699477","host":"s3://npm-registry-packages-npm-production"}},"9.0.3":{"name":"inferno","version":"9.0.3","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@9.0.3","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"c3bd96ac75e3af290dc44cc2661b513d9bdf40d4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-9.0.3.tgz","fileCount":35,"integrity":"sha512-qW48Uan8UGtVTxKt04IJB2QkYnNo/Zqh/myxH5wlfZM8QNexHzgIOVnCvzAdFerXpIDrIDUiHgrOZR9ONMIHgg==","signatures":[{"sig":"MEQCID9jrO42CtNfvGRtMTOpBHEqsSBNdoGseuarrFu0cYBBAiBkv2cRF5OXWbQHIoU+iAb3iUtBP554G4Dz0TvPb8yxjA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":586354},"type":"module","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"exports":{".":{"types":"./dist/index.d.ts","import":"./index.mjs","require":"./index.cjs"},"./dist/index.mjs":"./dist/index.mjs","./dist/index.dev.mjs":"./dist/index.dev.mjs"},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"929300deb5b911f940fe19bc285afb7863521bf7","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/8.2.0/node@v23.9.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"23.9.0","dependencies":{"csstype":"^3.1.3","inferno-vnode-flags":"9.0.3","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"9.0.3","inferno-shared":"9.0.3"},"_npmOperationalInternal":{"tmp":"tmp/inferno_9.0.3_1740834723195_0.30741829110229824","host":"s3://npm-registry-packages-npm-production"}},"9.0.4":{"name":"inferno","version":"9.0.4","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@9.0.4","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"6171f346d686765d722e70104ef8ba9c0da43353","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-9.0.4.tgz","fileCount":35,"integrity":"sha512-QvU22Ffsxc5LYKeHLSQa8/y3LFvV6Ukrdq1kEb/TtkeIVte54ZMU+OYhivKXUDfhJo8p1UXA8luEv3ISvVxDVw==","signatures":[{"sig":"MEYCIQD/3+OZ5wCJ0Eq6j+HBOxD9dBM/nWKKP+wAdmWo9BTpKAIhAOJDgh8w7zCXSu+1f0powoiJe0KqkeyulKYTYMqh18PW","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":586838},"type":"module","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"exports":{".":{"types":"./dist/index.d.ts","import":"./index.mjs","require":"./index.cjs"},"./dist/index.mjs":"./dist/index.mjs","./dist/index.dev.mjs":"./dist/index.dev.mjs"},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"bf04b5b983ec2ddbc236dd2544f7d8407ec3b1a4","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/8.2.3/node@v24.7.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"24.7.0","dependencies":{"csstype":"^3.1.3","inferno-vnode-flags":"9.0.4","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"9.0.4","inferno-shared":"9.0.4"},"_npmOperationalInternal":{"tmp":"tmp/inferno_9.0.4_1757774864564_0.4204830321809563","host":"s3://npm-registry-packages-npm-production"}},"9.0.5":{"name":"inferno","version":"9.0.5","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@9.0.5","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"f4fad9a3578d3312b41688a81b1612d1e292c6e4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-9.0.5.tgz","fileCount":35,"integrity":"sha512-1SHFowNePgU3jLgHqHB9owv9AmNNaAVhAE9QAOMqUDiOPh2H3sAGuQ5/6UEkc6LJSPm/ZARcvKeNOy3o9NClSw==","signatures":[{"sig":"MEYCIQCmVEk6a6zrXsMyXkPCY4vtfHyp1Oz24h7AUWZWG6rpzgIhAO6gdJN3EQkIq2bpUgPCVymfM55n6QstavNv0QfE5VKI","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":586446},"type":"module","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"exports":{".":{"types":"./dist/index.d.ts","import":"./index.mjs","require":"./index.cjs"},"./dist/index.mjs":"./dist/index.mjs","./dist/index.dev.mjs":"./dist/index.dev.mjs"},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"67668c10b6939da32be5f23eba5ccac048759095","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/9.0.1/node@v25.2.1+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"25.2.1","dependencies":{"csstype":"^3.2.3","inferno-vnode-flags":"9.0.5","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"9.0.5","inferno-shared":"9.0.5"},"_npmOperationalInternal":{"tmp":"tmp/inferno_9.0.5_1763968722556_0.6457676179396776","host":"s3://npm-registry-packages-npm-production"}},"9.0.7":{"name":"inferno","version":"9.0.7","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@9.0.7","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"a3ca1abebdd07a39d8f72003b0a4cf941443cdc5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-9.0.7.tgz","fileCount":35,"integrity":"sha512-RbSxa3GQrmZfTb1Vzb8DvekMPXmdGrSMDGV9i/C9KFzKAPwYZ/Hoz/UMdmWiLvzDDgiS4pChzogVSppwoMuWgw==","signatures":[{"sig":"MEUCIQD4SMXE/Qm38iaekyUX8bgbdqWpzWeYw/b/8PF4iQgkMQIgfFL20aqC7qj2CFHVb3J6h4cpVw/Sru62CpmLFEAR7Qk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":586446},"type":"module","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"exports":{".":{"types":"./dist/index.d.ts","import":"./index.mjs","require":"./index.cjs"},"./dist/index.mjs":"./dist/index.mjs","./dist/index.dev.mjs":"./dist/index.dev.mjs"},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"776f8b7a6993029408043eeaaac33350ad784d25","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/9.0.3/node@v25.2.1+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"25.2.1","dependencies":{"csstype":"^3.2.3","inferno-vnode-flags":"9.0.7","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"9.0.7","inferno-shared":"9.0.7"},"_npmOperationalInternal":{"tmp":"tmp/inferno_9.0.7_1765351309884_0.3546592132923787","host":"s3://npm-registry-packages-npm-production"}},"9.0.8":{"name":"inferno","version":"9.0.8","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@9.0.8","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"2826145bd14adbdd7241e734d7b9ccc3af8c3124","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-9.0.8.tgz","fileCount":35,"integrity":"sha512-ya48Cf83SrCSGNLTVwuh+c9cPMv3ZXRpQam7+MBN53miBuxXyp79G6wm6bi7qN2hT73pnvTeMy/DGBmk7OjKrQ==","signatures":[{"sig":"MEUCIQCGHvL/yeDpi+Asw7F6BzJu5cs4AoF7oNyYEAPMOY9/nQIgd1GxcJ278LWtY0hRGopEuwjh64m+mkqOmlkiL43hrLI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":586248},"type":"module","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"exports":{".":{"types":"./dist/index.d.ts","import":"./index.mjs","require":"./index.cjs"},"./dist/index.mjs":"./dist/index.mjs","./dist/index.dev.mjs":"./dist/index.dev.mjs"},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"021635d032ff09c977667d4c17aca7747e27a178","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/9.0.3/node@v25.2.1+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"25.2.1","dependencies":{"csstype":"^3.2.3","inferno-vnode-flags":"9.0.8","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"9.0.8","inferno-shared":"9.0.8"},"_npmOperationalInternal":{"tmp":"tmp/inferno_9.0.8_1766152654111_0.583846705832995","host":"s3://npm-registry-packages-npm-production"}},"9.0.9":{"name":"inferno","version":"9.0.9","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@9.0.9","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"79ce937df0b21fe838c6dc7ec863ded53b95ac70","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-9.0.9.tgz","fileCount":35,"integrity":"sha512-Xbh3JsbhoDibkz3Jd4f4ivp+HFj9//zfT8Rp8fA2BIzDBWVE1uk0ZhqCeoPAISFwR6fIEE8fWgC8TIIDVk1qEg==","signatures":[{"sig":"MEUCIEpgjGXqnCO8tmhMttsVFQgw3XrTzxVSXEkMhKA0+EQGAiEA8hcZeOJzniuTdYwY5AKmvdyUEiq7WsBW8yWNKoNUCXQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":586316},"type":"module","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"exports":{".":{"types":"./dist/index.d.ts","import":"./index.mjs","require":"./index.cjs"},"./dist/index.mjs":"./dist/index.mjs","./dist/index.dev.mjs":"./dist/index.dev.mjs"},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"955f2af01c3283c227d4784c3783b0c4de500f95","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/9.0.3/node@v25.2.1+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"25.2.1","dependencies":{"csstype":"^3.2.3","inferno-vnode-flags":"9.0.9","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"9.0.9","inferno-shared":"9.0.9"},"_npmOperationalInternal":{"tmp":"tmp/inferno_9.0.9_1766234518840_0.6315174037257878","host":"s3://npm-registry-packages-npm-production"}},"9.0.10":{"name":"inferno","version":"9.0.10","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@9.0.10","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"3e1bef90ca3bc97bc4cbf907351a06f11f67c015","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-9.0.10.tgz","fileCount":35,"integrity":"sha512-w+dh3/tZvs3406Wxb857ufv1U++8f3yqbuerIoajNW0Vicv43TCpJpYOHPQNe0KpIgxGIqTc6VMJEqlSMxjyQg==","signatures":[{"sig":"MEUCIHPxGvTKz9n+odFKxsdeLE7qnxfwQWRDd36dWnsaJcxbAiEAhDFSQig6A5/4fmWD2WdXiIaB1wfTp3m0LarjD9VZc6k=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":586326},"type":"module","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"exports":{".":{"types":"./dist/index.d.ts","import":"./index.mjs","require":"./index.cjs"},"./dist/index.mjs":"./dist/index.mjs","./dist/index.dev.mjs":"./dist/index.dev.mjs"},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"0494dfa76546b61798f33491319fd9ec89f59a49","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/9.0.3/node@v25.2.1+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"25.2.1","dependencies":{"csstype":"^3.2.3","inferno-vnode-flags":"9.0.10","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"9.0.10","inferno-shared":"9.0.10"},"_npmOperationalInternal":{"tmp":"tmp/inferno_9.0.10_1766301923338_0.38191049719114534","host":"s3://npm-registry-packages-npm-production"}},"9.0.11":{"name":"inferno","version":"9.0.11","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@9.0.11","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"4fc9f381c5095dea4bf570956b33b5d64ecfb5cc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-9.0.11.tgz","fileCount":35,"integrity":"sha512-Ul+QryiTL1MC8VkvtUmDoKAQQjPPqNJsJtiAYSB18dc79kkE/b+bppE0bVWYFz/uLxt1bu0fO636t3bPNIxy3w==","signatures":[{"sig":"MEYCIQD67GDz1AlBgwpuQSzEk3uw9rIDQR1kG/UIpOmcm/gegAIhALCEz2nDB/v+Kex0rY3FpNpi+u50dLOWCDw+bjKarseX","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":598382},"type":"module","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"exports":{".":{"types":"./dist/index.d.ts","import":"./index.mjs","require":"./index.cjs"},"./dist/index.mjs":"./dist/index.mjs","./dist/index.dev.mjs":"./dist/index.dev.mjs"},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"b6051158da3d1ff83b1d9805a13e67938272a509","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/9.0.3/node@v25.4.0+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"25.4.0","dependencies":{"csstype":"^3.2.3","inferno-vnode-flags":"9.0.11","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"inferno-utils":"9.0.11","inferno-shared":"9.0.11"},"_npmOperationalInternal":{"tmp":"tmp/inferno_9.0.11_1769769541019_0.09891962938043175","host":"s3://npm-registry-packages-npm-production"}},"9.0.12-alpha.1":{"name":"inferno","version":"9.0.12-alpha.1","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"license":"MIT","_id":"inferno@9.0.12-alpha.1","maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"homepage":"https://github.com/infernojs/inferno#readme","bugs":{"url":"https://github.com/infernojs/inferno/issues"},"dist":{"shasum":"526220c9c9b78a94f14affcab19f209c837c402b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-9.0.12-alpha.1.tgz","fileCount":35,"integrity":"sha512-Wx6QK8xzbkHdAMmr9OTtoCwAIhwhkpnmaWldGG2Zid5OaUUbEYoAuVfqwQn232dCzADZ1t1SsF62PWVSG+ef0A==","signatures":[{"sig":"MEYCIQDmNSf1dAikwoDeY/rGYo3DH2NMH4DXxvhYK7+LFZSvjAIhAKcUKtHAdZ7DVN3/SO4ikb8yqjyFOt7rTEoaiKPKOE1P","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":599488},"type":"module","module":"index.mjs","rollup":{"moduleName":"Inferno","bundledDependencies":["inferno-shared","inferno-vnode-flags"]},"exports":{".":{"types":"./dist/index.d.ts","import":"./index.mjs","require":"./index.cjs"},"./dist/index.mjs":"./dist/index.mjs","./dist/index.dev.mjs":"./dist/index.dev.mjs"},"funding":{"url":"https://opencollective.com/inferno","type":"opencollective"},"gitHead":"76be3bad00ea05f9ecbcdbb19487faebe42e9340","scripts":{"postinstall":"opencollective-postinstall"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"collective":{"url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt","type":"opencollective"},"dev:module":"dist/index.dev.mjs","repository":{"url":"git+https://github.com/infernojs/inferno.git","type":"git","directory":"packages/inferno"},"_npmVersion":"lerna/9.0.7/node@v25.8.2+x64 (linux)","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","directories":{},"_nodeVersion":"25.8.2","dependencies":{"csstype":"^3.2.3","inferno-vnode-flags":"9.0.12-alpha.1","opencollective-postinstall":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"inferno-utils":"9.0.12-alpha.1","inferno-shared":"9.0.12-alpha.1"},"_npmOperationalInternal":{"tmp":"tmp/inferno_9.0.12-alpha.1_1775498522082_0.7488927452819265","host":"s3://npm-registry-packages-npm-production"}},"9.1.0":{"name":"inferno","version":"9.1.0","license":"MIT","type":"module","description":"An extremely fast, React-like JavaScript library for building modern user interfaces","author":{"name":"Dominic Gannaway","email":"dg@domgan.com"},"bugs":{"url":"https://github.com/infernojs/inferno/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/inferno"},"homepage":"https://github.com/infernojs/inferno#readme","keywords":["inferno","performance","framework","interfaces","user interfaces","html","renderToString","server","dom","browser","rollup","vdom"],"collective":{"type":"opencollective","url":"https://opencollective.com/inferno","logo":"https://opencollective.com/inferno/logo.txt"},"scripts":{"postinstall":"opencollective-postinstall"},"rollup":{"bundledDependencies":["inferno-shared","inferno-vnode-flags"],"moduleName":"Inferno"},"exports":{".":{"import":"./index.mjs","require":"./index.cjs","types":"./dist/index.d.ts"},"./dist/index.dev.mjs":"./dist/index.dev.mjs","./dist/index.mjs":"./dist/index.mjs"},"module":"index.mjs","dev:module":"dist/index.dev.mjs","typings":"dist/index.d.ts","repository":{"type":"git","url":"git+https://github.com/infernojs/inferno.git","directory":"packages/inferno"},"devDependencies":{"inferno-shared":"9.1.0","inferno-utils":"9.1.0"},"dependencies":{"csstype":"^3.2.3","inferno-vnode-flags":"9.1.0","opencollective-postinstall":"^2.0.3"},"gitHead":"f1a7fa2f1d6823989b30ffda410b340eb5ed3963","_id":"inferno@9.1.0","_nodeVersion":"25.8.2","_npmVersion":"lerna/9.0.7/node@v25.8.2+x64 (linux)","dist":{"integrity":"sha512-Cw7iu5Yn//PDZKZPZGy2+7b7hCaVhbKuPP1ikyyOvXILZno1faIfcQOyfQkNKh4h6LSQ6VhImaG7sxvS0IrhuA==","shasum":"e2a25580a20d5e983ca32f6881f32bd9f72fb9ea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inferno/-/inferno-9.1.0.tgz","fileCount":35,"unpackedSize":599398,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIDDxIYVJmRFKmJFzvFHs7Y+rCmbvGJ/5tY4HPFPQ+4AoAiEA2Bc1KcaxBZVHwOW667R2wk/A3Z27Eyrf8LaNowXHo+E="}]},"_npmUser":{"name":"anonymous","email":"sampo.kivisto@proton.me"},"directories":{},"maintainers":[{"name":"anonymous","email":"holevietlong@gmail.com"},{"name":"anonymous","email":"me@lukesheard.com"},{"name":"anonymous","email":"dg@domgan.com"},{"name":"anonymous","email":"sampo.kivisto@proton.me"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/inferno_9.1.0_1775568151908_0.39451083272417065"},"_hasShrinkwrap":false}},"name":"inferno","time":{"created":"2013-08-25T17:41:31.034Z","modified":"2026-04-07T13:22:32.261Z","0.0.1":"2013-08-25T17:41:33.732Z","0.1.2":"2015-07-20T13:49:39.200Z","0.1.3":"2015-07-20T15:05:50.161Z","0.1.4":"2015-07-20T15:17:09.401Z","0.1.6":"2015-07-20T16:33:24.227Z","0.1.7":"2015-07-20T16:39:21.968Z","0.1.9":"2015-07-20T19:32:34.717Z","0.1.10":"2015-07-20T22:12:05.645Z","0.1.11":"2015-07-21T15:59:20.463Z","0.4.0":"2015-12-20T00:41:32.518Z","0.4.3":"2015-12-27T15:20:33.794Z","0.4.4":"2015-12-27T15:22:26.320Z","0.4.5":"2015-12-28T19:16:18.869Z","0.5.5":"2016-01-10T22:56:57.087Z","0.5.6":"2016-01-10T23:15:46.064Z","0.5.7":"2016-01-11T00:10:13.655Z","0.5.8":"2016-01-11T01:02:44.943Z","0.5.9":"2016-01-11T01:13:35.464Z","0.5.10":"2016-01-11T01:21:58.198Z","0.5.11":"2016-01-11T01:25:35.787Z","0.5.12":"2016-01-11T01:56:44.900Z","0.5.13":"2016-01-11T02:27:50.543Z","0.5.16":"2016-01-19T12:30:35.562Z","0.5.17":"2016-01-19T13:20:10.518Z","0.5.18":"2016-01-20T00:04:18.130Z","0.5.20":"2016-01-22T11:20:53.995Z","0.5.21":"2016-01-22T22:57:09.780Z","0.5.22":"2016-01-25T00:14:48.822Z","0.6.0":"2016-03-26T16:43:17.269Z","0.6.1":"2016-03-26T22:13:22.501Z","0.6.2":"2016-03-26T23:27:48.569Z","0.6.3":"2016-03-26T23:39:33.992Z","0.6.4":"2016-03-26T23:52:58.729Z","0.7.0":"2016-04-21T20:20:34.497Z","0.7.1":"2016-04-23T20:03:50.856Z","0.7.2":"2016-04-23T21:37:12.357Z","0.7.3":"2016-04-23T21:58:09.941Z","0.7.4":"2016-04-30T20:27:51.600Z","0.7.5":"2016-04-30T20:29:54.640Z","0.7.6":"2016-05-01T06:43:01.260Z","0.7.7":"2016-05-07T20:45:49.184Z","0.7.8":"2016-05-28T16:01:28.050Z","0.7.9":"2016-06-05T13:01:00.736Z","0.7.10":"2016-06-25T21:14:28.394Z","0.7.11":"2016-06-27T09:56:12.008Z","0.7.12":"2016-06-29T22:39:09.542Z","0.7.13":"2016-06-30T22:47:25.285Z","0.7.14":"2016-07-06T19:36:39.042Z","0.7.15":"2016-07-07T21:53:24.212Z","0.7.16":"2016-07-08T10:16:47.752Z","0.7.17":"2016-07-09T20:23:08.768Z","0.7.20":"2016-07-11T23:27:15.748Z","0.7.21":"2016-07-12T11:27:25.615Z","0.7.22":"2016-07-18T20:40:39.517Z","0.7.23":"2016-07-23T22:03:50.841Z","0.7.24":"2016-07-26T14:37:12.680Z","0.7.25":"2016-08-04T22:16:45.692Z","0.7.26":"2016-08-09T20:02:02.974Z","0.8.0-alpha1":"2016-08-13T21:15:21.739Z","0.8.0-alpha2":"2016-08-16T20:23:16.586Z","0.8.0-alpha3":"2016-08-17T20:33:54.386Z","0.8.0-alpha4":"2016-08-31T11:23:36.800Z","0.8.0-alpha6":"2016-08-31T11:27:21.261Z","0.7.27":"2016-09-08T12:07:45.046Z","1.0.0-alpha1":"2016-09-09T09:18:00.435Z","1.0.0-alpha2":"2016-09-09T11:00:28.832Z","1.0.0-alpha3":"2016-09-09T20:29:53.279Z","1.0.0-alpha4":"2016-09-10T19:24:07.282Z","1.0.0-alpha5":"2016-09-10T19:42:51.918Z","1.0.0-alpha6":"2016-09-10T20:43:02.836Z","1.0.0-alpha7":"2016-09-10T20:46:06.881Z","1.0.0-alpha8":"2016-09-11T16:55:45.560Z","1.0.0-alpha9":"2016-09-16T22:02:08.026Z","1.0.0-alpha10":"2016-09-17T00:28:52.768Z","1.0.0-alpha11":"2016-09-17T11:40:49.905Z","1.0.0-beta1":"2016-09-22T23:46:17.732Z","1.0.0-beta2":"2016-10-04T12:59:04.708Z","1.0.0-beta3":"2016-10-04T14:52:59.212Z","1.0.0-beta4":"2016-10-13T06:47:15.287Z","1.0.0-beta5":"2016-10-19T23:07:15.919Z","1.0.0-beta6":"2016-10-30T22:45:20.312Z","1.0.0-beta7":"2016-11-07T19:09:56.279Z","1.0.0-beta8":"2016-11-14T21:56:33.682Z","1.0.0-beta9":"2016-11-15T22:56:11.557Z","1.0.0-beta10":"2016-11-19T20:26:17.556Z","1.0.0-beta11":"2016-11-19T21:07:26.493Z","1.0.0-beta12":"2016-11-19T22:59:34.531Z","1.0.0-beta13":"2016-11-20T21:52:46.317Z","1.0.0-beta14":"2016-11-23T20:27:10.976Z","1.0.0-beta15":"2016-11-25T10:47:31.634Z","1.0.0-beta16":"2016-11-28T14:42:16.141Z","1.0.0-beta17":"2016-11-28T15:41:53.935Z","1.0.0-beta18":"2016-11-28T21:21:21.683Z","1.0.0-beta19":"2016-11-29T00:22:04.295Z","1.0.0-beta20":"2016-11-29T13:24:47.470Z","1.0.0-beta21":"2016-11-29T17:08:15.845Z","1.0.0-beta22":"2016-12-01T23:05:20.273Z","1.0.0-beta23":"2016-12-02T12:42:39.348Z","1.0.0-beta24":"2016-12-03T00:07:21.075Z","1.0.0-beta25":"2016-12-05T17:52:11.241Z","1.0.0-beta26":"2016-12-05T21:36:06.449Z","1.0.0-beta27":"2016-12-06T10:09:43.364Z","1.0.0-beta28":"2016-12-06T10:43:06.483Z","1.0.0-beta29":"2016-12-06T14:37:28.388Z","1.0.0-beta30":"2016-12-06T14:43:26.482Z","1.0.0-beta31":"2016-12-06T15:37:45.495Z","1.0.0-beta32":"2016-12-07T21:26:46.011Z","1.0.0-beta33":"2016-12-13T22:50:02.633Z","1.0.0-beta34":"2016-12-15T15:11:13.123Z","1.0.0-beta35":"2016-12-16T09:42:38.513Z","1.0.0-beta36":"2016-12-17T19:04:50.171Z","1.0.0-beta37":"2016-12-19T23:35:58.722Z","1.0.0-beta38":"2016-12-22T21:10:38.734Z","1.0.0-beta39":"2016-12-22T23:05:25.299Z","1.0.0-beta40":"2016-12-23T00:30:36.864Z","1.0.0-beta41":"2016-12-23T12:27:57.468Z","1.0.0-beta42":"2016-12-23T13:19:11.863Z","1.0.0-beta43":"2016-12-27T14:53:13.331Z","1.0.0-beta44":"2016-12-28T21:26:34.084Z","1.0.0-beta45":"2016-12-30T08:19:37.476Z","1.0.1":"2016-12-30T13:35:07.723Z","1.0.2":"2016-12-30T14:27:14.943Z","1.0.3":"2016-12-30T18:40:30.002Z","1.0.4":"2017-01-02T18:49:16.513Z","1.0.5":"2017-01-03T13:31:37.141Z","1.0.6":"2017-01-04T11:45:23.648Z","1.0.7":"2017-01-04T23:00:32.070Z","1.1.0":"2017-01-07T21:15:47.916Z","1.1.1":"2017-01-08T13:44:15.138Z","1.1.2":"2017-01-10T17:15:21.870Z","1.2.0":"2017-01-14T12:58:15.789Z","1.2.1":"2017-01-18T20:54:24.152Z","1.2.2":"2017-01-21T22:56:26.868Z","1.3.0-rc.1":"2017-02-06T22:48:03.199Z","1.3.0-rc.2":"2017-02-08T16:42:52.196Z","1.3.0-rc.3":"2017-02-08T20:52:06.722Z","1.3.0-rc.4":"2017-02-23T07:56:51.334Z","1.3.0-rc.6":"2017-02-24T12:33:38.824Z","1.3.0-rc.7":"2017-02-24T13:38:36.734Z","1.3.0-rc.8":"2017-02-25T18:57:06.000Z","1.3.0-rc.9":"2017-03-03T17:11:20.647Z","1.3.0-rc.10":"2017-03-05T22:13:02.684Z","1.3.0":"2017-03-09T17:45:34.155Z","1.3.1":"2017-03-09T17:53:58.580Z","1.4.0":"2017-03-12T19:28:09.898Z","1.4.1-alpha.5a4983fd":"2017-03-19T14:52:22.300Z","1.4.1-alpha.927f437b":"2017-03-19T23:01:16.647Z","1.4.1":"2017-03-20T15:13:27.036Z","1.4.1-alpha.5f5d5901":"2017-03-21T13:59:27.697Z","1.4.2-alpha.5f5d5901":"2017-03-21T14:16:19.028Z","1.4.2":"2017-03-21T16:27:08.957Z","1.4.2-alpha.9a8a49c6":"2017-03-24T13:56:48.682Z","1.5.0-alpha.949b4a8a":"2017-03-26T12:32:26.615Z","1.5.0-alpha.2f6639f8":"2017-03-26T13:24:06.936Z","1.5.1":"2017-03-27T17:47:19.192Z","1.5.2":"2017-03-27T19:31:35.246Z","1.5.3":"2017-03-27T20:51:03.179Z","1.5.4":"2017-03-28T18:52:54.661Z","1.5.5":"2017-03-29T17:17:12.652Z","1.5.6":"2017-03-30T19:57:02.546Z","1.6.0":"2017-04-03T17:58:05.534Z","1.6.1":"2017-04-04T21:27:20.637Z","1.6.2":"2017-04-05T20:45:53.009Z","2.0.0":"2017-04-10T21:27:18.095Z","3.0.0":"2017-04-10T21:34:44.077Z","3.0.1":"2017-04-10T21:55:50.453Z","3.0.2":"2017-04-10T22:42:13.674Z","3.0.3":"2017-04-11T05:38:41.155Z","3.0.4":"2017-04-13T14:30:58.417Z","3.0.5":"2017-04-19T05:35:36.572Z","3.0.6":"2017-04-26T16:03:24.007Z","3.1.0":"2017-04-30T12:24:00.243Z","3.1.1":"2017-05-05T17:29:46.603Z","3.1.2":"2017-05-11T12:38:47.257Z","3.2.0":"2017-05-20T09:22:15.355Z","3.2.1":"2017-05-21T19:49:35.332Z","3.2.2":"2017-05-22T08:04:33.636Z","3.3.0":"2017-05-25T11:35:43.635Z","3.3.1":"2017-05-25T14:28:06.188Z","3.3.1-alpha.ecaca854":"2017-06-01T20:15:34.384Z","3.4.0":"2017-06-01T20:20:38.649Z","3.4.0-alpha.73eb03ff":"2017-06-02T18:45:09.219Z","3.4.2":"2017-06-10T10:57:57.106Z","3.4.3":"2017-06-10T11:29:17.823Z","3.4.4":"2017-06-13T16:42:41.104Z","3.5.0":"2017-06-13T23:36:31.392Z","3.5.1":"2017-06-15T16:26:44.124Z","3.5.2":"2017-06-15T16:33:04.488Z","3.5.3":"2017-06-20T20:51:42.845Z","3.5.4":"2017-06-20T21:01:14.795Z","3.6.0":"2017-06-21T18:40:27.636Z","3.6.1":"2017-06-23T23:21:38.454Z","4.0.0-alpha1":"2017-06-25T11:41:25.804Z","4.0.0-alpha1-alpha.d24e2d51":"2017-06-25T11:49:00.323Z","3.6.3":"2017-06-28T16:01:37.604Z","3.6.4":"2017-07-01T08:58:39.112Z","3.7.0":"2017-07-21T06:02:24.805Z","3.7.1":"2017-08-01T20:13:39.297Z","3.8.0":"2017-08-23T13:27:00.233Z","3.8.1":"2017-08-29T10:42:12.451Z","3.8.2":"2017-08-30T17:35:33.956Z","3.9.0-alpha.1a5cdaaa":"2017-09-01T14:30:19.758Z","3.9.0":"2017-09-06T19:44:51.756Z","3.10.0":"2017-10-12T11:07:47.175Z","3.10.1":"2017-10-13T10:13:09.911Z","4.0.0-0":"2017-11-25T13:03:18.503Z","4.0.0-1":"2017-11-27T20:03:20.619Z","4.0.0-2":"2017-12-07T20:12:25.178Z","4.0.0-3":"2017-12-15T20:53:16.068Z","4.0.0-4":"2017-12-26T18:13:49.651Z","4.0.0-5":"2017-12-27T14:16:38.957Z","4.0.0-6":"2018-01-05T16:53:45.103Z","4.0.0-7":"2018-01-07T07:57:11.716Z","4.0.0-8":"2018-01-07T15:04:25.894Z","4.0.0-9":"2018-01-07T17:14:32.404Z","4.0.0-10":"2018-01-10T18:28:39.821Z","4.0.0-11":"2018-01-13T15:05:50.665Z","4.0.0-12":"2018-01-14T13:29:41.337Z","4.0.0-13":"2018-01-18T19:59:55.923Z","4.0.0-14":"2018-01-21T19:00:40.792Z","4.0.0-15":"2018-01-23T13:51:06.707Z","4.0.0-16":"2018-01-24T12:24:41.242Z","4.0.0-17":"2018-02-01T19:43:03.280Z","4.0.0-18":"2018-02-03T21:13:53.416Z","4.0.0-19":"2018-02-05T20:37:24.188Z","4.0.0-20":"2018-02-07T22:36:41.592Z","4.0.0-21":"2018-02-08T11:34:45.093Z","4.0.0":"2018-02-11T13:45:02.126Z","4.0.1":"2018-02-11T15:11:43.261Z","4.0.2":"2018-02-11T19:15:01.308Z","4.0.3":"2018-02-13T20:54:09.270Z","4.0.4":"2018-02-19T18:18:07.136Z","4.0.5":"2018-02-27T20:46:10.756Z","4.0.6":"2018-02-27T20:49:28.027Z","4.0.7":"2018-03-01T20:00:54.279Z","4.0.8":"2018-03-05T17:30:12.527Z","5.0.0-0":"2018-03-14T17:05:29.975Z","5.0.0-1":"2018-03-17T09:40:55.609Z","5.0.0-2":"2018-03-17T11:37:52.682Z","5.0.0":"2018-03-17T16:47:01.425Z","5.0.1":"2018-03-19T06:57:27.687Z","5.0.2":"2018-04-04T14:32:21.728Z","5.0.3":"2018-04-09T15:13:05.508Z","5.0.4":"2018-04-15T20:50:59.556Z","5.0.5":"2018-05-12T09:58:56.150Z","5.0.6":"2018-05-16T19:29:35.039Z","5.1.0":"2018-06-10T19:39:05.227Z","5.1.1":"2018-06-12T20:49:50.816Z","5.2.0":"2018-06-26T17:38:06.988Z","5.3.0":"2018-07-02T18:35:22.853Z","5.4.0":"2018-08-08T19:56:48.812Z","5.4.1":"2018-08-21T06:00:39.211Z","5.4.2":"2018-08-21T17:52:33.856Z","5.5.0":"2018-09-01T16:51:53.282Z","6.0.0-alpha.0":"2018-09-04T19:07:09.644Z","5.6.0":"2018-09-09T10:00:00.675Z","5.6.1":"2018-09-10T19:48:17.287Z","6.0.0-alpha.1":"2018-09-12T18:20:24.927Z","6.0.0-alpha.2":"2018-09-17T19:18:40.555Z","6.0.0-alpha.3":"2018-09-18T13:22:12.762Z","6.0.0-rc.0":"2018-09-29T12:36:38.404Z","6.0.0-rc.1":"2018-09-30T08:01:23.441Z","6.0.0-rc.3":"2018-10-07T19:24:05.934Z","6.0.0-rc.5":"2018-10-08T22:04:55.084Z","6.0.0":"2018-10-13T21:14:27.796Z","6.0.1":"2018-10-14T10:03:58.998Z","6.0.2":"2018-10-16T20:26:33.487Z","6.0.3":"2018-10-17T21:16:21.048Z","6.1.0":"2018-10-28T17:16:05.611Z","6.1.1":"2018-10-29T17:55:30.866Z","6.1.2":"2018-11-01T20:18:56.510Z","6.1.3":"2018-11-01T22:41:47.960Z","6.1.4":"2018-11-03T18:23:51.945Z","6.1.5":"2018-11-07T13:50:20.555Z","6.2.0":"2018-11-11T12:32:19.693Z","6.2.1":"2018-11-11T12:57:23.708Z","6.3.0":"2018-11-24T18:06:58.213Z","6.3.1":"2018-11-25T11:05:24.164Z","7.0.0":"2018-11-29T23:06:40.714Z","7.0.1":"2018-12-03T19:13:07.505Z","7.0.2":"2018-12-05T14:29:19.556Z","7.0.4":"2018-12-13T18:31:34.127Z","7.0.5":"2018-12-27T10:00:51.432Z","7.1.0":"2019-01-21T19:57:07.483Z","7.1.1":"2019-01-27T23:04:37.481Z","7.1.2":"2019-02-06T20:12:34.998Z","7.1.3":"2019-02-11T08:19:12.627Z","7.1.4":"2019-02-11T09:14:15.487Z","7.1.5":"2019-02-11T10:18:58.621Z","7.1.6":"2019-02-11T10:46:45.424Z","7.1.7":"2019-02-11T11:18:23.019Z","7.1.8":"2019-02-19T20:38:20.918Z","7.1.9":"2019-02-20T17:43:24.840Z","7.1.10":"2019-03-11T16:30:31.239Z","7.1.11":"2019-03-24T08:19:35.851Z","7.1.12":"2019-04-24T21:07:12.771Z","7.1.13":"2019-05-30T19:01:19.600Z","7.2.0":"2019-07-24T14:24:07.698Z","7.2.1":"2019-07-25T19:47:40.312Z","7.3.0":"2019-08-13T19:39:39.693Z","7.3.1":"2019-08-22T15:15:54.836Z","7.3.2":"2019-10-08T19:00:34.667Z","7.3.3":"2019-11-19T18:33:02.528Z","7.4.0":"2020-01-28T19:00:28.695Z","7.4.1":"2020-02-25T20:55:39.951Z","7.4.2":"2020-03-02T08:35:30.196Z","7.4.3":"2020-08-21T06:00:08.925Z","7.4.4":"2020-09-19T06:34:45.426Z","7.4.5":"2020-09-19T08:49:40.331Z","7.4.6":"2020-10-22T12:17:42.384Z","5.6.2":"2021-01-13T12:26:14.932Z","7.4.7":"2021-01-13T12:38:36.200Z","7.4.8":"2021-02-14T15:19:25.422Z","7.4.9":"2021-08-21T19:22:50.202Z","7.4.10":"2021-09-11T06:31:58.851Z","8.0.0-alpha.0":"2021-09-22T12:06:15.125Z","8.0.0-alpha.1":"2021-10-25T08:32:33.476Z","8.0.0-alpha.2":"2021-11-03T20:37:49.464Z","7.4.11":"2021-11-03T21:23:09.814Z","8.0.0-alpha.3":"2021-11-24T18:49:11.084Z","8.0.0-alpha.4":"2022-02-20T18:34:03.238Z","8.0.0-alpha.5":"2022-03-11T12:28:32.449Z","8.0.0-alpha.6":"2022-05-24T21:10:15.837Z","8.0.0":"2022-06-17T11:38:09.612Z","8.0.1":"2022-06-19T06:34:42.225Z","8.0.2":"2022-08-02T16:07:34.230Z","8.0.3":"2022-08-18T16:18:10.966Z","8.0.4":"2022-10-16T12:08:07.922Z","8.0.5":"2022-11-27T14:51:53.718Z","8.0.6":"2023-02-08T18:05:46.537Z","8.1.0":"2023-03-26T08:27:37.258Z","8.1.1":"2023-04-19T19:25:37.829Z","8.2.0":"2023-05-25T13:56:45.648Z","8.2.1":"2023-05-28T08:36:57.907Z","8.2.2":"2023-06-30T09:34:25.277Z","8.2.3":"2023-12-10T19:17:42.873Z","5.6.3":"2024-07-20T18:49:02.462Z","9.0.0-alpha.1":"2024-11-26T20:38:45.660Z","9.0.0-alpha.2":"2024-11-26T20:59:38.903Z","9.0.0-alpha.3":"2025-01-22T22:41:38.386Z","9.0.0-alpha.4":"2025-01-23T22:24:22.517Z","9.0.0":"2025-01-24T06:49:34.505Z","9.0.1":"2025-01-25T07:03:45.661Z","9.0.2":"2025-02-09T18:12:09.686Z","9.0.3":"2025-03-01T13:12:03.384Z","9.0.4":"2025-09-13T14:47:44.784Z","9.0.5":"2025-11-24T07:18:42.758Z","9.0.7":"2025-12-10T07:21:50.033Z","9.0.8":"2025-12-19T13:57:34.278Z","9.0.9":"2025-12-20T12:41:59.011Z","9.0.10":"2025-12-21T07:25:23.523Z","9.0.11":"2026-01-30T10:39:01.196Z","9.0.12-alpha.1":"2026-04-06T18:02:02.243Z","9.1.0":"2026-04-07T13:22:32.110Z"},"readmeFilename":"README.md","homepage":"https://github.com/infernojs/inferno#readme"}