-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.45 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.45 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
{
"name": "@aptoma/sqs-consumer",
"version": "3.0.0",
"description": "AWS SQS consumer",
"main": "index.js",
"scripts": {
"type-check": "npx -p typescript tsc --allowJs --checkJs --noEmit --target es2022 -m nodenext --strictNullChecks --strictFunctionTypes index.js",
"lint": "eslint index.js test",
"watch": "NODE_ENV=test mocha --watch 'test/**/*.js' --timeout 500",
"test": "npm run lint && npm run type-check && NODE_ENV=test nyc --reporter=text-summary --reporter=lcov mocha --exit --timeout 3000 'test/**/*.test.js' 'test/**/*.test.js'",
"release": "npm run test && release-it -n -i patch",
"release:minor": "npm run test && release-it -n -i minor",
"release:major": "npm run test && release-it -n -i major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aptoma/sqs-consumer.git"
},
"author": "Martin Jonsson <martin@aptoma.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aptoma/sqs-consumer/issues"
},
"homepage": "https://github.com/aptoma/sqs-consumer#readme",
"devDependencies": {
"@aptoma/eslint-config": "^8.0.0",
"auto-changelog": "^2.5.0",
"aws-sdk-client-mock": "^4.1.0",
"chai": "^4.3.10",
"eslint": "^8.50.0",
"eslint-plugin-mocha": "^10.5.0",
"mocha": "^11.1.0",
"nyc": "^15.1.0",
"release-it": "^18.1.2",
"sinon": "^19.0.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@aws-sdk/client-sqs": "^3.734.0"
}
}