-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.02 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
{
"name": "inversify-lambda-utils",
"version": "1.0.1",
"description": "Inversify support for AWS lambda functions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/BobCui20/inversify-lambda-utils.git"
},
"bugs": {
"url": "https://github.com/BobCui20/inversify-lambda-utils/issues"
},
"homepage": "https://github.com/BobCui20/inversify-lambda-utils",
"scripts": {
"test": "jest",
"prepublish": "publish-please guard && tsc",
"build": "tsc",
"publish-please": "publish-please"
},
"keywords": [
"AWS",
"Inversify",
"Lambda"
],
"author": "BobCui20",
"license": "ISC",
"dependencies": {
"inversify": "^5.1.1",
"reflect-metadata": "^0.1.13",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/inversify": "^2.0.33",
"@types/node": "^16.4.10",
"@types/uuid": "^8.3.1",
"lambda-local": "^2.0.0",
"publish-please": "^5.5.2",
"typescript": "^4.3.5"
}
}