-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.07 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
{
"name": "@taimos/cdk-construct-alexa-skill",
"version": "1.1.0",
"description": "An AWS CDK Construct that creates an Alexa Skill backend",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf dist doc 'lib/**/*.js' 'lib/**/*.d.ts' 'tst/**/*.js' 'tst/**/*.d.ts'",
"test": "jest",
"test:watch": "jest --watch",
"doc": "typedoc --excludeExternals --mode file --out doc lib/",
"build": "npm-run-all clean build:jsii test",
"build:jsii": "jsii",
"package": "npm-run-all build doc && jsii-pacmak",
"changelog": "conventional-changelog -i CHANGELOG.md -s -p angular",
"version": "npm run changelog && git add CHANGELOG.md"
},
"jsii": {
"outdir": "dist",
"targets": {
"python": {
"distName": "taimos.cdk-construct-alexa-skill",
"module": "taimos.cdk_construct_alexa_skill"
}
}
},
"keywords": [
"cdk",
"aws-cdk",
"construct",
""
],
"author": {
"email": "[email protected]",
"name": "Thorsten Hoeger",
"url": "https://www.taimos.de"
},
"awscdkio": {
"twitter": "hoegertn"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/taimos/cdk-construct-alexa-skill"
},
"devDependencies": {
"@aws-cdk/assert": "1.54.0",
"@types/jest": "^26.0.7",
"@types/node": "^14.0.25",
"concurrently": "^5.2.0",
"npm-run-all": "^4.1.5",
"jest": "^26.1.0",
"rimraf": "^3.0.2",
"jsii": "^1.9.0",
"jsii-pacmak": "^1.9.0",
"ts-jest": "^26.1.3",
"ts-node": "^8.10.2",
"typedoc": "^0.17.8",
"typescript": "^3.9.7"
},
"dependencies": {
"@aws-cdk/core": "1.54.0",
"constructs": "3.0.4",
"@aws-cdk/aws-dynamodb": "1.54.0",
"@aws-cdk/aws-iam": "1.54.0",
"@aws-cdk/aws-lambda": "1.54.0",
"@aws-cdk/aws-s3": "1.54.0"
},
"peerDependencies": {
"constructs": "3.0.4",
"@aws-cdk/core": "1.54.0",
"@aws-cdk/aws-dynamodb": "1.54.0",
"@aws-cdk/aws-iam": "1.54.0",
"@aws-cdk/aws-lambda": "1.54.0",
"@aws-cdk/aws-s3": "1.54.0"
}
}