{
  "_args": [
    [
      {
        "raw": "mithril@github:lhorie/mithril.js#rewrite",
        "scope": null,
        "escapedName": "mithril",
        "name": "mithril",
        "rawSpec": "github:lhorie/mithril.js#rewrite",
        "spec": "github:lhorie/mithril.js#rewrite",
        "type": "hosted",
        "hosted": {
          "type": "github",
          "ssh": "git@github.com:lhorie/mithril.js.git#rewrite",
          "sshUrl": "git+ssh://git@github.com/lhorie/mithril.js.git#rewrite",
          "httpsUrl": "git+https://github.com/lhorie/mithril.js.git#rewrite",
          "gitUrl": "git://github.com/lhorie/mithril.js.git#rewrite",
          "shortcut": "github:lhorie/mithril.js#rewrite",
          "directUrl": "https://raw.githubusercontent.com/lhorie/mithril.js/rewrite/package.json"
        }
      },
      "/home/aman/Code/snapshot"
    ]
  ],
  "_from": "lhorie/mithril.js#rewrite",
  "_id": "mithril@1.0.0",
  "_inCache": true,
  "_location": "/mithril",
  "_phantomChildren": {},
  "_requested": {
    "raw": "mithril@github:lhorie/mithril.js#rewrite",
    "scope": null,
    "escapedName": "mithril",
    "name": "mithril",
    "rawSpec": "github:lhorie/mithril.js#rewrite",
    "spec": "github:lhorie/mithril.js#rewrite",
    "type": "hosted",
    "hosted": {
      "type": "github",
      "ssh": "git@github.com:lhorie/mithril.js.git#rewrite",
      "sshUrl": "git+ssh://git@github.com/lhorie/mithril.js.git#rewrite",
      "httpsUrl": "git+https://github.com/lhorie/mithril.js.git#rewrite",
      "gitUrl": "git://github.com/lhorie/mithril.js.git#rewrite",
      "shortcut": "github:lhorie/mithril.js#rewrite",
      "directUrl": "https://raw.githubusercontent.com/lhorie/mithril.js/rewrite/package.json"
    }
  },
  "_requiredBy": [
    "/"
  ],
  "_resolved": "git://github.com/lhorie/mithril.js.git#e5a9c3b95dbe188b92d976b90ce9d56766bf9441",
  "_shasum": "61075f4642710b5f0babfad6aa0818f6b1e999eb",
  "_shrinkwrap": null,
  "_spec": "mithril@github:lhorie/mithril.js#rewrite",
  "_where": "/home/aman/Code/snapshot",
  "author": {
    "name": "Leo Horie"
  },
  "bugs": {
    "url": "https://github.com/lhorie/mithril.js/issues"
  },
  "dependencies": {},
  "description": "A framework for building brilliant applications",
  "devDependencies": {
    "eslint": "^2.10.2",
    "istanbul": "^0.4.3"
  },
  "gitHead": "e5a9c3b95dbe188b92d976b90ce9d56766bf9441",
  "homepage": "https://github.com/lhorie/mithril.js#readme",
  "license": "MIT",
  "main": "index.js",
  "name": "mithril",
  "optionalDependencies": {},
  "publishConfig": {
    "tag": "beta"
  },
  "readme": "# Mithril.js - A framework for building brilliant applications\n\n[Documentation](docs) | [Migration Guide](docs/v1.x-migration.md)\n\nNote: This branch is a sneak peek for the upcoming version 1.0. It's a rewrite from the ground up and it's not backwards compatible with [Mithril 0.2.x](http://mithril.js.org). You can find preliminary [documentation here](docs) and [migration guide here](docs/v1.x-migration.md)\n\nThis rewrite aims to fix longstanding API design issues, significantly improve performance, and clean up the codebase.\n\n## Early Preview\n\nYou can install this via NPM using this command:\n\n```\nnpm install lhorie/mithril.js#rewrite\n```\n\nExamples run out of the box. Just open the HTML files.\n\n## Status\n\nThe code is fairly stable and I'm using it in production, but there may be bugs still lurking.\n\nSome examples of usage can be found in the [examples](examples) folder. [ThreadItJS](http://cdn.rawgit.com/lhorie/mithril.js/rewrite/examples/threaditjs-bundle/index.html) has the largest API surface coverage.\n\nPartial documentation can be found in the [`/docs`](docs) directory\n\n## Performance\n\nMithril's virtual DOM engine is around 500 lines of well organized code and it implements a modern search space reduction diff algorithm and a DOM recycling mechanism, which translate to top-of-class performance. See the [dbmon implementation](http://cdn.rawgit.com/lhorie/mithril.js/rewrite/examples/dbmonster/mithril/index.html) (for comparison, here are dbmon implementations for [React v15.0.2](http://cdn.rawgit.com/lhorie/mithril.js/rewrite/examples/dbmonster/react/index.html), and [Angular v2.0.0-beta.17](http://cdn.rawgit.com/lhorie/mithril.js/rewrite/examples/dbmonster/angular/index.html). All implementations are naive (i.e. apples-to-apples, no optimizations)\n\n## Robustness\n\nThere are over 4000 assertions in the test suite, and tests cover even difficult-to-test things like `location.href`, `element.innerHTML` and `XMLHttpRequest` usage.\n\n## Modularity\n\nDespite the huge improvements in performance and modularity, the new codebase is smaller than v0.2.x, currently clocking at 7.2kb min+gzip\n\nIn addition, Mithril is now completely modular: you can import only the modules that you need and easily integrate 3rd party modules if you wish to use a different library for routing, ajax, and even rendering\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lhorie/mithril.js.git"
  },
  "scripts": {
    "build": "npm run build-browser & npm run build-min",
    "build-browser": "node bundler/cli browser.js -o mithril.js",
    "build-min": "node bundler/cli browser.js -o mithril.min.js -m",
    "cover": "istanbul cover --print both ospec/bin/ospec",
    "dev": "node bundler/cli browser.js -o mithril.js -w",
    "lint": "eslint .",
    "lintdocs": "node bundler/lintdocs",
    "test": "node ospec/bin/ospec"
  },
  "version": "1.0.0"
}
