UNPKG

ts-sha1

Version:

A simple SHA1 hash function for JavaScript supports UTF-8 encoding.

42 lines (41 loc) 1.04 kB
{ "name": "ts-sha1", "version": "0.6.1", "description": "A simple SHA1 hash function for JavaScript supports UTF-8 encoding.", "main": "src/sha1.js", "devDependencies": { "expect.js": "~0.3.1", "mocha": "~2.3.4", "nyc": "^11.3.0", "requirejs": "^2.1.22", "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/ernesto-glz/js-sha1.git" }, "keywords": [ "sha", "sha1", "encryption", "cryptography", "HMAC" ], "license": "MIT", "author": "Chen, Yi-Cyuan <emn178@gmail.com>", "homepage": "https://github.com/ernesto-glz/js-sha1", "bugs": { "url": "https://github.com/ernesto-glz/js-sha1/issues" }, "nyc": { "exclude": [ "tests" ] } }