This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
65 lines (65 loc) · 1.51 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
57
58
59
60
61
62
63
64
65
{
"name": "sns-sqs-big-payload",
"version": "0.1.4",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "yarn clean && tsc",
"clean": "rm -rf ./dist/*",
"prepublishOnly": "yarn build"
},
"dependencies": {
"uuid": "^7.0.2"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^13.9.2",
"aws-sdk": "^2.814.0",
"jest": "^29.4.2",
"ts-jest": "^29.0.5",
"typescript": "4.4.4"
},
"repository": {
"type": "git",
"url": "https://github.com/aspecto-io/sns-sqs-big-payload"
},
"bugs": {
"url": "https://github.com/aspecto-io/sns-sqs-big-payload/issues"
},
"homepage": "https://github.com/aspecto-io/sns-sqs-big-payload",
"prepublish": "tsc",
"jest": {
"preset": "ts-jest",
"testMatch": [
"**/tests/**/*.spec.+(ts|tsx|js)"
],
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "ts-jest"
},
"testEnvironment": "node",
"maxConcurrency": 1
},
"keywords": [
"sqs",
"sns",
"queue",
"consumer",
"large",
"big",
"payload"
],
"peerDependencies": {
"aws-sdk": "^2.814.0"
}
}