-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.43 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
54
55
56
{
"name": "@driimus/sqs-permanent-failure-dlq",
"version": "0.2.1",
"description": "Send SQS messages causing non-retryable errors to a dead-letter SQS queue",
"keywords": [
"aws lambda",
"batch processor",
"sqs",
"dlq"
],
"homepage": "https://github.com/driimus/lambda-batch-processor/blob/main/packages/sqs-permanent-failure-dlq#readme",
"bugs": {
"url": "https://github.com/driimus/lambda-batch-processor/issues"
},
"publishConfig": {
"provenance": true,
"exports": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/driimus/lambda-batch-processor.git",
"directory": "packages/sqs-permanent-failure-dlq"
},
"license": "MIT",
"author": {
"name": "Cristian Petre",
"email": "driimus@vivaldi.net"
},
"type": "module",
"exports": "./src/index.ts",
"files": [
"./dist"
],
"scripts": {
"build": "tsc",
"format": "eslint --fix",
"lint": "eslint",
"test": "vitest run --coverage.thresholds.100"
},
"devDependencies": {
"@aws-sdk/client-sqs": "^3.709.0",
"@driimus/aws-event-factory": "workspace:*",
"@driimus/lambda-batch-processor": "workspace:*",
"aws-sdk-client-mock": "^4.1.0"
},
"peerDependencies": {
"@aws-sdk/client-sqs": "^3.709.0",
"@types/aws-lambda": "^8.10.146"
},
"peerDependenciesMeta": {
"@types/aws-lambda": {
"optional": true
}
}
}