-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 2.18 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
{
"name": "sqs-bulk-loader",
"version": "4.4.0",
"description": "A set of functions to help sending bulk messages in sequence or parallel to AWS SQS",
"main": "src/index.js",
"scripts": {
"pretest": "eslint --cache \"src/**/*.js\" \"test/**/*.js\"",
"coveralls": "cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test": "./node_modules/@hapi/lab/bin/lab -I '__extends,__assign,__rest,__addDisposableResource,__disposeResources,__decorate,__param,__esDecorate,__runInitializers,__propKey,__setFunctionName,__metadata,__awaiter,__generator,__exportStar,__createBinding,__values,__read,__spread,__spreadArrays,__spreadArray,__await,__asyncGenerator,__asyncDelegator,__asyncValues,__makeTemplateObject,__importStar,__importDefault,__classPrivateFieldGet,__classPrivateFieldSet,__classPrivateFieldIn' ./test/ -v -S --assert @hapi/code --threshold 100 -p 1",
"lint": "./node_modules/.bin/eslint ./src --fix",
"travis": "npm run test",
"premajor": "npm run test",
"major": "npm version major -m \"published to npm as v%s\" && git push --follow-tags && npm publish",
"preminor": "npm run test",
"minor": "npm version minor -m \"published to npm as v%s\" && git push --follow-tags && npm publish",
"prepatch": "npm run test",
"patch": "npm version patch -m \"published to npm as v%s\" && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/montumodi/sqs-bulk-loader.git"
},
"files": [
"src",
"README.md"
],
"keywords": [
"aws",
"sqs",
"bulk",
"batch",
"parallel",
"sequence",
"nodejs",
"node",
"send"
],
"author": "Ashish Modi",
"license": "ISC",
"bugs": {
"url": "https://github.com/montumodi/sqs-bulk-loader/issues"
},
"homepage": "https://github.com/montumodi/sqs-bulk-loader#readme",
"devDependencies": {
"@aws-sdk/client-sqs": "^3.377.0",
"@hapi/code": "^9.0.3",
"@hapi/lab": "^25.1.2",
"coveralls": "^3.1.1",
"eslint": "^8.34.0",
"lodash": "^4.17.21"
},
"dependencies": {
"batch-promises": "0.0.3"
},
"peerDependencies": {
"@aws-sdk/client-sqs": "^3.0.0"
}
}