-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.15 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "middy-idempotency",
"version": "0.1.0",
"description": "Idempotency Middleware for AWS Lambda Functions using Middy",
"main": "index.js",
"engines": {
"node": ">=12"
},
"engineStrict": true,
"scripts": {
"lint": "standard",
"lintfix": "standard --fix",
"prepare": "husky install",
"test": "echo \"No test specified\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdt712/middy-idempotency.git"
},
"keywords": [
"Lambda",
"Middleware",
"Serverless",
"Framework",
"AWS",
"AWS Lambda",
"DynamoDB",
"Idempotency",
"Amazon",
"Middy"
],
"author": {
"name": "Ryan Toler",
"email": "rdt712@gmail.com",
"url": "https://ryantoler.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rdt712/middy-idempotency/issues"
},
"homepage": "https://github.com/rdt712/middy-idempotency#readme",
"dependencies": {
"@middy/core": ">=2.0.0",
"jmespath": "^0.15.0"
},
"devDependencies": {
"aws-sdk": "^2.972.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"husky": "^7.0.1",
"standard": "^16.0.3"
}
}