-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.2 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.2 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
{
"name": "@343dev/harold",
"version": "4.0.3",
"description": "Project bundle comparison tool",
"keywords": [
"front-end",
"bundle",
"analyzer",
"comparison"
],
"license": "MIT",
"author": "Andrey Warkentin (https://github.com/343dev)",
"repository": {
"type": "git",
"url": "git+https://github.com/343dev/harold.git"
},
"bin": {
"harold": "index.js"
},
"type": "module",
"exports": "./index.js",
"files": [
"lib/",
"tasks/",
"index.js",
".haroldrc.js",
"MIGRATION.md"
],
"scripts": {
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1",
"update-git-hooks": "npx simple-git-hooks"
},
"engines": {
"node": ">=20.18"
},
"dependencies": {
"cli-table3": "0.6.5",
"commander": "14.0.2",
"fast-glob": "3.3.3",
"gzip-size": "7.0.0",
"nanospinner": "1.2.2",
"pretty-bytes": "7.1.0",
"signal-exit": "4.1.0"
},
"devDependencies": {
"@343dev/eslint-config": "4.0.0",
"eslint": "9.39.2",
"lint-staged": "16.2.7",
"simple-git-hooks": "2.13.1"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}