{
  "_args": [
    [
      {
        "raw": "continuable-cache@^0.3.1",
        "scope": null,
        "escapedName": "continuable-cache",
        "name": "continuable-cache",
        "rawSpec": "^0.3.1",
        "spec": ">=0.3.1 <0.4.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/body"
    ]
  ],
  "_from": "continuable-cache@>=0.3.1 <0.4.0",
  "_id": "continuable-cache@0.3.1",
  "_inCache": true,
  "_location": "/continuable-cache",
  "_npmUser": {
    "name": "raynos",
    "email": "raynos2@gmail.com"
  },
  "_npmVersion": "1.3.8",
  "_phantomChildren": {},
  "_requested": {
    "raw": "continuable-cache@^0.3.1",
    "scope": null,
    "escapedName": "continuable-cache",
    "name": "continuable-cache",
    "rawSpec": "^0.3.1",
    "spec": ">=0.3.1 <0.4.0",
    "type": "range"
  },
  "_requiredBy": [
    "/body"
  ],
  "_resolved": "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz",
  "_shasum": "bd727a7faed77e71ff3985ac93351a912733ad0f",
  "_shrinkwrap": null,
  "_spec": "continuable-cache@^0.3.1",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/body",
  "author": {
    "name": "Raynos",
    "email": "raynos2@gmail.com"
  },
  "bugs": {
    "url": "https://github.com/Raynos/continuable-cache/issues",
    "email": "raynos2@gmail.com"
  },
  "contributors": [
    {
      "name": "Raynos"
    }
  ],
  "dependencies": {},
  "description": "Cache a continuable",
  "devDependencies": {
    "tape": "~0.2.2"
  },
  "directories": {},
  "dist": {
    "shasum": "bd727a7faed77e71ff3985ac93351a912733ad0f",
    "tarball": "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz"
  },
  "homepage": "https://github.com/Raynos/continuable-cache",
  "keywords": [],
  "licenses": [
    {
      "type": "MIT",
      "url": "http://github.com/Raynos/continuable-cache/raw/master/LICENSE"
    }
  ],
  "main": "index",
  "maintainers": [
    {
      "name": "raynos",
      "email": "raynos2@gmail.com"
    }
  ],
  "name": "continuable-cache",
  "optionalDependencies": {},
  "readme": "# continuable-cache\n\n<!-- [![build status][1]][2] [![dependency status][3]][4]\n\n[![browser support][5]][6] -->\n\nCache a continuable\n\n## Example\n\n```js\nvar cache = require(\"continuable-cache\")\nvar fs = require(\"fs\")\n\nvar readFile = function (uri) { return function (cb) {\n    fs.readFile(uri, cb)\n} }\n\nvar continuableFile = readFile(\"./package.json\")\n\nvar cached = cache(continuableFile)\n\n// will only do one file read operation\ncached(function (err, file) {\n    /* calls out to fs.readFile */\n})\n\ncached(function (err, file) {\n    /* get's either err or file from cache in cached */\n})\n```\n\n## Installation\n\n`npm install continuable-cache`\n\n## Contributors\n\n - Raynos\n\n## MIT Licenced\n\n  [1]: https://secure.travis-ci.org/Raynos/continuable-cache.png\n  [2]: http://travis-ci.org/Raynos/continuable-cache\n  [3]: https://david-dm.org/Raynos/continuable-cache/status.png\n  [4]: https://david-dm.org/Raynos/continuable-cache\n  [5]: https://ci.testling.com/Raynos/continuable-cache.png\n  [6]: https://ci.testling.com/Raynos/continuable-cache\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git://github.com/Raynos/continuable-cache.git"
  },
  "scripts": {
    "build-test": "browserify-server --bundle=test/index.js -o test/static/bundle.js --debug",
    "example": "browservefy ./examples/simple.js --browserify='browserify-server' --live --indexed=./examples -- --debug --bundle",
    "test": "node ./test/index.js",
    "tryme": "tryme ./examples --live"
  },
  "testling": {
    "files": "test/index.js",
    "browsers": [
      "ie/8..latest",
      "firefox/16..latest",
      "firefox/nightly",
      "chrome/22..latest",
      "chrome/canary",
      "opera/12..latest",
      "opera/next",
      "safari/5.1..latest",
      "ipad/6.0..latest",
      "iphone/6.0..latest"
    ]
  },
  "version": "0.3.1"
}
