package.json
 1  {
 2    "name": "md5",
 3    "description": "js function for hashing messages with MD5",
 4    "version": "2.3.0",
 5    "author": "Paul Vorbach <paul@vorba.ch> (http://paul.vorba.ch)",
 6    "contributors": [
 7      "salba"
 8    ],
 9    "tags": [
10      "md5",
11      "hash",
12      "encryption",
13      "message digest"
14    ],
15    "repository": {
16      "type": "git",
17      "url": "git://github.com/pvorb/node-md5.git"
18    },
19    "bugs": {
20      "url": "https://github.com/pvorb/node-md5/issues"
21    },
22    "main": "md5.js",
23    "scripts": {
24      "test": "mocha",
25      "webpack": "webpack -p"
26    },
27    "dependencies": {
28      "charenc": "0.0.2",
29      "crypt": "0.0.2",
30      "is-buffer": "~1.1.6"
31    },
32    "devDependencies": {
33      "mocha": "~2.3.4",
34      "webpack": "~2.4.1"
35    },
36    "optionalDependencies": {},
37    "license": "BSD-3-Clause"
38  }