-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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": "s3-cf-tail",
"version": "0.0.6",
"description": "Print CloudFront logs from an S3 bucket to the console",
"main": "index.js",
"path": "app",
"type": "module",
"author": "finbox",
"license": "MIT",
"homepage": "https://github.com/finboxio/s3-cf-tail#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/finboxio/s3-cf-tail.git"
},
"bugs": {
"url": "https://github.com/finboxio/s3-cf-tail/issues"
},
"scripts": {
"test": "echo TODO: tests",
"lint": "echo TODO: linting",
"build": "babel app -d build --copy-files",
"preversion": "npm run lint && npm run test",
"version": "git changelog -t $npm_package_version && git add History.md",
"postversion": "git push --follow-tags --no-verify && make docker.push",
"tail": "node app/index.js",
"dc:tail": "dcx run --build --rm tail"
},
"dependencies": {
"aws-sdk": "2.1006.0",
"csv-parse": "4.16.3",
"envvar": "2.0.0",
"kev": "2.4.5",
"mjsdev": "0.0.34",
"moment": "2.29.1",
"ms": "2.1.3"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/plugin-transform-modules-commonjs": "7.8.3",
"@babel/preset-env": "7.8.4",
"babel-jest": "25.1.0",
"jest": "25.1.0"
}
}