{
  "_args": [
    [
      "ieee754@https://registry.npmjs.org/ieee754/-/ieee754-1.1.6.tgz",
      "/Users/nw/flint/packages/flint"
    ]
  ],
  "_from": "ieee754@>=1.1.4 <2.0.0",
  "_id": "ieee754@1.1.6",
  "_inCache": true,
  "_location": "/ieee754",
  "_phantomChildren": {},
  "_requested": {
    "name": "ieee754",
    "raw": "ieee754@https://registry.npmjs.org/ieee754/-/ieee754-1.1.6.tgz",
    "rawSpec": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.6.tgz",
    "scope": null,
    "spec": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.6.tgz",
    "type": "remote"
  },
  "_requiredBy": [
    "/buffer"
  ],
  "_resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.6.tgz",
  "_shasum": "2e1013219c6d6712973ec54d981ec19e5579de97",
  "_shrinkwrap": null,
  "_spec": "ieee754@https://registry.npmjs.org/ieee754/-/ieee754-1.1.6.tgz",
  "_where": "/Users/nw/flint/packages/flint",
  "author": {
    "email": "feross@feross.org",
    "name": "Feross Aboukhadijeh",
    "url": "http://feross.org/"
  },
  "bugs": {
    "url": "https://github.com/feross/ieee754/issues"
  },
  "contributors": [
    {
      "name": "Romain Beauxis",
      "email": "toots@rastageeks.org"
    }
  ],
  "dependencies": {},
  "description": "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object",
  "devDependencies": {
    "standard": "^4.1.1",
    "tape": "^4.0.0",
    "zuul": "^3.0.0"
  },
  "homepage": "https://github.com/feross/ieee754#readme",
  "keywords": [
    "IEEE 754",
    "buffer",
    "convert",
    "floating point",
    "ieee754"
  ],
  "license": "MIT",
  "main": "index.js",
  "name": "ieee754",
  "optionalDependencies": {},
  "readme": "# ieee754 [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][npm-url]\n\n[![saucelabs][saucelabs-image]][saucelabs-url]\n\n[travis-image]: https://img.shields.io/travis/feross/ieee754.svg?style=flat\n[travis-url]: https://travis-ci.org/feross/ieee754\n[npm-image]: https://img.shields.io/npm/v/ieee754.svg?style=flat\n[npm-url]: https://npmjs.org/package/ieee754\n[downloads-image]: https://img.shields.io/npm/dm/ieee754.svg?style=flat\n[saucelabs-image]: https://saucelabs.com/browser-matrix/ieee754.svg\n[saucelabs-url]: https://saucelabs.com/u/ieee754\n\n### Read/write IEEE754 floating point numbers from/to a Buffer or array-like object.\n\n## install\n\n```\nnpm install ieee754\n```\n\n## methods\n\n`var ieee754 = require('ieee754')`\n\nThe `ieee754` object has the following functions:\n\n```\nieee754.read = function (buffer, offset, isLE, mLen, nBytes)\nieee754.write = function (buffer, value, offset, isLE, mLen, nBytes)\n```\n\nThe arguments mean the following:\n\n- buffer = the buffer\n- offset = offset into the buffer\n- value = value to set (only for `write`)\n- isLe = is little endian?\n- mLen = mantissa length\n- nBytes = number of bytes\n\n## what is ieee754?\n\nThe IEEE Standard for Floating-Point Arithmetic (IEEE 754) is a technical standard for floating-point computation. [Read more](http://en.wikipedia.org/wiki/IEEE_floating_point).\n\n## mit license\n\nCopyright (C) 2013 [Feross Aboukhadijeh](http://feross.org) & Romain Beauxis.\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git://github.com/feross/ieee754.git"
  },
  "scripts": {
    "test": "standard && npm run test-node && npm run test-browser",
    "test-browser": "zuul -- test/*.js",
    "test-browser-local": "zuul --local -- test/*.js",
    "test-node": "tape test/*.js"
  },
  "version": "1.1.6"
}
