-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.44 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.44 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "lambda-toolbox",
"version": "0.2.3",
"description": "Utilities for AWS Lambda",
"author": "Kengo Nakatsuka <kengo.nakatsuka@gmail.com>",
"bugs": {
"url": "https://github.com/nak2k/node-lambda-toolbox/issues"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.741.0",
"@aws-sdk/client-secrets-manager": "^3.741.0",
"content-type": "^1.0.5",
"cookie": "^1.0.2",
"err-to-slack": "^0.3.1",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"lambda-url-resolver": "^0.1.6",
"mime-types": "^2.1.35",
"path-to-regexp": "^8.2.0"
},
"devDependencies": {
"@slack/types": "^2.14.0",
"@types/aws-lambda": "^8.10.147",
"@types/content-type": "^1.1.8",
"@types/cookie": "^1.0.0",
"@types/jsonwebtoken": "^9.0.8",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.13.1",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"tape": "^5.9.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"homepage": "https://github.com/nak2k/node-lambda-toolbox",
"keywords": [
"aws",
"lambda"
],
"license": "MIT",
"main": "lib",
"repository": {
"type": "git",
"url": "git+https://github.com/nak2k/node-lambda-toolbox.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prepare": "npm test",
"postpublish": "npm-sns",
"pretest": "run-s clean build",
"test": "tape test/test*.js"
},
"files": [
"README.md",
"lib/"
]
}