aboutsummaryrefslogtreecommitdiff
path: root/node_modules/create-hmac/package.json
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-24 15:10:37 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-24 15:11:17 +0200
commit7a3df06eb573d36142bd1a8e03c5ce8752d300b3 (patch)
tree70bfaea8884c374876f607774850a3a51c0cb381 /node_modules/create-hmac/package.json
parentaca1143cb9eed16cf37f04e475e4257418dd18ac (diff)
fix build issues and add typedoc
Diffstat (limited to 'node_modules/create-hmac/package.json')
-rw-r--r--node_modules/create-hmac/package.json18
1 files changed, 15 insertions, 3 deletions
diff --git a/node_modules/create-hmac/package.json b/node_modules/create-hmac/package.json
index f4267511c..ab116af8d 100644
--- a/node_modules/create-hmac/package.json
+++ b/node_modules/create-hmac/package.json
@@ -1,10 +1,17 @@
{
"name": "create-hmac",
- "version": "1.1.4",
+ "version": "1.1.6",
"description": "node style hmacs in the browser",
+ "files": [
+ "browser.js",
+ "index.js",
+ "legacy.js"
+ ],
"main": "index.js",
"scripts": {
- "test": "node test.js | tspec"
+ "standard": "standard",
+ "test": "npm run-script standard && npm run-script unit",
+ "unit": "node test.js | tspec"
},
"repository": {
"type": "git",
@@ -22,12 +29,17 @@
"homepage": "https://github.com/crypto-browserify/createHmac",
"devDependencies": {
"hash-test-vectors": "^1.3.2",
+ "standard": "^5.3.1",
"tap-spec": "^2.1.2",
"tape": "^3.0.3"
},
"dependencies": {
+ "cipher-base": "^1.0.3",
"create-hash": "^1.1.0",
- "inherits": "^2.0.1"
+ "inherits": "^2.0.1",
+ "ripemd160": "^2.0.0",
+ "safe-buffer": "^5.0.1",
+ "sha.js": "^2.4.8"
},
"browser": "./browser.js"
}