-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
76 lines (76 loc) · 1.86 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": "cdk-time-bomb",
"version": "1.53.0",
"description": "Implode your AWS CDK Stack after set amount of time, save money, be happy!",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "jsii",
"build:watch": "jsii -w",
"package": "jsii-pacmak",
"test": "tsc && jest",
"watch": "tsc -w"
},
"repository": {
"url": "https://github.com/jmb12686/cdk-time-bomb.git"
},
"stability": "experimental",
"keywords": [
"cdk",
"aws-cdk",
"aws"
],
"author": {
"name": "John Belisle",
"email": "[email protected]",
"url": "https://github.com/jmb12686",
"organization": false
},
"jsii": {
"targets": {
"python": {
"module": "cdk_time_bomb",
"distName": "cdk-time-bomb"
},
"java": {
"package": "io.github.jmb12686",
"maven": {
"groupId": "io.github.jmb12686",
"artifactId": "cdk-time-bomb"
}
},
"dotnet": {
"namespace": "io.github.jmb12686",
"packageId": "cdk-time-bomb"
}
},
"outdir": "dist"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jmb12686/cdk-time-bomb/issues"
},
"homepage": "https://github.com/jmb12686/cdk-time-bomb#readme",
"devDependencies": {
"@types/jest": "^26.0.5",
"@types/node": "^14.0.24",
"jest": "^26.1.0",
"jsii": "^1.9.0",
"jsii-pacmak": "^1.9.0",
"ts-jest": "^26.1.3"
},
"dependencies": {
"@aws-cdk/aws-events": "^1.53.0",
"@aws-cdk/aws-events-targets": "^1.53.0",
"@aws-cdk/aws-iam": "^1.53.0",
"@aws-cdk/aws-lambda": "^1.53.0",
"@aws-cdk/core": "^1.53.0"
},
"peerDependencies": {
"@aws-cdk/aws-events": "^1.53.0",
"@aws-cdk/aws-events-targets": "^1.53.0",
"@aws-cdk/aws-iam": "^1.53.0",
"@aws-cdk/aws-lambda": "^1.53.0",
"@aws-cdk/core": "^1.53.0"
}
}