-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.22 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
{
"name": "@aptoma/sqs-consumer",
"version": "2.1.0",
"description": "AWS SQS consumer",
"main": "index.js",
"scripts": {
"lint": "eslint index.js test",
"watch": "NODE_ENV=test mocha --watch 'test/**/*.js' --timeout 500",
"test": "npm run lint && 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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aptoma/sqs-consumer/issues"
},
"homepage": "https://github.com/aptoma/sqs-consumer#readme",
"devDependencies": {
"@aptoma/eslint-config": "^7.0.1",
"aws-sdk-client-mock": "^3.0.0",
"chai": "^4.3.10",
"eslint": "^8.50.0",
"eslint-plugin-mocha": "^10.2.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"release-it": "^10.1.0",
"sinon": "^16.0.0"
},
"dependencies": {
"@aws-sdk/client-sqs": "^3.421.0"
}
}