-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.62 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
{
"name": "@fgiova/sqs-consumer",
"version": "1.0.0",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"lint": "eslint 'src/**/*.ts'",
"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": ">=18.0.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": "^2.2.1",
"p-map": "^4.0.0"
},
"peerDependencies": {
"@fgiova/aws-signature": "^2.0.0"
},
"devDependencies": {
"@aws-sdk/client-sqs": "^3.451.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.18.6",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"conventional-changelog-conventionalcommits": "^6.1.0",
"eslint": "^8.47.0",
"eslint-plugin-import": "^2.28.1",
"semantic-release": "^21.0.9",
"tap": "^18.6.1",
"testcontainers": "^10.2.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}