-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "elb2loggly",
"description": "AWS Lambda script that uploads ELB logs from S3 to loggly in JSON format",
"author": "Chris Boscolo",
"readme": "README.md",
"repository": {
"type": "git",
"url": "git@github.com:cboscolo/elb2loggly.git"
},
"license": "Proprietary",
"devDependencies": {
"chai": "^3.5.0",
"del": "^2.2.0",
"eslint": "^2.9.0",
"eslint-config-google": "^0.5.0",
"glob": "^7.0.3",
"gulp": "^3.9.1",
"gulp-awslambda": "^0.4.0",
"gulp-eslint": "^2.0.0",
"gulp-file": "^0.3.0",
"gulp-install": "^0.6.0",
"gulp-mocha": "^2.2.0",
"gulp-zip": "^3.2.0",
"mocha": "^2.4.5",
"mock-aws-s3": "^2.1.0",
"rewire": "^2.5.1",
"run-sequence": "^1.1.5",
"sinon": "^1.17.3"
},
"engine": "node >= 0.10",
"dependencies": {
"JSONStream": "^1.0.7",
"async": "^1.5.2",
"aws-sdk": "^2.3.4",
"csv-streamify": "^3.0.3",
"lodash": "^4.5.1",
"request": "^2.69.0"
},
"scripts": {
"test": "mocha --recursive",
"lint": "eslint *.js",
"bundle": "gulp package"
}
}