forked from bbc/sqs-consumer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "sqs-consumer",
"version": "3.2.0",
"description": "Build SQS-based Node applications without the boilerplate",
"main": "index.js",
"scripts": {
"test": "npm run lint && NODE_ENV=test mocha --compilers js:babel-core/register ",
"lint": "eslint --ignore-path .gitignore .",
"dist": "babel src --out-dir ."
},
"repository": {
"type": "git",
"url": "https://github.com/teamvio/sqs-consumer.git"
},
"bugs": {
"url": "https://github.com/teamvio/sqs-consumer/issues"
},
"homepage": "https://github.com/teamvio/sqs-consumer",
"keywords": [
"sqs",
"babel",
"es6",
"aws",
"queue",
"consumer"
],
"author": "robin@robinmurphy.co.uk",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.1.1",
"eslint-config-airbnb-base": "^4.0.2",
"eslint-plugin-import": "^1.11.1",
"mocha": "^2.5.3",
"sinon": "^1.17.4",
"sinon-as-promised": "^3.0.1"
},
"dependencies": {
"aws-sdk": "^2.4.8",
"bluebird": "^3.4.1",
"debug": "^2.2.0"
}
}