forked from bbc/sqs-producer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.39 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
47
48
49
50
51
52
53
54
{
"name": "sqs-producer",
"version": "1.6.1",
"description": "Enqueues messages onto a given SQS queue",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "istanbul cover _mocha -- -R dot && open coverage/lcov-report/index.html",
"lint": "jshint .",
"lcov": "istanbul cover _mocha -- -R dot"
},
"repository": {
"type": "git",
"url": "https://github.com/bbc/sqs-producer.git"
},
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bbc/sqs-producer/issues"
},
"keywords": [
"aws",
"sqs",
"producer",
"queue"
],
"homepage": "https://github.com/bbc/sqs-producer",
"dependencies": {
"aws-sdk": "^2.1.2",
"lodash": "^4.11.2"
},
"devDependencies": {
"sinon": "^1.12.2",
"codeclimate-test-reporter": "^0.3.0",
"istanbul": "^0.4.3",
"jscoverage": "^0.5.9",
"jshint": "^2.5.10",
"mocha": "^2.0.1"
},
"jshintConfig": {
"quotmark": "single",
"unused": true,
"undef": true,
"node": true,
"globals": {
"describe": false,
"it": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false
}
}
}