2020-04-28 16:46:47 +02:00
|
|
|
{
|
2020-05-12 12:11:25 +01:00
|
|
|
"name": "md5",
|
|
|
|
|
"description": "js function for hashing messages with MD5",
|
2021-07-28 15:07:08 +00:00
|
|
|
"version": "2.3.0",
|
2020-05-12 12:11:25 +01:00
|
|
|
"author": "Paul Vorbach <paul@vorba.ch> (http://paul.vorba.ch)",
|
|
|
|
|
"contributors": [
|
|
|
|
|
"salba"
|
|
|
|
|
],
|
|
|
|
|
"tags": [
|
|
|
|
|
"md5",
|
|
|
|
|
"hash",
|
|
|
|
|
"encryption",
|
|
|
|
|
"message digest"
|
|
|
|
|
],
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git://github.com/pvorb/node-md5.git"
|
2020-04-28 16:46:47 +02:00
|
|
|
},
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/pvorb/node-md5/issues"
|
|
|
|
|
},
|
2020-05-12 12:11:25 +01:00
|
|
|
"main": "md5.js",
|
|
|
|
|
"scripts": {
|
2021-07-28 15:07:08 +00:00
|
|
|
"test": "mocha",
|
|
|
|
|
"webpack": "webpack -p"
|
2020-05-12 12:11:25 +01:00
|
|
|
},
|
2020-04-28 16:46:47 +02:00
|
|
|
"dependencies": {
|
2021-07-28 15:07:08 +00:00
|
|
|
"charenc": "0.0.2",
|
|
|
|
|
"crypt": "0.0.2",
|
|
|
|
|
"is-buffer": "~1.1.6"
|
2020-04-28 16:46:47 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2021-07-28 15:07:08 +00:00
|
|
|
"mocha": "~2.3.4",
|
|
|
|
|
"webpack": "~2.4.1"
|
2020-04-28 16:46:47 +02:00
|
|
|
},
|
|
|
|
|
"optionalDependencies": {},
|
2020-05-12 12:11:25 +01:00
|
|
|
"license": "BSD-3-Clause"
|
2022-02-24 17:03:29 +00:00
|
|
|
}
|