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.
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "js-sha1",
|
|
"version": "0.7.0",
|
|
"description": "A simple SHA1 hash function for JavaScript supports UTF-8 encoding.",
|
|
"main": "src/sha1.js",
|
|
"devDependencies": {
|
|
"expect.js": "~0.3.1",
|
|
"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",
|
|
"build": "uglifyjs src/sha1.js -c -m eval --comments -o 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"
|
|
},
|
|
"nyc": {
|
|
"exclude": [
|
|
"tests"
|
|
]
|
|
},
|
|
"browser": {
|
|
"crypto": false,
|
|
"buffer": false
|
|
}
|
|
}
|