forked from henrist/cdk-lambda-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.72 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
63
64
65
66
67
68
{
"name": "@liflig/cdk-lambda-config",
"version": "0.0.0-development",
"description": "CDK Construct for adding config.json file to a Lambda Function",
"repository": {
"type": "git",
"url": "https://github.com/capralifecycle/cdk-lambda-config"
},
"scripts": {
"build": "rimraf dist && webpack && tsc",
"watch": "tsc -w",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint --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"
},
"devDependencies": {
"@aws-cdk/assert": "2.68.0",
"@aws-sdk/client-lambda": "3.682.0",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@types/adm-zip": "0.5.6",
"@types/aws-lambda": "8.10.145",
"@types/jest": "29.5.14",
"@types/node": "20.17.6",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"adm-zip": "0.5.16",
"aws-cdk-lib": "2.165.0",
"axios": "1.7.7",
"constructs": "10.4.2",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.6",
"jest": "29.7.0",
"jest-cdk-snapshot": "2.2.5",
"prettier": "3.3.3",
"rimraf": "3.0.2",
"semantic-release": "24.2.0",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"webpack": "5.96.1",
"webpack-cli": "5.1.4"
},
"peerDependencies": {
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0"
}
}