-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.78 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.78 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
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
67
68
69
70
71
72
73
74
75
{
"name": "sqsumer",
"version": "1.1.0",
"description": "Worker to consume AWS SQS messages, built with Serverless and AWS Lambda in mind",
"scripts": {
"test": "./node_modules/.bin/jest",
"format": "./node_modules/.bin/standard --fix",
"lint-code": "./node_modules/.bin/standard && echo lint: code is good",
"lint-unit": "./node_modules/.bin/eslint \"**/*.test.js\" \"test/**/*.js\" --color --config test/.eslintrc.js && echo lint: unit tests ok",
"lint": "npm run lint-code && npm run lint-unit",
"pretest": "npm run lint"
},
"peerDependencies": {
"aws-sdk": ">=2.3.0",
"bluebird": ">=3.4.4"
},
"devDependencies": {
"aws-sdk": "^2.194.0",
"bluebird": "^3.5.1",
"eslint-plugin-jest": "21.12.1",
"jest": "22.1.4",
"standard": "10.0.3"
},
"engines": {
"node": ">=4.3"
},
"standard": {
"ignore": [
"*.test.js"
]
},
"jest": {
"moduleFileExtensions": [
"js"
],
"collectCoverage": true,
"coverageDirectory": "tools_output/unit-coverage",
"coverageReporters": [
"html"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/digitalmaas/sqsumer.git"
},
"keywords": [
"digitalmaas",
"aws",
"aws-sqs",
"sqs",
"sqs-queue",
"worker",
"consumer",
"queue",
"javascript",
"nodejs",
"node-js",
"lambda",
"aws-lambda",
"serverless",
"serverless-framework",
"lawos",
"async-await",
"promises",
"bluebird"
],
"contributors": [
"Ricardo Nolde <ricardo@nolde.com>",
"Sebastian Müller <mail@sbstjn.com>"
],
"author": "DigitalMaas Developers <developers@digitalmaas.com>",
"main": "lib/Sqsumer.js",
"license": "MIT",
"homepage": "https://github.com/digitalmaas/sqsumer#readme"
}