-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 916 Bytes
/
package.json
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
{
"name": "serverless-webhooks",
"version": "0.1.5",
"description": "Serverless webhooks plugin",
"author": {
"name": "Francesco Liuzzi",
"email": "[email protected]"
},
"repository": "https://github.com/franc-liuzzi/serverless-webhooks",
"homepage": "https://github.com/franc-liuzzi/serverless-webhooks",
"keywords": [
"serverless",
"webhooks"
],
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"release": "release-it"
},
"dependencies": {
"@types/serverless": "^3.12.13",
"aws-cdk-lib": "^2.86.0",
"constructs": "^10.2.65",
"lodash": "^4.17.21"
},
"devDependencies": {
"release-it": "^15.11.0",
"serverless": "^3.33.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"serverless": "3.x"
},
"engines": {
"node": ">=16.0"
},
"license": "MIT",
"files": [
"dist/"
]
}