1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "create-hmac",
|
3 |
|
|
"version": "1.1.7",
|
4 |
|
|
"description": "node style hmacs in the browser",
|
5 |
|
|
"files": [
|
6 |
|
|
"browser.js",
|
7 |
|
|
"index.js",
|
8 |
|
|
"legacy.js"
|
9 |
|
|
],
|
10 |
|
|
"main": "index.js",
|
11 |
|
|
"scripts": {
|
12 |
|
|
"standard": "standard",
|
13 |
|
|
"test": "npm run-script standard && npm run-script unit",
|
14 |
|
|
"unit": "node test.js | tspec"
|
15 |
|
|
},
|
16 |
|
|
"repository": {
|
17 |
|
|
"type": "git",
|
18 |
|
|
"url": "https://github.com/crypto-browserify/createHmac.git"
|
19 |
|
|
},
|
20 |
|
|
"keywords": [
|
21 |
|
|
"crypto",
|
22 |
|
|
"hmac"
|
23 |
|
|
],
|
24 |
|
|
"author": "",
|
25 |
|
|
"license": "MIT",
|
26 |
|
|
"bugs": {
|
27 |
|
|
"url": "https://github.com/crypto-browserify/createHmac/issues"
|
28 |
|
|
},
|
29 |
|
|
"homepage": "https://github.com/crypto-browserify/createHmac",
|
30 |
|
|
"devDependencies": {
|
31 |
|
|
"hash-test-vectors": "^1.3.2",
|
32 |
|
|
"standard": "^5.3.1",
|
33 |
|
|
"tap-spec": "^2.1.2",
|
34 |
|
|
"tape": "^3.0.3"
|
35 |
|
|
},
|
36 |
|
|
"dependencies": {
|
37 |
|
|
"cipher-base": "^1.0.3",
|
38 |
|
|
"create-hash": "^1.1.0",
|
39 |
|
|
"inherits": "^2.0.1",
|
40 |
|
|
"ripemd160": "^2.0.0",
|
41 |
|
|
"safe-buffer": "^5.0.1",
|
42 |
|
|
"sha.js": "^2.4.8"
|
43 |
|
|
},
|
44 |
|
|
"browser": "./browser.js"
|
45 |
|
|
}
|