-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 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
{
"name": "reqsign",
"version": "1.1.0",
"description": "HTTP request signing",
"main": "index.js",
"scripts": {
"test": "semistandard && node_modules/.bin/tape 'test/**/*.js' | tap-spec"
},
"author": {
"name": "Alexey Gorokhov",
"email": "[email protected]",
"url": ""
},
"license": "MIT",
"devDependencies": {
"body-parser": "^1.15.1",
"express": "^4.13.4",
"morgan": "^1.7.0",
"proxyquire": "^1.7.9",
"semistandard": "^8.0.0",
"sinon": "^1.17.4",
"tap-spec": "^4.1.1",
"tape": "^4.5.1"
},
"dependencies": {
"debug": "^2.2.0",
"md5": "^2.1.0",
"request": "^2.79.0",
"request-promise-native": "^1.0.3"
},
"keywords": [
"request signing",
"authentication",
"authorization"
],
"homepage": "https://github.com/AlexeyGorokhov/reqsign",
"repository": {
"type": "git",
"url": "https://github.com/AlexeyGorokhov/reqsign"
},
"bugs": {
"url": "https://github.com/AlexeyGorokhov/reqsign/issues"
}
}