forked from mogadanez/sqsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 947 Bytes
/
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
{
"name": "sqsd",
"description": "A simple alternative to the Amazon SQS Daemon (sqsd) used on AWS Beanstalk worker tier instances.",
"version": "2.0.2",
"engine": "node ~4.0.0",
"author": {
"name": "Proofme Inc.",
"url": "http://proofme.com/"
},
"homepage": "https://github.com/proofme/sqsd",
"contributors": [
{
"name": "Aleksandr Popov",
"email": "[email protected]"
}
],
"scripts": {
"start": "node run-cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/proofme/sqsd.git"
},
"bin": {
"sqsd": "./run-cli.js"
},
"license": "MIT",
"keywords": [
"queue",
"amazon",
"sqs",
"sqsd",
"worker",
"webhook",
"post"
],
"dependencies": {
"aws-sdk": "^2.6.12",
"axios": "^0.21.2",
"commander": "^5.1.0",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"forever-monitor": "^3.0.0",
"lodash": "^4.17.15"
}
}