{ "name": "js-sha256", "version": "0.9.0", "description": "A simple SHA-256 / SHA-224 hash function for JavaScript supports UTF-8 encoding.", "main": "src/sha256.js", "devDependencies": { "expect.js": "~0.3.1", "mocha": "~2.3.4", "nyc": "^11.3.0", "uglify-js": "^3.1.9", "webworker-threads": "^0.7.13" }, "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/sha256.js -c -m eval --comments -o build/sha256.min.js" }, "repository": { "type": "git", "url": "https://github.com/emn178/js-sha256.git" }, "keywords": [ "sha", "sha2", "sha224", "sha256", "hash", "encryption", "cryptography", "HMAC" ], "license": "MIT", "author": "Chen, Yi-Cyuan <emn178@gmail.com>", "homepage": "https://github.com/emn178/js-sha256", "bugs": { "url": "https://github.com/emn178/js-sha256/issues" }, "nyc": { "exclude": [ "tests" ] } }