-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "autocannon-app",
"version": "1.0.1",
"description": "A web ui of autocannon",
"main": "index.js",
"scripts": {
"dev": "cd client && npm run serve",
"serve": "node server/index.js",
"build": "cd client && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sun0day/autocannon-app.git"
},
"engines": {
"node": "^16.0.0 || ^18.0.0"
},
"files": [
"server",
"client/dist",
"bin"
],
"keywords": [
"autocannon",
"load-test",
"stress-test",
"web-ui"
],
"bin": {
"cannon": "./bin/cmd.js"
},
"author": "sun0day",
"license": "MIT",
"bugs": {
"url": "https://github.com/sun0day/autocannon-app/issues"
},
"homepage": "https://github.com/sun0day/autocannon-app#readme",
"dependencies": {
"@fastify/formbody": "^7.3.0",
"@fastify/static": "^6.5.1",
"autocannon": "^7.10.0",
"commander": "^9.5.0",
"fastify": "^4.10.2",
"lru-cache": "^7.14.1"
}
}