-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.81 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.81 KB
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
{
"name": "@pacovk/k6-executor-cluster",
"version": "0.2.0",
"description": "AWS CDK construct library for deploying and running distributed K6 load tests on AWS infrastructure",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"bootstrap": "cdk bootstrap",
"loadtest": "cdk deploy",
"destroy": "cdk destroy",
"lint": "eslint . --ext .ts",
"prepublishOnly": "yarn build",
"clean": "rm -rf lib/*.js lib/*.d.ts lib/*.js.map lib/**/*.js lib/**/*.d.ts lib/**/*.js.map"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PacoVK/aws-loadtest-environment.git"
},
"keywords": [
"aws",
"cdk",
"k6",
"load-testing",
"performance-testing",
"aws-cdk-construct"
],
"author": "pascal.euhus",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/PacoVK/aws-loadtest-environment/issues"
},
"homepage": "https://github.com/PacoVK/aws-loadtest-environment#readme",
"devDependencies": {
"@aws-sdk/client-sfn": "^3.825.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"aws-cdk": "^2.194.0",
"aws-cdk-lib": "^2.194.0",
"constructs": "^10.0.0",
"esbuild": "^0.27.0",
"eslint": "^8.40.0",
"jest": "^30.0.0",
"prettier": "^3.5.3",
"ts-jest": "^29.1.0",
"typescript": "~5.9.0"
},
"dependencies": {
"@aws-cdk/aws-ec2-alpha": "^2.200.1-alpha.0"
},
"peerDependencies": {
"aws-cdk-lib": "^2.194.0",
"constructs": "^10.0.0"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.js.map",
"docker/**/*",
"LICENSE.md",
"README.md"
],
"packageManager": "yarn@4.12.0"
}