sqs-consumer 7.4.0-canary.0 → 7.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +23 -22
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sqs-consumer",
3
- "version": "7.4.0-canary.0",
3
+ "version": "7.4.0",
4
4
  "description": "Build SQS-based Node applications without the boilerplate",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -17,8 +17,8 @@
17
17
  "test:integration:init": "sh ./test/scripts/initIntTests.sh",
18
18
  "test:integration": "npm run test:integration:init && cucumber-js --config ./test/config/cucumber.js",
19
19
  "test": "npm run test:unit && npm run test:integration",
20
- "coverage": "nyc mocha && nyc report --reporter=html && nyc report --reporter=json-summary",
21
- "lcov": "nyc mocha && nyc report --reporter=lcov",
20
+ "coverage": "c8 mocha && c8 report --reporter=html && c8 report --reporter=json-summary",
21
+ "lcov": "c8 mocha && c8 report --reporter=lcov",
22
22
  "lint": "eslint . --ext .ts",
23
23
  "lint:fix": "eslint . --fix",
24
24
  "format": "prettier --loglevel warn --write \"**/*.{js,json,jsx,md,ts,tsx,html}\"",
@@ -41,37 +41,37 @@
41
41
  ],
42
42
  "license": "Apache-2.0",
43
43
  "devDependencies": {
44
- "@cucumber/cucumber": "^9.2.0",
45
- "@types/chai": "^4.3.5",
46
- "@types/mocha": "^10.0.1",
47
- "@types/node": "^20.4.1",
48
- "@types/sinon": "^10.0.15",
49
- "chai": "^4.3.7",
50
- "eslint": "^8.44.0",
51
- "eslint-config-iplayer-ts": "^4.1.1",
52
- "eslint-config-prettier": "^8.8.0",
44
+ "@cucumber/cucumber": "10.0.1",
45
+ "@types/chai": "^4.3.9",
46
+ "@types/mocha": "^10.0.3",
47
+ "@types/node": "^20.8.7",
48
+ "@types/sinon": "^10.0.20",
49
+ "chai": "^4.3.10",
50
+ "eslint": "^8.52.0",
51
+ "eslint-config-iplayer": "^9.1.0",
52
+ "eslint-config-prettier": "^9.0.0",
53
53
  "mocha": "^10.2.0",
54
- "nyc": "^15.1.0",
54
+ "c8": "^8.0.1",
55
55
  "p-event": "^4.2.0",
56
- "prettier": "^3.0.0",
57
- "sinon": "^15.2.0",
58
- "sqs-producer": "^3.2.1",
56
+ "prettier": "^3.0.3",
57
+ "sinon": "^17.0.0",
58
+ "sqs-producer": "^3.4.0",
59
59
  "ts-node": "^10.9.1",
60
- "typedoc": "^0.24.8",
61
- "typescript": "^4.9.4"
60
+ "typedoc": "^0.25.2",
61
+ "typescript": "^5.2.2"
62
62
  },
63
63
  "dependencies": {
64
- "@aws-sdk/client-sqs": "^3.363.0",
64
+ "@aws-sdk/client-sqs": "^3.428.0",
65
65
  "debug": "^4.3.4"
66
66
  },
67
67
  "peerDependencies": {
68
- "@aws-sdk/client-sqs": "^3.363.0"
68
+ "@aws-sdk/client-sqs": "^3.428.0"
69
69
  },
70
70
  "mocha": {
71
71
  "spec": "test/tests/**/**/*.test.ts",
72
72
  "require": "ts-node/register"
73
73
  },
74
- "nyc": {
74
+ "c8": {
75
75
  "include": [
76
76
  "src/**/*.ts"
77
77
  ],
@@ -86,7 +86,8 @@
86
86
  },
87
87
  "eslintConfig": {
88
88
  "extends": [
89
- "iplayer-ts",
89
+ "iplayer/base",
90
+ "iplayer/ts",
90
91
  "prettier"
91
92
  ],
92
93
  "parserOptions": {