{
  "_args": [
    [
      {
        "raw": "md5-hex@^2.0.0",
        "scope": null,
        "escapedName": "md5-hex",
        "name": "md5-hex",
        "rawSpec": "^2.0.0",
        "spec": ">=2.0.0 <3.0.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/broccoli-lint-eslint"
    ]
  ],
  "_from": "md5-hex@>=2.0.0 <3.0.0",
  "_id": "md5-hex@2.0.0",
  "_inCache": true,
  "_location": "/md5-hex",
  "_nodeVersion": "4.6.2",
  "_npmOperationalInternal": {
    "host": "packages-12-west.internal.npmjs.com",
    "tmp": "tmp/md5-hex-2.0.0.tgz_1484310584188_0.43361427285708487"
  },
  "_npmUser": {
    "name": "sindresorhus",
    "email": "sindresorhus@gmail.com"
  },
  "_npmVersion": "2.15.11",
  "_phantomChildren": {},
  "_requested": {
    "raw": "md5-hex@^2.0.0",
    "scope": null,
    "escapedName": "md5-hex",
    "name": "md5-hex",
    "rawSpec": "^2.0.0",
    "spec": ">=2.0.0 <3.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/broccoli-lint-eslint"
  ],
  "_resolved": "https://registry.npmjs.org/md5-hex/-/md5-hex-2.0.0.tgz",
  "_shasum": "d0588e9f1c74954492ecd24ac0ac6ce997d92e33",
  "_shrinkwrap": null,
  "_spec": "md5-hex@^2.0.0",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/broccoli-lint-eslint",
  "author": {
    "name": "Sindre Sorhus",
    "email": "sindresorhus@gmail.com",
    "url": "sindresorhus.com"
  },
  "browser": "browser.js",
  "bugs": {
    "url": "https://github.com/sindresorhus/md5-hex/issues"
  },
  "dependencies": {
    "md5-o-matic": "^0.1.1"
  },
  "description": "Create a MD5 hash with hex encoding",
  "devDependencies": {
    "ava": "*",
    "xo": "*"
  },
  "directories": {},
  "dist": {
    "shasum": "d0588e9f1c74954492ecd24ac0ac6ce997d92e33",
    "tarball": "https://registry.npmjs.org/md5-hex/-/md5-hex-2.0.0.tgz"
  },
  "engines": {
    "node": ">=4"
  },
  "files": [
    "index.js",
    "browser.js"
  ],
  "gitHead": "5d8f3a88b2de9bfdf7e4f07f253dd88c102814df",
  "homepage": "https://github.com/sindresorhus/md5-hex#readme",
  "keywords": [
    "hash",
    "crypto",
    "md5",
    "hex",
    "buffer",
    "browser",
    "browserify"
  ],
  "license": "MIT",
  "maintainers": [
    {
      "name": "sindresorhus",
      "email": "sindresorhus@gmail.com"
    }
  ],
  "name": "md5-hex",
  "optionalDependencies": {},
  "readme": "# md5-hex [![Build Status](https://travis-ci.org/sindresorhus/md5-hex.svg?branch=master)](https://travis-ci.org/sindresorhus/md5-hex)\n\n> Create a MD5 hash with hex encoding\n\n*Please don't use MD5 hashes for anything sensitive!*\n\nWorks in the browser too, when used with browserify/webpack.\n\nCheckout [`hasha`](https://github.com/sindresorhus/hasha) if you need something more flexible.\n\n\n## Install\n\n```\n$ npm install --save md5-hex\n```\n\n\n## Usage\n\n```js\nconst fs = require('fs');\nconst md5Hex = require('md5-hex');\nconst buffer = fs.readFileSync('unicorn.png');\n\nmd5Hex(buffer);\n//=> '1abcb33beeb811dca15f0ac3e47b88d9'\n```\n\n\n## API\n\n### md5Hex(input)\n\n#### input\n\nType: `Buffer` `string` `Buffer[]` `string[]`\n\nPrefer buffers as they're faster to hash, but strings can be useful for small things.\n\nPass an array instead of concatenating strings and/or buffers. The output is the same, but arrays do not incur the overhead of concatenation.\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n",
  "readmeFilename": "readme.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sindresorhus/md5-hex.git"
  },
  "scripts": {
    "test": "xo && ava"
  },
  "version": "2.0.0"
}
