-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.61 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
{
"name": "cdk-tesseract-layer-test",
"version": "0.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": true,
"files": [
"dist/**",
"package.json",
"README.md"
],
"author": "Benjamin Genz (@bweigel)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/bweigel/aws-lambda-tesseract-layer.git"
},
"scripts": {
"synth": "npx cdk synth --app \"npx ts-node index.ts\"",
"synth:aarch64": "npx cdk synth --app \"npx ts-node index-aarch64.ts\"",
"test:integration:py38": "sam local invoke -t cdk.out/tesseract-lambda-ci.template.json py38 --no-event > py38-test-output.txt && cat py38-test-output.txt | grep -Eiv \"(fail|error|exception)\"",
"test:integration:node16": "sam local invoke -t cdk.out/tesseract-lambda-ci.template.json node16 --no-event > node16-test-output.txt && cat node16-test-output.txt | grep -Eiv \"(fail|error|exception)\"",
"bundle:binary": "cp -r cdk.out/$(cat cdk.out/tesseract-lambda-ci.template.json | jq -r '.Resources.al2layer.Metadata.\"aws:asset:path\"')/. ../ready-to-use/amazonlinux-2"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"roots": [
"<rootDir>/test"
],
"testMatch": [
"**/*.test.ts"
]
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.5",
"aws-cdk": "^2.38.1",
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0",
"jest": "^26.5.2",
"source-map-support": "^0.5.19",
"ts-jest": "^26.4.1",
"typescript": "~4.0.3"
},
"dependencies": {
"help": "^3.0.2"
}
}