-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@meadow/sqs",
"version": "2.1.2",
"description": "Promise/JSON based client for Amazon SQS with automatic long-polling.",
"main": "index.js",
"scripts": {
"cover": "nyc ava",
"lint": "eslint ./ --ext .js",
"release": "node scripts/release.js",
"test": "ava"
},
"repository": {
"type": "git",
"url": "https://github.com/meadow/sqs.git"
},
"keywords": [
"amazon",
"aws",
"sqs",
"queue",
"message",
"meadow"
],
"authors": [
"Rick Harrison <[email protected]> (https://github.com/rickharrison)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/meadow/sqs/issues"
},
"homepage": "https://github.com/meadow/sqs",
"dependencies": {
"aws-sdk": "^2.4.7",
"lodash.assign": "^4.0.9",
"uuid": "^8.1.0"
},
"devDependencies": {
"@meadow/eslint-config": "^2.0.0",
"ava": "^0.15.2",
"babel-eslint": "^6.1.2",
"codecov": "^3.7.1",
"eslint": "^3.1.1",
"lodash.get": "^4.4.2",
"nyc": "^7.0.0",
"sinon": "^1.17.4"
},
"ava": {
"files": [
"tests/**/*.js"
]
},
"nyc": {
"include": [
"index.js"
]
}
}