-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.58 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.58 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
{
"name": "load-profile-generator",
"version": "0.5.6",
"description": "Load generator that simulates user behavior provided by Matomo via Puppeteer Cluster.",
"keywords": [
"matomo",
"load-profile-generator"
],
"homepage": "https://github.com/pawcoding/load-profile-generator",
"bugs": {
"url": "https://github.com/pawcoding/load-profile-generator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pawcoding/load-profile-generator.git"
},
"license": "ISC",
"author": "Luis Wolf <development@pawcode.de> (https://pawcode.de)",
"type": "module",
"main": "dist/index.js",
"bin": {
"lpg": "./dist/index.js"
},
"scripts": {
"build": "pnpm exec tsc",
"dev": "pnpm exec tsc --watch",
"lint": "pnpm exec eslint --fix --cache",
"prepare": "husky",
"prettier": "pnpm exec prettier . --write --cache"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"figlet": "^1.7.0",
"puppeteer": "^21.6.1",
"puppeteer-cluster": "~0.23.0"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@stylistic/eslint-plugin": "^5.2.2",
"@types/figlet": "^1.5.8",
"@types/node": "^20.10.5",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.1.1",
"prettier-plugin-organize-imports": "^4.2.0",
"prettier-plugin-packagejson": "^2.5.19",
"typescript": "~5.8.3",
"typescript-eslint": "^8.38.0"
},
"packageManager": "pnpm@10.11.0"
}