-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.26 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"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": ">=18.12"
},
"dependencies": {
"cli-table3": "^0.6.5",
"commander": "^12.0.0",
"fast-glob": "^3.3.2",
"gzip-size": "^7.0.0",
"nanospinner": "^1.1.0",
"pretty-bytes": "^6.1.1",
"signal-exit": "^4.1.0"
},
"devDependencies": {
"@343dev/eslint-config": "^1.0.0",
"eslint": "^8.57.0",
"lint-staged": "^15.2.8",
"simple-git-hooks": "^2.11.1"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"eslintConfig": {
"extends": "@343dev"
}
}