-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 1.93 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
{
"name": "@fgiova/sqs-consumer",
"version": "3.2.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",
"test:debug": "tap --only --timeout=0",
"test:coverage": "tap --coverage-report=lcovonly --coverage-report=text",
"test:local": "TEST_LOCAL=true tap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fgiova/sqs-consumer.git"
},
"author": "Francesco Giovannini <fgiova@fgiova.com>",
"license": "MIT",
"keywords": [
"aws",
"sqs",
"sqs-consumer"
],
"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/**/*"
]
},
"dependencies": {
"@fgiova/mini-sqs-client": "^5.1.0",
"@watchable/unpromise": "^1.0.2",
"p-map": "^7.0.3"
},
"peerDependencies": {
"@fgiova/aws-signature": "^5.0.0"
},
"devDependencies": {
"@aws-sdk/client-sqs": "^3.758.0",
"@biomejs/biome": "2.3.15",
"@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/node22": "^22.0.5",
"@types/node": "^22.19.11",
"conventional-changelog-conventionalcommits": "^9.1.0",
"dotenv": "^17.2.4",
"semantic-release": "^25.0.3",
"tap": "^21.1.0",
"testcontainers": "^11.11.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}