GT2/GT2-Android/node_modules/md5hex/package.json

88 lines
3.1 KiB
JSON
Raw Normal View History

{
"_args": [
[
{
"raw": "md5hex@^1.0.0",
"scope": null,
"escapedName": "md5hex",
"name": "md5hex",
"rawSpec": "^1.0.0",
"spec": ">=1.0.0 <2.0.0",
"type": "range"
},
"/home/jdaugherty/work/GT2/GT2-Android/node_modules/xdl"
]
],
"_from": "md5hex@>=1.0.0 <2.0.0",
"_id": "md5hex@1.0.0",
"_inCache": true,
"_location": "/md5hex",
"_nodeVersion": "2.2.1",
"_npmUser": {
"name": "ccheever",
"email": "ccheever@gmail.com"
},
"_npmVersion": "2.11.0",
"_phantomChildren": {},
"_requested": {
"raw": "md5hex@^1.0.0",
"scope": null,
"escapedName": "md5hex",
"name": "md5hex",
"rawSpec": "^1.0.0",
"spec": ">=1.0.0 <2.0.0",
"type": "range"
},
"_requiredBy": [
"/xdl"
],
"_resolved": "https://registry.npmjs.org/md5hex/-/md5hex-1.0.0.tgz",
"_shasum": "ed74b477a2ee9369f75efee2f08d5915e52a42e8",
"_shrinkwrap": null,
"_spec": "md5hex@^1.0.0",
"_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/xdl",
"author": {
"name": "exponent.team@gmail.com"
},
"bugs": {
"url": "https://github.com/650Industries/md5hex/issues"
},
"dependencies": {},
"description": "Thin wrapper around the crypto module that creates an MD5 hex digest of a given string or buffer",
"devDependencies": {},
"directories": {},
"dist": {
"shasum": "ed74b477a2ee9369f75efee2f08d5915e52a42e8",
"tarball": "https://registry.npmjs.org/md5hex/-/md5hex-1.0.0.tgz"
},
"gitHead": "6663a1403a9d349038fe762f16deebb943ae5af5",
"homepage": "https://github.com/650Industries/md5hex#readme",
"keywords": [
"md5hex",
"md5",
"hex",
"hash",
"crypto"
],
"license": "MIT",
"main": "index.js",
"maintainers": [
{
"name": "ccheever",
"email": "ccheever@gmail.com"
}
],
"name": "md5hex",
"optionalDependencies": {},
"readme": "# md5hex\nThin wrapper around the crypto module that creates an MD5 hex digest of a given string or buffer\n\n```js\n// Basic usage\nvar hexHash = md5hex('A string you want to hash'); // (You can also pass in a buffer)\n// 'afb6e4ac5196aa6cddcfbd8fe26cf65b'\n\n\n// Optional second argument lets you trim the length\nvar hexHash = md5hex('A string you want to hash', 6);\n// 'afb6e4'\n\n// Or you can give an options object as the second argument to add a salt\nvar hexHash = md5hex('A string you want to prefix with a salt', {salt: 'MYSALT!'})\n// Same as md5hex('MYSALT!' + 'A string you want to prefix with a salt')\n\nvar hexHash = md5hex('A string you want to prefix with a salt', {saltPrefix: 'SALT!', saltSuffix: 'MORESALT!'})\n// Same as md5hex('SALT!' + 'A string you want to prefix with a salt' + 'MORESALT!')\n\n// And control the length through the options object\nvar hexHash = md5hex('A string you want a short hash of', {length: 6});\n// '30540f'\n\n\n\n```\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/650Industries/md5hex.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"version": "1.0.0"
}