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.
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"name": "js-sha512",
|
|
"version": "0.7.0",
|
|
"description": "This is a simple SHA-512, SHA-384, SHA-512/224, SHA-512/256 hash functions for JavaScript supports UTF-8 encoding.",
|
|
"main": "src/sha512.js",
|
|
"devDependencies": {
|
|
"expect.js": "~0.3.1",
|
|
"jscoverage": "^0.6.0",
|
|
"mocha": "~2.3.4",
|
|
"requirejs": "^2.1.22",
|
|
"uglifyjs": "^2.4.11",
|
|
"webworker-threads": "^0.7.11"
|
|
},
|
|
"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",
|
|
"build": "uglifyjs src/sha512.js --compress --mangle --comments --output build/sha512.min.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/emn178/js-sha512.git"
|
|
},
|
|
"keywords": [
|
|
"sha",
|
|
"sha2",
|
|
"sha384",
|
|
"sha512",
|
|
"sha512/224",
|
|
"sha512/256",
|
|
"hash",
|
|
"encryption",
|
|
"cryptography",
|
|
"HMAC"
|
|
],
|
|
"license": "MIT",
|
|
"author": "Chen, Yi-Cyuan <emn178@gmail.com>",
|
|
"homepage": "https://github.com/emn178/js-sha512",
|
|
"bugs": {
|
|
"url": "https://github.com/emn178/js-sha512/issues"
|
|
},
|
|
"dependencies": {}
|
|
}
|