-
Notifications
You must be signed in to change notification settings - Fork 249
/
package.json
94 lines (94 loc) · 2.76 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@aws-solutions-constructs/aws-fargate-kinesisstreams",
"version": "0.0.0",
"description": "CDK Constructs for AWS Fargate to an Amazon Kinesis Data Stream ",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/awslabs/aws-solutions-constructs.git",
"directory": "source/patterns/@aws-solutions-constructs/aws-fargate-kinesisstreams"
},
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com",
"organization": true
},
"license": "Apache-2.0",
"scripts": {
"build": "tsc -b .",
"lint": "eslint -c ../eslintrc.yml --ext=.js,.ts . && tslint --project .",
"lint-fix": "eslint -c ../eslintrc.yml --ext=.js,.ts --fix .",
"test": "jest --coverage",
"clean": "tsc -b --clean",
"watch": "tsc -b -w",
"integ": "integ-runner --update-on-failed",
"integ-no-clean": "integ-runner --update-on-failed --no-clean",
"integ-assert": "integ-runner",
"jsii": "jsii",
"jsii-pacmak": "jsii-pacmak",
"build+lint+test": "npm run jsii && npm run lint && npm test && npm run integ-assert",
"snapshot-update": "npm run jsii && npm test -- -u && npm run integ-assert"
},
"jsii": {
"outdir": "dist",
"targets": {
"java": {
"package": "software.amazon.awsconstructs.services.fargatekinesisstreams",
"maven": {
"groupId": "software.amazon.awsconstructs",
"artifactId": "fargatekinesisstreams"
}
},
"dotnet": {
"namespace": "Amazon.SolutionsConstructs.AWS.fargatekinesisstreams",
"packageId": "Amazon.SolutionsConstructs.AWS.FargateKinesisStreams",
"signAssembly": true,
"iconUrl": "https://raw.githubusercontent.com/aws/aws-cdk/master/logo/default-256-dark.png"
},
"python": {
"distName": "aws-solutions-constructs.aws-fargate-kinesisstreams",
"module": "aws_solutions_constructs.aws_fargate_kinesisstreams"
}
}
},
"dependencies": {
"@aws-cdk/integ-tests-alpha": "0.0.0-alpha.0",
"@aws-solutions-constructs/core": "0.0.0",
"constructs": "^10.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@aws-solutions-constructs/core": "0.0.0",
"@types/node": "^10.3.0",
"constructs": "^10.0.0",
"aws-cdk-lib": "0.0.0"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"coverageReporters": [
"text",
[
"lcov",
{
"projectRoot": "../../../../"
}
]
]
},
"peerDependencies": {
"@aws-solutions-constructs/core": "0.0.0",
"constructs": "^10.0.0",
"aws-cdk-lib": "^0.0.0"
},
"keywords": [
"aws",
"cdk",
"awscdk",
"AWS Solutions Constructs",
"AWS Fargate",
"Amazon Kinesis"
]
}