-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.19 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.19 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@fgiova/fastify-sqs-consumer",
"description": "sqs-consumer fastify plugin",
"version": "3.0.0",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.mts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"preBuild": "npm run clean",
"build": "esmBuilder",
"lint": "biome ci ./src ./test",
"fix": "biome check --write ./src ./test",
"test": "tap --timeout=90",
"test:debug": "tap --only --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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fgiova/fastify-sqs-consumer.git"
},
"author": "Francesco Giovannini <fgiova@fgiova.com>",
"license": "MIT",
"keywords": [
"fastify",
"sqs",
"sqs-consumer",
"consumer",
"aws",
"amazon"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^22.14.0 || >= 24.10.0"
},
"tap": {
"show-full-coverage": true,
"before": "./test/scripts/executors/before.js",
"after": "./test/scripts/executors/teardown.js",
"exclude": [
"test/helpers/**/*",
"test/scripts/**/*"
]
},
"peerDependencies": {
"fastify": ">=5.0.0",
"p-map": ">=7.0.0"
},
"devDependencies": {
"@aws-sdk/client-sqs": "^3.398.0",
"@biomejs/biome": "2.2.2",
"@fgiova/cjs-esm-ts-builder": "^1.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.4",
"@tsconfig/node20": "^20.1.6",
"@types/dotenv": "^6.1.1",
"@types/node": "^20.19.11",
"clock-mock": "^2.0.4",
"conventional-changelog-conventionalcommits": "^9.1.0",
"dotenv": "^10.0.0",
"fastify": "^5.7.4",
"semantic-release": "^25.0.3",
"tap": "^21.1.0",
"testcontainers": "^11.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.1.6"
},
"dependencies": {
"@fgiova/sqs-consumer": "^3.0.0",
"@watchable/unpromise": "^1.0.2",
"fastify-plugin": "^5.1.0"
}
}