-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.03 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@fgiova/fastify-sqs-sns-publisher",
"description": "A fastify plugin for publishing messages to SQS and SNS",
"version": "2.0.0",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"clean": "rimraf dist",
"build": "tsc",
"test": "tap --timeout=90",
"test:debug": "tap --timeout=0",
"test:local": "TEST_LOCAL=true tap",
"test:local:debug": "TEST_LOCAL=true tap --only --timeout=0",
"test:coverage": "tap --coverage-report=lcovonly --coverage-report=text"
},
"tap": {
"show-full-coverage": true,
"before": "./test/scripts/executors/before.js",
"after": "./test/scripts/executors/teardown.js",
"exclude": [
"test/helpers/**/*",
"test/scripts/**/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/fgiova/fastify-sqs-sns-publisher.git"
},
"author": "Francesco Giovannini <[email protected]>",
"license": "MIT",
"keywords": [
"fastify",
"sqs",
"sns",
"aws",
"amazon"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@aws-sdk/client-sns": "^3.451.0",
"@aws-sdk/client-sqs": "^3.451.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.15.0",
"@types/tap": "^15.0.8",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"conventional-changelog-conventionalcommits": "^6.1.0",
"dotenv": "^16.0.3",
"eslint": "^8.1.0",
"eslint-plugin-import": "^2.28.1",
"fastify": "^4.21.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"semantic-release": "^21.0.9",
"tap": "^18.6.1",
"testcontainers": "^10.2.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@fgiova/aws-signature": "^2.0.0"
},
"dependencies": {
"@fgiova/mini-sns-client": "^1.2.0",
"@fgiova/mini-sqs-client": "^2.1.0",
"fastify-plugin": "^4.5.1"
}
}