-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "sqs-json",
"version": "1.1.0",
"description": "Simplifies reception, processing, and removal of JSON objects stored in SQS",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"coverage": "nyc report --reporter=lcov",
"coveralls-coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"test": "nyc --all mocha --recursive ./test",
"posttest": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexanderMS/sqs-json.git"
},
"keywords": [
"raw",
"delivery",
"sqs",
"json",
"poll",
"receive",
"parse"
],
"author": "Alexandr Murashkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexanderMS/sqs-json/issues"
},
"homepage": "https://github.com/AlexanderMS/sqs-json#readme",
"dependencies": {
},
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"eslint": "3.12.0",
"nyc": "^10.2.0",
"mocha": "3.2.0",
"sinon": "1.17.6"
}
}