-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 920 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 920 Bytes
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
{
"name": "loadforge-cli",
"version": "0.1.0",
"description": "CLI helper for LoadForge: sync tests, trigger runs, and wait for results.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"lf-cli": "index.js",
"loadforge-cli": "index.js"
},
"keywords": [
"loadforge",
"load-testing",
"cli",
"locust"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AdventDevInc/lf-cli.git"
},
"bugs": {
"url": "https://github.com/AdventDevInc/lf-cli/issues"
},
"homepage": "https://github.com/AdventDevInc/lf-cli#readme",
"files": [
"index.js",
"src/**",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"type": "commonjs",
"dependencies": {
"axios": "^1.11.0",
"commander": "^14.0.0",
"dotenv": "^17.2.1"
}
}