You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
js-md5/package.json

41 lines
1.2 KiB
JSON

12 years ago
{
"name": "js-md5",
"version": "0.7.0",
12 years ago
"description": "A simple MD5 hash function for JavaScript supports UTF-8 encoding.",
"main": "src/md5.js",
"devDependencies": {
"expect.js": "~0.3.1",
"jscoverage": "~0.5.9",
"jsdoc": "^3.4.0",
"mocha": "~2.3.4",
"requirejs": "^2.1.22",
"uglify-js": "~2.4.10",
"webworker-threads": "^0.7.11"
},
12 years ago
"scripts": {
"test": "mocha tests/node-test.js -r jscoverage",
"report": "mocha tests/node-test.js -r jscoverage --covout=html",
"coveralls": "mocha tests/node-test.js -R mocha-lcov-reporter -r jscoverage | coveralls",
"doc": "rm -rf doc;jsdoc src README.md -d doc",
"compress": "uglifyjs src/md5.js --compress --mangle --comments --output build/md5.min.js",
"build": "npm run-script compress;npm run-script doc"
12 years ago
},
"repository": {
"type": "git",
"url": "https://github.com/emn178/js-md5.git"
},
"keywords": [
"md5",
"hash",
12 years ago
"encryption",
"cryptography",
"HMAC"
12 years ago
],
12 years ago
"license": "MIT",
"author": "Chen, Yi-Cyuan <emn178@gmail.com>",
12 years ago
"homepage": "https://github.com/emn178/js-md5",
"bugs": {
"url": "https://github.com/emn178/js-md5/issues"
}
}