-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.88 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "dovetail-cdn-usage",
"version": "0.0.0",
"description": "Lambda to query Dovetail CloudFront usage and insert into BigQuery",
"main": "index.js",
"engines": {
"node": ">= 22.0.0"
},
"private": "true",
"scripts": {
"build": "yarn run build-sync && yarn run build-prune && yarn run build-zip",
"build-sync": "rsync -crl --delete --exclude-from .lambdaignore . build",
"build-prune": "cd build && yarn --production",
"build-zip": "rm -f build.zip && cd build && zip -rq ../build.zip .",
"lint": "npm run lint-prettier && npm run lint-es",
"lint-prettier": "npx prettier --check **/*.{json,yml}",
"lint-es": "npx eslint '**/*.{js,mjs}'",
"lint-ts": "npx tsc",
"lint-fix": "npm run lint-fix-prettier && npm run lint-fix-es",
"lint-fix-prettier": "npx prettier --check **/*.{json,yml} --write",
"lint-fix-es": "npx eslint --fix '**/*.{js,mjs}'",
"start": "node runner.js",
"test": "npx jest",
"watch": "npx jest --watch"
},
"jest": {
"restoreMocks": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/PRX/dovetail-cdn-usage.git"
},
"keywords": [
"cloudfront",
"athena",
"bigquery"
],
"author": "ryan cavis <[email protected]>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/PRX/dovetail-cdn-usage/issues"
},
"homepage": "https://github.com/PRX/dovetail-cdn-usage#readme",
"devDependencies": {
"@aws-sdk/client-athena": "^3.567.0",
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "*",
"eslint-config-prettier": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jest": "*",
"eslint-plugin-prettier": "*",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"dependencies": {
"@google-cloud/bigquery": "^7.6.1",
"dotenv": "^16.4.5",
"lambda-log": "^3.1.0"
}
}