-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.28 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.28 KB
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
63
64
65
66
67
{
"name": "analytics-ingest-lambda",
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">= 22.0.0"
},
"description": "Process dovetail kinesis metric streams",
"main": "index.js",
"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 && rm -rf node_modules/aws-sdk",
"build-zip": "rm -f build.zip && cd build && zip -rq ../build.zip .",
"lint": "biome check",
"lint-ci": "biome ci",
"lint-fix": "biome check --write --unsafe",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings=ExperimentalWarning' jest",
"watch": "NODE_OPTIONS='--experimental-vm-modules --no-warnings=ExperimentalWarning' jest --watch",
"integration": "NODE_OPTIONS='--experimental-vm-modules --no-warnings=ExperimentalWarning' jest --config test/integration.config.json",
"integration-watch": "NODE_OPTIONS='--experimental-vm-modules --no-warnings=ExperimentalWarning' jest --config test/integration.config.json --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PRX/analytics-ingest-lambda.git"
},
"keywords": [
"lambda",
"kinesis",
"bigquery"
],
"author": "ryan cavis <ryan@prx.org>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/PRX/analytics-ingest-lambda/issues"
},
"homepage": "https://github.com/PRX/analytics-ingest-lambda#readme",
"devDependencies": {
"@biomejs/biome": "2.2.4",
"aws-sdk-client-mock": "^4.1.0",
"aws-sdk-client-mock-jest": "^4.1.0",
"dotenv": "^17.2.2",
"jest": "^30.1.3",
"nock": "^14.0.10"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.940.0",
"@aws-sdk/client-sts": "^3.940.0",
"@google-cloud/bigquery": "^8.1.1",
"@smithy/node-http-handler": "^4.4.5",
"follow-redirects": "^1.15.11",
"ipaddr.js": "^2.2.0",
"lambda-log": "^3.1.0",
"url-template": "^3.1.1",
"uuid": "^13.0.0"
},
"jest": {
"restoreMocks": true,
"moduleNameMapper": {
"^aws-sdk-client-mock-jest$": "<rootDir>/node_modules/aws-sdk-client-mock-jest/dist/cjs/jest.js"
},
"testPathIgnorePatterns": [
"/node_modules/",
"integration"
]
}
}