You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.2 KiB
49 lines
1.2 KiB
{
|
|
"name": "js-md5",
|
|
"version": "0.8.3",
|
|
"description": "A simple MD5 hash function for JavaScript supports UTF-8 encoding.",
|
|
"main": "src/md5.js",
|
|
"devDependencies": {
|
|
"expect.js": "~0.3.1",
|
|
"jsdoc": "~4.0.2",
|
|
"mocha": "~10.2.0",
|
|
"nyc": "^15.1.0",
|
|
"requirejs": "^2.1.22",
|
|
"tiny-worker": "^2.3.0",
|
|
"uglify-js": "^3.1.9"
|
|
},
|
|
"scripts": {
|
|
"test": "nyc mocha tests/node-test.js",
|
|
"report": "nyc --reporter=html --reporter=text mocha tests/node-test.js",
|
|
"coveralls": "nyc report --reporter=text-lcov | coveralls",
|
|
"doc": "rm -rf doc;jsdoc src README.md -d doc",
|
|
"compress": "uglifyjs src/md5.js -c -m eval --comments --output build/md5.min.js",
|
|
"build": "npm run-script compress;npm run-script doc"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/emn178/js-md5.git"
|
|
},
|
|
"keywords": [
|
|
"md5",
|
|
"hash",
|
|
"encryption",
|
|
"cryptography",
|
|
"HMAC"
|
|
],
|
|
"license": "MIT",
|
|
"author": "Chen, Yi-Cyuan <emn178@gmail.com>",
|
|
"homepage": "https://github.com/emn178/js-md5",
|
|
"bugs": {
|
|
"url": "https://github.com/emn178/js-md5/issues"
|
|
},
|
|
"nyc": {
|
|
"exclude": [
|
|
"tests"
|
|
]
|
|
},
|
|
"browser": {
|
|
"crypto": false,
|
|
"buffer": false
|
|
}
|
|
}
|