-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.67 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "aws-sqs-consumer",
"version": "2.0.1",
"description": "Manager for consumer pools for AWS SQS",
"main": "src/ConsumerManagerService.js",
"scripts": {
"precommit": "npm run lint",
"prepush": "npm run lint && npm test",
"prepublish": "npm run lint && npm test",
"lint": "eslint src",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"tdd": "ava --watch",
"build": "SCRIPTY_SILENT=true scripty",
"test": "ava -s -T 10000"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jdgriffith/aws-sqs-consumer.git"
},
"keywords": [
"AWS",
"SQS",
"consumer"
],
"files": [
"src"
],
"author": "Justin Griffith",
"license": "MIT",
"bugs": {
"url": "https://github.com/jdgriffith/aws-sqs-consumer/issues"
},
"homepage": "https://github.com/jdgriffith/aws-sqs-consumer#readme",
"devDependencies": {
"ava": "^0.20.0",
"escope": "^3.6.0",
"eslint": "^4.2.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-pichak": "^1.1.2",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-ava": "^4.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"nyc": "^11.0.3",
"scripty": "^1.7.1",
"sinon": "^2.3.7",
"sinon-bluebird": "^3.1.0",
"chance": "^1.0.11"
},
"nyc": {
"cache": true
},
"ava": {
"source": [
"src/**/*.js"
],
"files": [
"tests/**/*.test.js"
]
},
"dependencies": {
"aws-sdk": "^2.82.0",
"bluebird": "^3.5.0",
"dotenv": "^4.0.0"
}
}