-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 KB
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
{
"name": "@hellocoop/lambda",
"version": "1.0.0",
"description": "Lambda SDK for Hellō https://hello.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/hellocoop/lambda-node.git"
},
"homepage": "https://www.hello.dev/docs/sdks/lambda",
"keywords": [
"lambda",
"nodejs",
"node.js",
"hello",
"openid",
"oidc",
"sso",
"lambda"
],
"author": {
"name": "Hello Identity Co-op",
"email": "contact@hello.coop",
"url": "https://hello.coop"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hellocoop/packages/issues"
},
"scripts": {
"build": "echo 'Build script not implemented'",
"zip": "rimraf src/lambda.zip && cd src && zip -q -r lambda.zip . -i '*.js' -i '*.json'",
"deploy": "tsc && npm run zip && aws lambda update-function-code --function-name HelloCoop --zip-file fileb://src/lambda.zip --publish",
"get-url": "aws lambda get-function-url-config --function-name HelloCoop",
"tail": "aws logs tail /aws/lambda/HelloCoop --follow",
"test": "echo 'Error: no test specified' && exit 1",
"install": "cd src && npm install"
},
"devDependencies": {
"@types/node": "^18.2.2",
"@types/aws-lambda": "^8.10.134",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}