108 lines
5.6 KiB
JSON
108 lines
5.6 KiB
JSON
{
|
||
"_args": [
|
||
[
|
||
{
|
||
"raw": "md5@^2.2.1",
|
||
"scope": null,
|
||
"escapedName": "md5",
|
||
"name": "md5",
|
||
"rawSpec": "^2.2.1",
|
||
"spec": ">=2.2.1 <3.0.0",
|
||
"type": "range"
|
||
},
|
||
"/home/jdaugherty/work/GT2/GT2-Android/node_modules/raven"
|
||
]
|
||
],
|
||
"_from": "md5@>=2.2.1 <3.0.0",
|
||
"_id": "md5@2.2.1",
|
||
"_inCache": true,
|
||
"_location": "/md5",
|
||
"_nodeVersion": "4.4.5",
|
||
"_npmOperationalInternal": {
|
||
"host": "packages-16-east.internal.npmjs.com",
|
||
"tmp": "tmp/md5-2.2.1.tgz_1472679629604_0.48944878415204585"
|
||
},
|
||
"_npmUser": {
|
||
"name": "pvorb",
|
||
"email": "paul@vorba.ch"
|
||
},
|
||
"_npmVersion": "3.9.3",
|
||
"_phantomChildren": {},
|
||
"_requested": {
|
||
"raw": "md5@^2.2.1",
|
||
"scope": null,
|
||
"escapedName": "md5",
|
||
"name": "md5",
|
||
"rawSpec": "^2.2.1",
|
||
"spec": ">=2.2.1 <3.0.0",
|
||
"type": "range"
|
||
},
|
||
"_requiredBy": [
|
||
"/raven"
|
||
],
|
||
"_resolved": "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz",
|
||
"_shasum": "53ab38d5fe3c8891ba465329ea23fac0540126f9",
|
||
"_shrinkwrap": null,
|
||
"_spec": "md5@^2.2.1",
|
||
"_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/raven",
|
||
"author": {
|
||
"name": "Paul Vorbach",
|
||
"email": "paul@vorba.ch",
|
||
"url": "http://paul.vorba.ch"
|
||
},
|
||
"bugs": {
|
||
"url": "https://github.com/pvorb/node-md5/issues"
|
||
},
|
||
"contributors": [
|
||
{
|
||
"name": "salba"
|
||
}
|
||
],
|
||
"dependencies": {
|
||
"charenc": "~0.0.1",
|
||
"crypt": "~0.0.1",
|
||
"is-buffer": "~1.1.1"
|
||
},
|
||
"description": "js function for hashing messages with MD5",
|
||
"devDependencies": {
|
||
"mocha": "~2.3.4"
|
||
},
|
||
"directories": {},
|
||
"dist": {
|
||
"shasum": "53ab38d5fe3c8891ba465329ea23fac0540126f9",
|
||
"tarball": "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz"
|
||
},
|
||
"gitHead": "5536a25dbe856b25d9963fd47da5eb4e1bca4250",
|
||
"homepage": "https://github.com/pvorb/node-md5#readme",
|
||
"license": "BSD-3-Clause",
|
||
"main": "md5.js",
|
||
"maintainers": [
|
||
{
|
||
"name": "coolaj86",
|
||
"email": "coolaj86@gmail.com"
|
||
},
|
||
{
|
||
"name": "pvorb",
|
||
"email": "paul@vorba.ch"
|
||
}
|
||
],
|
||
"name": "md5",
|
||
"optionalDependencies": {},
|
||
"readme": "# MD5\n\n[![build status](https://secure.travis-ci.org/pvorb/node-md5.png)](http://travis-ci.org/pvorb/node-md5)\n\na JavaScript function for hashing messages with MD5.\n\n## Installation\n\nYou can use this package on the server side as well as the client side.\n\n### [Node.js](http://nodejs.org/):\n\n~~~\nnpm install md5\n~~~\n\n\n## API\n\n~~~ javascript\nmd5(message)\n~~~\n\n * `message` -- `String` or `Buffer`\n * returns `String`\n\n\n## Usage\n\n~~~ javascript\nvar md5 = require('md5');\n\nconsole.log(md5('message'));\n~~~\n\nThis will print the following\n\n~~~\n78e731027d8fd50ed642340b7c9a63b3\n~~~\n\nIt supports buffers, too\n\n~~~ javascript\nvar fs = require('fs');\nvar md5 = require('md5');\n\nfs.readFile('example.txt', function(err, buf) {\n console.log(md5(buf));\n});\n~~~\n\n## Versions\n\nBefore version 2.0.0 there were two packages called md5 on npm, one lowercase,\none uppercase (the one you're looking at). As of version 2.0.0, all new versions\nof this module will go to lowercase [md5](https://www.npmjs.com/package/md5) on\nnpm. To use the correct version, users of this module will have to change their\ncode from `require('MD5')` to `require('md5')` if they want to use versions >=\n2.0.0.\n\n\n## Bugs and Issues\n\nIf you encounter any bugs or issues, feel free to open an issue at\n[github](https://github.com/pvorb/node-md5/issues).\n\n\n## Credits\n\nThis package is based on the work of Jeff Mott, who did a pure JS implementation\nof the MD5 algorithm that was published by Ronald L. Rivest in 1991. I needed a\nnpm package of the algorithm, so I used Jeff’s implementation for this package.\nThe original implementation can be found in the\n[CryptoJS](http://code.google.com/p/crypto-js/) project.\n\n\n## License\n\n~~~\nCopyright © 2011-2015, Paul Vorbach.\nCopyright © 2009, Jeff Mott.\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, this\n list of conditions and the following disclaimer in the documentation and/or\n other materials provided with the distribution.\n* Neither the name Crypto-JS nor the names of its contributors may be used to\n endorse or promote products derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n~~~\n",
|
||
"readmeFilename": "README.md",
|
||
"repository": {
|
||
"type": "git",
|
||
"url": "git://github.com/pvorb/node-md5.git"
|
||
},
|
||
"scripts": {
|
||
"test": "mocha"
|
||
},
|
||
"tags": [
|
||
"md5",
|
||
"hash",
|
||
"encryption",
|
||
"message digest"
|
||
],
|
||
"version": "2.2.1"
|
||
}
|