{
  "name": "math-float64-get-high-word",
  "version": "1.0.0",
  "description": "Returns a 32-bit integer corresponding to the more significant 32 bits of a double-precision floating-point number.",
  "author": {
    "name": "Athan Reines",
    "email": "kgryte@gmail.com"
  },
  "contributors": [
    {
      "name": "Athan Reines",
      "email": "kgryte@gmail.com"
    }
  ],
  "scripts": {
    "test": "if [ \"${TRAVIS}\" ]; then npm run test-ci; else npm run test-local; fi",
    "test-local": "tape \"./test/*.js\" | tap-spec",
    "test-ci": "npm run test-local && xvfb-run npm run test-browsers",
    "test-cov": "istanbul cover --dir ./reports/coverage --report lcov tape -- \"./test/*.js\"",
    "test-browsers": "browserify -p ./node_modules/proxyquire-universal ./test/*.js | testling | tap-spec",
    "coverage": "istanbul cover --dir ./reports/codecov/coverage --report lcovonly tape -- \"./test/*.js\" && cat ./reports/codecov/coverage/lcov.info | codecov && rm -rf ./reports/codecov"
  },
  "main": "./lib",
  "repository": {
    "type": "git",
    "url": "git://github.com/math-io/float64-get-high-word.git"
  },
  "keywords": [
    "math.io",
    "math-io",
    "mathematics",
    "math",
    "compute.io",
    "compute-io",
    "computation",
    "compute",
    "float64",
    "floating-point",
    "float",
    "double",
    "dbl",
    "words",
    "word",
    "high",
    "sign",
    "signbit",
    "significand",
    "mantissa",
    "exponent",
    "fraction",
    "ieee754"
  ],
  "bugs": {
    "url": "https://github.com/math-io/float64-get-high-word/issues"
  },
  "dependencies": {
    "utils-is-little-endian": "^1.0.0"
  },
  "devDependencies": {
    "browserify": "12.x.x",
    "codecov": "1.x.x",
    "const-ninf-float64": "^1.0.0",
    "const-pinf-float64": "^1.0.0",
    "istanbul": "^0.4.1",
    "jshint": "2.x.x",
    "jshint-stylish": "2.x.x",
    "math-float64-bits": "^1.0.0",
    "math-floor": "^1.0.1",
    "math-power": "^1.0.0",
    "proxyquire": "^1.7.3",
    "proxyquire-universal": "^1.0.8",
    "proxyquireify": "^3.0.1",
    "tap-spec": "4.x.x",
    "tape": "4.x.x",
    "testling": "1.x.x",
    "utils-left-pad-string": "^1.0.1",
    "utils-repeat-string": "^1.0.3"
  },
  "testling": {
    "files": [
      "test/*.js"
    ],
    "browsers": [
      "iexplore/6.0..latest",
      "firefox/3.0..latest",
      "firefox/nightly",
      "chrome/4.0..latest",
      "chrome/canary",
      "opera/10.0..latest",
      "opera/next",
      "safari/4.0..latest",
      "ipad/6.0..latest",
      "iphone/6.0..latest",
      "android-browser/4.2..latest"
    ]
  },
  "license": "MIT"
}
