-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 877 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 877 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
39
40
41
42
43
{
"version": "0.0.2",
"license": "Apache-2.0",
"name": "cognito-proxy",
"main": "dist/index.js",
"keywords": [
"service",
"aws",
"cognito",
"proxy",
"lambda",
"edge",
"lambda@edge",
"security"
],
"description": "Cognito Proxy",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint 'src/**/*.ts'",
"repolint": "repolinter lint ."
},
"dependencies": {
"@types/aws-lambda": "^8.10.88",
"aws-sdk": "^2.1046.0",
"simple-git": "^3.16.0"
},
"files": [
"dist",
"README.md"
],
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"jest": "^27.4.5",
"repolinter": "^0.11.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}