{
  "_args": [
    [
      {
        "raw": "os-shim@^0.1.2",
        "scope": null,
        "escapedName": "os-shim",
        "name": "os-shim",
        "rawSpec": "^0.1.2",
        "spec": ">=0.1.2 <0.2.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/spawn-sync"
    ]
  ],
  "_from": "os-shim@>=0.1.2 <0.2.0",
  "_id": "os-shim@0.1.3",
  "_inCache": true,
  "_location": "/os-shim",
  "_nodeVersion": "0.12.7",
  "_npmUser": {
    "name": "h2non",
    "email": "tomas@aparicio.me"
  },
  "_npmVersion": "2.11.3",
  "_phantomChildren": {},
  "_requested": {
    "raw": "os-shim@^0.1.2",
    "scope": null,
    "escapedName": "os-shim",
    "name": "os-shim",
    "rawSpec": "^0.1.2",
    "spec": ">=0.1.2 <0.2.0",
    "type": "range"
  },
  "_requiredBy": [
    "/spawn-sync"
  ],
  "_resolved": "https://registry.npmjs.org/os-shim/-/os-shim-0.1.3.tgz",
  "_shasum": "6b62c3791cf7909ea35ed46e17658bb417cb3917",
  "_shrinkwrap": null,
  "_spec": "os-shim@^0.1.2",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/spawn-sync",
  "bugs": {
    "url": "https://github.com/h2non/node-os-shim/issues"
  },
  "contributors": [
    {
      "name": "Tomas Aparicio",
      "email": "tomas@aparicio.me"
    }
  ],
  "dependencies": {},
  "description": "Native OS module API shim for older node.js versions",
  "devDependencies": {
    "expect.js": "~0.2.0",
    "mocha": "~1.15.1"
  },
  "directories": {
    "lib": "./lib"
  },
  "dist": {
    "shasum": "6b62c3791cf7909ea35ed46e17658bb417cb3917",
    "tarball": "https://registry.npmjs.org/os-shim/-/os-shim-0.1.3.tgz"
  },
  "engines": {
    "node": ">= 0.4.0"
  },
  "gitHead": "e386b47ae97206eb3cf06f45a89ee83b3c497c69",
  "homepage": "http://github.com/h2non/node-os-shim",
  "keywords": [
    "os",
    "tmpdir",
    "endianness",
    "shim"
  ],
  "licenses": "MIT",
  "main": "lib/os",
  "maintainers": [
    {
      "name": "h2non",
      "email": "tomas@aparicio.me"
    }
  ],
  "name": "os-shim",
  "optionalDependencies": {},
  "readme": "# Node OS shim [![Build Status](https://secure.travis-ci.org/AdesisNetlife/node-os-shim.png?branch=master)][travis] [![NPM version](https://badge.fury.io/js/os-shim.png)][badge]\n\n> Native OS module API shim for older node.js versions\n\n## About\n\nNode.js team froze the [OS module API][1] in 0.10.x version, however the API differs a bit in lower node.js versions\n\nThis shim just provides the missing OS module API that is available on latest node.js versions.\nYou can now use the `os` package in old node.js versions without fear.\n\nIt's based on the current node.js [implementations][2]\n\n## Installation\n\n```\n$ npm install os-shim --save[-dev]\n```\n\n## Usage\n\nYou simply should use the `os-shim` module instead of the `os` native node.js module\n\n```js\nvar os = require('os-shim')\nos.tmpdir()\n```\nYou can mutate the `os-shim` module object without worring about it can create side effects in the native `os` module object\n\n## The missing API\n\nThe following API is missing in node.js `0.8.x` and lower versions\n\n#### os.tmpdir()\nReturns the operating system's default directory for temp files\n\n#### os.endianness()\nReturns the endianness of the CPU. Possible values are \"BE\" or \"LE\"\n\n#### os.EOL\nA constant defining the appropriate End-of-line marker for the operating system\n\n#### os.platform()\nReturns the operating system platform\n\n#### os.arch()\nReturns the operating system CPU architecture\n\n## Contributing\n\nInstead of a formal styleguide, take care to maintain the existing coding style.\n\nAdd unit tests for any new or changed functionality\n\n### Development\n\nClone the repository\n```shell\n$ git clone https://github.com/adesisnetlife/node-os-shim.git && cd node-os-shim\n```\n\nInstall dependencies\n```shell\n$ npm install\n```\n\nRun tests\n```shell\n$ make test\n```\n\n## Release History\n\n- **0.1.1** `2013-12-11`\n    - Add platform() and arch() methods (for Node.js 0.4.x)\n- **0.1.0** `2013-12-11`\n    - Initial release\n\n## To Do\n\n- Add `os.networkInterfaces()` shim method\n\nDo you miss something? Open an issue or make a PR!\n\n## Contributors\n\n* [Tomas Aparicio](http://github.com/h2non)\n\n## License\n\nCopyright (c) 2013 Adesis Netlife S.L and contributors\n\nReleased under MIT license\n\n[1]: http://nodejs.org/api/os.html\n[2]: https://github.com/joyent/node/blob/master/lib/os.js\n[travis]: http://travis-ci.org/AdesisNetlife/node-os-shim\n[badge]: http://badge.fury.io/js/os-shim\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/h2non/node-os-shim.git"
  },
  "scripts": {
    "test": "make test"
  },
  "version": "0.1.3"
}
