-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.64 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
{
"name": "@liflig/cdk-lambda-config",
"version": "0.0.0-development",
"description": "CDK Construct for adding config.json file to a Lambda Function",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/capralifecycle/cdk-lambda-config"
},
"scripts": {
"build": "rm -rf dist && NODE_OPTIONS=--import=tsx webpack && tsc",
"watch": "tsc -w",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "biome check",
"lint:fix": "biome check --fix",
"prepare": "npm run build && husky",
"semantic-release": "semantic-release"
},
"keywords": [
"cdk",
"lambda",
"config"
],
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"dist/**/*",
"lib/**/*"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"devDependencies": {
"@aws-cdk/assert": "2.68.0",
"@aws-sdk/client-lambda": "3.1001.0",
"@biomejs/biome": "2.4.5",
"@commitlint/cli": "20.4.3",
"@commitlint/config-conventional": "20.4.3",
"@types/adm-zip": "0.5.7",
"@types/aws-lambda": "8.10.161",
"@types/jest": "30.0.0",
"@types/node": "24.11.0",
"adm-zip": "0.5.16",
"aws-cdk-lib": "2.241.0",
"axios": "1.13.6",
"constructs": "10.5.1",
"husky": "9.1.7",
"jest": "30.2.0",
"jest-cdk-snapshot": "2.3.6",
"semantic-release": "25.0.3",
"ts-jest": "29.4.6",
"ts-loader": "9.5.4",
"tsx": "4.21.0",
"typescript": "5.9.3",
"webpack": "5.105.4",
"webpack-cli": "6.0.1"
},
"peerDependencies": {
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0"
}
}