-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 1.69 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
{
"name": "@moia-oss/bastion-host-forward",
"description": "CDK Construct for creating a bastion host to forward a connection to several AWS data services inside a private subnet from your local machine",
"author": {
"name": "MOIA GmbH"
},
"repository": {
"type": "git",
"url": "https://github.com/moia-oss/bastion-host-forward"
},
"keywords": [
"cdk",
"awscdk",
"bastion host",
"rds",
"elasticache redis",
"redshift",
"aurora serverless"
],
"license": "Apache-2.0",
"version": "0.0.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "jsii",
"watch": "jsii -w",
"package": "jsii-pacmak",
"release-npm": "jsii-release-npm",
"release-pypi": "jsii-release-pypi",
"test": "jest",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./lib/",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx ./lib/ --fix",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"jsii": {
"outdir": "dist",
"targets": {
"python": {
"distName": "moia-dev.bastion-host-forward",
"module": "moia_dev.bastion_host_forward"
}
}
},
"devDependencies": {
"@moia-oss/eslint-prettier-typescript-config": "^0.11.3",
"@types/jest": "^27.4.1",
"@types/node": "22.10.3",
"constructs": "10.4.2",
"aws-cdk-lib": "2.177.0",
"eslint": "^8.6.0",
"jest": "^27.4.7",
"jsii": "^5.0.3",
"jsii-pacmak": "^1.52.1",
"jsii-release": "^0.2.309",
"prettier": "^2.6.1",
"ts-jest": "^27.1.3",
"tslint": "^6.1.3",
"typescript": "^4.5.2"
},
"peerDependencies": {
"constructs": "^10.3.0",
"aws-cdk-lib": "^2.121.1"
},
"dependencies": {}
}