Skip to content

Commit defc8fd

Browse files
committed
Seed the new package.json file
1 parent ba627ee commit defc8fd

File tree

1 file changed

+95
-0
lines changed
  • source/patterns/@aws-solutions-constructs/aws-lambda-transcribe

1 file changed

+95
-0
lines changed
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
{
2+
"name": "@aws-solutions-constructs/aws-lambda-transcribe",
3+
"version": "0.0.0",
4+
"description": "CDK constructs for defining an interaction between an AWS Lambda function and Amazon Transcribe with S3 buckets.",
5+
"main": "lib/index.js",
6+
"types": "lib/index.d.ts",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/awslabs/aws-solutions-constructs.git",
10+
"directory": "source/patterns/@aws-solutions-constructs/aws-lambda-transcribe"
11+
},
12+
"author": {
13+
"name": "Amazon Web Services",
14+
"url": "https://aws.amazon.com",
15+
"organization": true
16+
},
17+
"license": "Apache-2.0",
18+
"scripts": {
19+
"build": "tsc -b .",
20+
"lint": "eslint --config ../eslintrc.config.mjs --no-warn-ignored .",
21+
"lint-fix": "eslint --config ../eslintrc.config.mjs --ext=.js,.ts --fix .",
22+
"test": "jest --coverage",
23+
"clean": "tsc -b --clean",
24+
"watch": "tsc -b -w",
25+
"asciidoc": "asciidoctor --failure-level WARNING -o /dev/null README.adoc",
26+
"integ": "integ-runner --update-on-failed",
27+
"integ-assert": "integ-runner",
28+
"jsii": "jsii",
29+
"jsii-pacmak": "jsii-pacmak",
30+
"build+lint+test": "npm run jsii && npm run lint && npm run asciidoc && npm test && npm run integ-assert",
31+
"blt": "npm run build+lint+test",
32+
"integ-no-clean": "integ-runner --update-on-failed --no-clean",
33+
"snapshot-update": "npm run jsii && npm test -- -u && npm run integ-assert"
34+
},
35+
"jsii": {
36+
"outdir": "dist",
37+
"targets": {
38+
"java": {
39+
"package": "software.amazon.awsconstructs.services.lambdatranscribe",
40+
"maven": {
41+
"groupId": "software.amazon.awsconstructs",
42+
"artifactId": "lambdatranscribe"
43+
}
44+
},
45+
"dotnet": {
46+
"namespace": "Amazon.SolutionsConstructs.AWS.LambdaTranscribe",
47+
"packageId": "Amazon.SolutionsConstructs.AWS.LambdaTranscribe",
48+
"signAssembly": true,
49+
"iconUrl": "https://raw.githubusercontent.com/aws/aws-cdk/master/logo/default-256-dark.png"
50+
},
51+
"python": {
52+
"distName": "aws-solutions-constructs.aws-lambda-transcribe",
53+
"module": "aws_solutions_constructs.aws_lambda_transcribe"
54+
}
55+
}
56+
},
57+
"dependencies": {
58+
"@aws-solutions-constructs/core": "0.0.0",
59+
"constructs": "^10.0.0"
60+
},
61+
"devDependencies": {
62+
"@aws-cdk/integ-tests-alpha": "0.0.0-alpha.0",
63+
"@types/node": "^10.3.0",
64+
"constructs": "^10.0.0",
65+
"aws-cdk-lib": "0.0.0"
66+
},
67+
"jest": {
68+
"moduleFileExtensions": [
69+
"js"
70+
],
71+
"coverageReporters": [
72+
"text",
73+
[
74+
"lcov",
75+
{
76+
"projectRoot": "../../../../"
77+
}
78+
]
79+
]
80+
},
81+
"peerDependencies": {
82+
"@aws-solutions-constructs/core": "0.0.0",
83+
"constructs": "^10.0.0",
84+
"aws-cdk-lib": "^0.0.0"
85+
},
86+
"keywords": [
87+
"aws",
88+
"cdk",
89+
"awscdk",
90+
"AWS Solutions Constructs",
91+
"Amazon S3",
92+
"AWS Lambda",
93+
"Amazon Transcribe"
94+
]
95+
}

0 commit comments

Comments
 (0)