forked from mogadanez/sqsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 975 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
47
{
"name": "sqsd",
"description": "A simple alternative to the Amazon SQS Daemon (sqsd) used on AWS Beanstalk worker tier instances.",
"version": "1.2.0",
"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",
"bluebird": "^2.9.30",
"bunyan": "^1.5.1",
"commander": "^2.8.1",
"dotenv": "^2.0.0",
"forever-monitor": "^1.5.2",
"lodash": "^3.9.3",
"request": "^2.67.0"
}
}