-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "lambda-stash",
"version": "4.0.0",
"description": "AWS Lambda script for shipping data from S3 or other cloud data sources to data stores, like Elasticsearch",
"main": "index.js",
"dependencies": {
"aws-sdk": "^2.290.0",
"csv-parse": "^4.10.1",
"elasticsearch": "^15.5.0",
"http-aws-es": "^6.0.0",
"lodash": "^4.17.5"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"coveralls": "^3.0.5",
"eslint": "^6.1.0",
"eslint-config-google": "^0.6.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1"
},
"engines": {
"node": ">=8.0"
},
"scripts": {
"check-coverage": "nyc --check-coverage --statements=100 --reporter=lcov --reporter=text-summary npm run test",
"lint": "eslint .",
"test": "mocha --check-leaks --timeout 5000"
},
"author": {
"name": "Joe Turgeon",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/arithmetric/lambda-stash.git"
},
"keywords": [
"aws",
"lambda",
"log",
"logs",
"logger",
"logstash",
"shipper"
],
"license": "MIT"
}