-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.44 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
{
"name": "@pdmlab/cdk-constructs",
"description": "Shared constructs for AWS CDK",
"version": "0.1.5",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PDMLab/cdk-constructs.git"
},
"keywords": [
"aws-cdk",
"aws",
"typescript",
"nodejs",
"cdk-constructs",
"aws-cdk-constructs",
"infrastructure-as-code",
"iac",
"aws-iam"
],
"author": "Alexander Zeitler <alexander.zeitler@pdmlab.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PDMLab/cdk-constructs/issues"
},
"homepage": "https://github.com/PDMLab/cdk-constructs#readme",
"devDependencies": {
"@aws-cdk/assert": "^1.15.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^8.2.0",
"@types/jest": "^24.0.18",
"husky": "^3.0.9",
"jest": "^24.9.0",
"standard-version": "^9.5.0",
"ts-jest": "^24.0.2",
"typescript": "~3.6.2"
},
"peerDependencies": {
"@aws-cdk/core": "^1.15.0"
},
"dependencies": {
"@aws-cdk/aws-iam": "^1.15.0",
"@aws-cdk/aws-route53": "^1.15.0",
"@aws-cdk/core": "^1.15.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}