-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"name": "cdk-interactsh-instance",
"version": "0.0.2",
"author": "Pasi Orovuo",
"dependencies": {
"aws-cdk-lib": "^2.134.0",
"constructs": "^10.3.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^1.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"aws-cdk": "^2.134.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1"
},
"main": "interactsh-instance.ts",
"description": "This construct implements an easy-to-use, cheap-to-run Interact.sh instance. It is a semi-highly available implementation where only a single server is running at a time, but an AutoScaling Group is used to achieve high availability: In case the instance is terminated, ASG spins up a new instance and continues where it was.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pasiorovuo/cdk-interactsh-instance.git"
},
"keywords": [
"cdk",
"interactsh"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/pasiorovuo/cdk-interactsh-instance/issues"
},
"homepage": "https://github.com/pasiorovuo/cdk-interactsh-instance#readme"
}