-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.24 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
{
"name": "cdk-http-openapi",
"version": "0.1.1",
"description": "CDK Construct that lets you build AWS Api Gateway Http Api, backed by Lambdas, based on a OpenAPI spec file.",
"scripts": {
"build": "jsii",
"watch": "jsii -w",
"package": "jsii-pacmak -vv",
"cdk": "cdk",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pre-release": "npm run build && npm run package",
"pre-release:dryrun": "npm run pre-release && standard-version --dry-run",
"pre-release:minor": "npm run pre-release && standard-version --pre-release --release-as=minor",
"prerelease": "npm run pre-release && standard-version --pre-release",
"postrelease": "git push && git push --tags"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/iDanielBot/cdk-http-openapi.git",
"homepage": "https://github.com/iDanielBot/cdk-http-openapi",
"author": {
"name": "iDanielBot",
"email": "[email protected]",
"url": "https://idanielbot.com"
},
"license": "MIT",
"keywords": [
"cdk",
"openapi",
"lambda",
"API",
"Api Gateway",
"http",
"constructs",
"reusable cdk constructs"
],
"jsii": {
"outdir": "dist",
"versionFormat": "short",
"targets": {},
"tsc": {
"rootDir": "./src/",
"outDir": "lib"
}
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"yaml": "^2.1.3"
},
"bundledDependencies": [
"yaml"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@types/node": "^17.0.21",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"@aws-cdk/aws-apigatewayv2-alpha": "2.44.0-alpha.0",
"aws-cdk-lib": "2.44.0",
"constructs": "10.1.122",
"jsii": "^1.55.1",
"jsii-pacmak": "^1.55.1",
"prettier": "^2.6.0",
"standard-version": "^9.3.2",
"typescript": "^4.6.2"
},
"peerDependencies": {
"@aws-cdk/aws-apigatewayv2-alpha": "^2.44.0-alpha.0",
"aws-cdk-lib": "^2.44.0",
"constructs": "^10.1.122"
}
}