{
  "manifest": {
    "name": "performance-now",
    "description": "Implements performance.now (based on process.hrtime).",
    "keywords": [],
    "version": "2.1.0",
    "author": {
      "name": "Braveg1rl",
      "email": "braveg1rl@outlook.com"
    },
    "license": "MIT",
    "homepage": "https://github.com/braveg1rl/performance-now",
    "bugs": {
      "url": "https://github.com/braveg1rl/performance-now/issues"
    },
    "repository": {
      "type": "git",
      "url": "git://github.com/braveg1rl/performance-now.git"
    },
    "private": false,
    "dependencies": {},
    "devDependencies": {
      "bluebird": "^3.4.7",
      "call-delayed": "^1.0.0",
      "chai": "^3.5.0",
      "chai-increasing": "^1.2.0",
      "coffee-script": "~1.12.2",
      "mocha": "~3.2.0",
      "pre-commit": "^1.2.2"
    },
    "optionalDependencies": {},
    "main": "lib/performance-now.js",
    "scripts": {
      "build": "mkdir -p lib && rm -rf lib/* && node_modules/.bin/coffee --compile -m --output lib/ src/",
      "prepublish": "npm test",
      "pretest": "npm run build",
      "test": "node_modules/.bin/mocha",
      "watch": "node_modules/.bin/coffee --watch --compile --output lib/ src/"
    },
    "typings": "src/index.d.ts",
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-performance-now-2.1.0-6309f4e0e5fa913ec1c69307ae364b4b377c9e7b-integrity/node_modules/performance-now/package.json",
    "readmeFilename": "README.md",
    "readme": "# performance-now [![Build Status](https://travis-ci.org/braveg1rl/performance-now.png?branch=master)](https://travis-ci.org/braveg1rl/performance-now) [![Dependency Status](https://david-dm.org/braveg1rl/performance-now.png)](https://david-dm.org/braveg1rl/performance-now)\n\nImplements a function similar to `performance.now` (based on `process.hrtime`).\n\nModern browsers have a `window.performance` object with - among others - a `now` method which gives time in milliseconds, but with sub-millisecond precision. This module offers the same function based on the Node.js native `process.hrtime` function.\n\nUsing `process.hrtime` means that the reported time will be monotonically increasing, and not subject to clock-drift.\n\nAccording to the [High Resolution Time specification](http://www.w3.org/TR/hr-time/), the number of milliseconds reported by `performance.now` should be relative to the value of `performance.timing.navigationStart`.\n\nIn the current version of the module (2.0) the reported time is relative to the time the current Node process has started (inferred from `process.uptime()`).\n\nVersion 1.0 reported a different time. The reported time was relative to the time the module was loaded (i.e. the time it was first `require`d). If you need this functionality, version 1.0 is still available on NPM.\n\n## Example usage\n\n```javascript\nvar now = require(\"performance-now\")\nvar start = now()\nvar end = now()\nconsole.log(start.toFixed(3)) // the number of milliseconds the current node process is running\nconsole.log((start-end).toFixed(3)) // ~ 0.002 on my system\n```\n\nRunning the now function two times right after each other yields a time difference of a few microseconds. Given this overhead, I think it's best to assume that the precision of intervals computed with this method is not higher than 10 microseconds, if you don't know the exact overhead on your own system.\n\n## License\n\nperformance-now is released under the [MIT License](http://opensource.org/licenses/MIT).\nCopyright (c) 2017 Braveg1rl\n",
    "licenseText": "Copyright (c) 2013 Braveg1rl\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz",
    "hash": "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b",
    "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==",
    "registry": "npm",
    "packageName": "performance-now",
    "cacheIntegrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns="
  },
  "registry": "npm",
  "hash": "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
}