-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.66 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
69
70
71
72
73
74
75
76
{
"name": "@thedesignium/cdk-log-notifier",
"version": "2.2.1",
"main": "lib/index.js",
"license": "MIT",
"keywords": [
"awscdk"
],
"types": "lib/index.d.ts",
"scripts": {
"build": "jsii",
"watch": "jsii -w",
"package": "jsii-pacmak",
"test": "vitest"
},
"author": {
"name": "Yuki Ito"
},
"repository": {
"url": "https://github.com/TheDesignium/cdk-log-notifier.git",
"type": "git"
},
"jsii": {
"outdir": "dist",
"targets": {
"dotnet": {
"namespace": "TheDesignium.CDKLogNotifier",
"packageId": "TheDesignium.CDKLogNotifier"
},
"java": {
"package": "com.thedesignium.cdklognotifier",
"maven": {
"groupId": "com.thedesignium",
"artifactId": "cdk-log-notifier"
}
},
"python": {
"distName": "cdk-log-notifier",
"module": "cdk_log_notifier"
},
"go": {
"moduleName": "github.com/TheDesignium/cdk-log-notifier-go",
"packageName": "lognotifier"
}
}
},
"bundledDependencies": [
"change-case"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"change-case": "^5.4.4"
},
"devDependencies": {
"@types/node": "22.0.0",
"aws-cdk-lib": "2.150.0",
"constructs": "10.3.0",
"jest-cdk-snapshot": "^2.2.2",
"jsii": "^5.4.29",
"jsii-pacmak": "^1.101.0",
"jsii-rosetta": "^5.4.28",
"publib": "^0.2.806",
"reflect-metadata": "^0.2.2",
"typescript": "^5.5.4",
"vitest": "^2.0.4"
},
"peerDependencies": {
"aws-cdk-lib": "^2.150.0",
"constructs": "^10.3.0"
},
"bundleDependencies": [
"change-case"
]
}