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.
37 lines
1.0 KiB
JSON
37 lines
1.0 KiB
JSON
{
|
|
"name": "js-sha1",
|
|
"version": "0.5.0",
|
|
"description": "A simple SHA1 hash function for JavaScript supports UTF-8 encoding.",
|
|
"main": "src/sha1.js",
|
|
"devDependencies": {
|
|
"expect.js": "~0.3.1",
|
|
"jscoverage": "~0.5.9",
|
|
"mocha": "~2.3.4",
|
|
"requirejs": "^2.1.22",
|
|
"uglifyjs": "~2.4.10"
|
|
},
|
|
"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/sha1.js --compress --mangle --comments --output build/sha1.min.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/emn178/js-sha1.git"
|
|
},
|
|
"keywords": [
|
|
"sha",
|
|
"sha1",
|
|
"encryption",
|
|
"cryptography",
|
|
"HMAC"
|
|
],
|
|
"license": "MIT",
|
|
"author": "Chen, Yi-Cyuan <emn178@gmail.com>",
|
|
"homepage": "https://github.com/emn178/js-sha1",
|
|
"bugs": {
|
|
"url": "https://github.com/emn178/js-sha1/issues"
|
|
}
|
|
}
|