-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.12 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
{
"name": "sqs-worker-serverless",
"version": "1.0.0",
"description": "Example for an Amazon SQS worker with AWS Lambda using lawos and serverless.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jest test",
"deploy": "./node_modules/.bin/serverless deploy",
"postinstall": "cd functions && npm install",
"lint": "./node_modules/.bin/standard | ./node_modules/.bin/snazzy"
},
"homepage": "https://github.com/sbstjn/sqs-worker-serverless",
"repository": {
"type": "git",
"url": "https://github.com/sbstjn/sqs-worker-serverless.git"
},
"keywords": [
"sqs",
"worker",
"aws",
"lambda",
"serverless"
],
"author": "Sebastian Müller <mail@sbstjn.com>",
"license": "MIT",
"devDependencies": {
"aws-sdk": "^2.27.0",
"jasmine-data-provider": "^2.2.0",
"jest": "^19.0.2",
"serverless": "^1.8.0",
"snazzy": "^6.0.0",
"standard": "^9.0.2"
},
"standard": {
"envs": [
"node",
"jest"
],
"ignore": [
"coverage",
"node_modules"
]
},
"dependencies": {
"serverless-sqs-alarms-plugin": "^0.0.2"
}
}