-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "string-signer",
"preferGlobal": "false",
"description": "Generate or verify an HMAC SHA-256 signature for an arbitrary string.",
"version": "1.1.2",
"keywords": [
"hmac",
"sha",
"signature",
"sign",
"authentication"
],
"homepage": "https://github.com/crcastle/nodejs-string-signer",
"author": {
"name": "Chris Castle",
"email": "[email protected]",
"url": "https://github.com/crcastle"
},
"contributors": [
{
"name": "Dylan Carney",
"email": "[email protected]",
"url": "https://github.com/dcarney"
}
],
"bin": {
},
"scripts": { "test": "NODE_PATH=./lib mocha --ui exports" },
"main": "lib/string-signer",
"repository": {
"type": "git",
"url": "https://github.com/crcastle/nodejs-string-signer"
},
"bugs": {
"url": "https://github.com/crcastle/nodejs-string-signer/issues"
},
"dependencies": {
"b64url": "1.0.x",
"makeerror": "1.0.x"
},
"noAnalyze": true,
"devDependencies": {
"mocha": "0.12.x"
},
"bundleDependencies": [
],
"license": "unlicense",
"engine": { "node": "0.6.x" }
}