-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 983 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 983 Bytes
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
{
"name": "edge-lambda-url-authorizer",
"version": "0.1.0",
"description": "npm pkg to sigv4 sign cloudfront viewer requests to lambda function urls with IAM auth",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nexus-uw/edge-lambda-url-authorizer.git"
},
"files": [
"index.js",
"index.d.ts"
],
"author": "nexus-uw",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/nexus-uw/edge-lambda-url-authorizer/issues"
},
"homepage": "https://github.com/nexus-uw/edge-lambda-url-authorizer#readme",
"dependencies": {
"aws4": "^1.11.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/aws-lambda": "^8.10.106",
"@types/aws4": "^1.11.2",
"typescript": "^4.8"
},
"engines": {
"node": ">=16"
}
}