-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.35 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.35 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
{
"name": "k6-api-performance-framework",
"version": "1.0.0",
"description": "API Performance testing framework using k6",
"homepage": "https://github.com/incubyte/k6-api-performance-framework#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/incubyte/k6-api-performance-framework.git"
},
"license": "ISC",
"author": "Akash Shah",
"main": "index.js",
"keywords": [],
"type": "module",
"scripts": {
"test": "echo 'Available tests: quick, smoke, load, stress, soak' && echo 'Run: npm run test:quick (or test:smoke, test:load, etc.)'",
"test:quick": "k6 run scenarios/quick-test.js",
"test:smoke": "k6 run scenarios/smoke-test.js",
"test:load": "k6 run scenarios/load-test.js",
"test:stress": "k6 run scenarios/stress-test.js",
"test:soak": "k6 run scenarios/soak-test.js",
"test:all": "npm run test:quick && npm run test:smoke",
"test:ci": "k6 run --quiet scenarios/quick-test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"check-format": "prettier --check .",
"validate": "npm run check-format && npm run lint"
},
"devDependencies": {
"@types/k6": "^1.5.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.0",
"k6-html-reporter": "^1.0.5",
"prettier": "^3.5.3"
}
}