-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 933 Bytes
/
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
{
"name": "aws4-proxy",
"keywords": [
"aws",
"aws4",
"proxy",
"websocket"
],
"version": "0.1.8",
"description": "Fast, low-footprint aws4 signing proxy with WebSocket support",
"author": {
"email": "[email protected]",
"name": "Moritz Onken"
},
"main": "dist/lib/index.js",
"bin": {
"aws4-proxy": "dist/cli/index.js"
},
"files": [
"dist"
],
"repository": {
"url": "git+https://github.com/monken/aws4-proxy.git",
"type": "git"
},
"dependencies": {
"aws4": "^1.9.1",
"yargs": "^15.1.0"
},
"devDependencies": {
"@types/aws4": "^1.5.1",
"@types/node": "^13.7.7",
"@types/yargs": "^15.0.4",
"aws-sdk": "^2.634.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"aws-sdk": "^2.634.0"
},
"scripts": {
"build": "tsc",
"test": "node dist/cli --help"
},
"engineStrict": true,
"engines": {
"node": ">=10"
}
}