diff options
author | Brian Turek <brian.turek@gmail.com> | 2016-07-10 13:31:34 -0400 |
---|---|---|
committer | Brian Turek <brian.turek@gmail.com> | 2016-07-10 13:31:34 -0400 |
commit | e9e8fe9c57bf96aacfe74d9d9da62660b807da97 (patch) | |
tree | 641b27aa82486eda3af13cdc70da8e7783efe389 | |
parent | e191a57bf7e1f8cc2ed38ac84b25ed4727ec92d5 (diff) | |
download | jsSHA-e9e8fe9c57bf96aacfe74d9d9da62660b807da97.zip jsSHA-e9e8fe9c57bf96aacfe74d9d9da62660b807da97.tar.gz jsSHA-e9e8fe9c57bf96aacfe74d9d9da62660b807da97.tar.bz2 |
Syncing bower.json up to package.json
-rw-r--r-- | bower.json | 29 |
1 files changed, 22 insertions, 7 deletions
@@ -1,7 +1,7 @@ { "name" : "jsSHA", - "version" : "2.1.0", - "description" : "jsSHA is a JavaScript implementation of the entire family of SHA hashes as defined in FIPS 180-2 (SHA-1, SHA-224, SHA-256, SHA-384, and SHA-512) as well as HMAC", + "version" : "2.2.0", + "description" : "jsSHA is a JavaScript implementation of the complete Secure Hash Standard family (SHA-1, SHA-224, SHA3-224, SHA-256, SHA3-256, SHA-384, SHA3-384, SHA-512, SHA3-512, SHAKE128, and SHAKE256) as well as HMAC", "main" : "src/sha.js", "repository" : { "type" : "git", @@ -9,20 +9,32 @@ }, "keywords" : [ "SHA-1", - "SHA-256", "SHA-224", + "SHA3-224", + "SHA-256", + "SHA3-256", "SHA-384", + "SHA3-384", "SHA-512", + "SHA3-512", + "SHAKE-128", + "SHAKE-256", + "SHAKE128", + "SHAKE256", "SHA1", - "SHA256", "SHA224", + "SHA256", "SHA384", "SHA512", + "SHA-2", "SHA2", + "SHA-3", + "SHA3", + "SHAKE", "HMAC", "hash" ], - "license" : "BSD", + "license" : "BSD-3-Clause", "authors" : [ "Brian Turek <brian.turek@gmail.com>" ], @@ -31,6 +43,9 @@ "build", "test", "src/sha_dev.js" - ] + ], + "devDependencies": { + "chai": "^3.5.0", + "mocha": "^2.5.3" + } } - |