packages/js-crypto-hmac/package.json
{ "name": "js-crypto-hmac", "version": "1.0.7", "description": "Universal Module for HMAC (Hash-based Message Authentication Code) in JavaScript", "main": "dist/index.js", "scripts": { "test": "yarn jest", "karma": "karma start", "karma:window": "yarn webpack && cross-env TEST_ENV=window karma start", "babel": "cross-env NODE_ENV=production tsc --build ./tsconfig.json", "webpack": "webpack --mode development --config webpack.config.js", "webpack:prod": "webpack --mode production --config webpack.config.js", "build": "rm -rf ./dist && yarn babel && yarn webpack:prod", "cleanup": "rm -rf ./dist coverage ./node_modules" }, "author": "Jun Kurihara", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/junkurihara/jscu.git" }, "bugs": { "url": "https://github.com/junkurihara/jscu/issues" }, "homepage": "https://github.com/junkurihara/jscu/tree/master/packages/js-crypto-hmac#readme", "keywords": [ "crypto", "hmac", "webcrypto" ], "devDependencies": { "js-crypto-random": "^1.0.5", "js-encoding-utils": "0.7.3" }, "dependencies": { "js-crypto-env": "^1.0.5", "js-crypto-hash": "^1.0.7" }}