-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 727 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "cloudfront-log-parser",
"version": "1.2.0",
"description": "Parser for CloudFront access logs",
"author": "Clay Gregory <clay@claygregory.com> (https://claygregory.com/)",
"repository": "claygregory/node-cloudfront-log-parser",
"homepage": "https://github.com/claygregory/node-cloudfront-log-parser",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "mocha",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"dependencies": {},
"devDependencies": {
"coveralls": "^3.0.9",
"eslint": "^4.18.2",
"istanbul": "^0.4.5",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.3.0"
}
}