-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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": "@funboxteam/harold",
"version": "2.0.3",
"description": "Project bundle comparison tool",
"license": "MIT",
"author": "Andrey Ivanov (https://github.com/343dev)",
"repository": {
"type": "git",
"url": "https://github.com/funbox/harold"
},
"main": "index.js",
"bin": {
"harold": "index.js"
},
"files": [
"lib/",
"tasks/",
"index.js",
"MIGRATION.md"
],
"scripts": {
"lint": "eslint .",
"prepublishOnly": "if [ -z \"$CI\" ]; then lawyer; fi",
"test": "echo \"Error: no test specified\" && exit 1",
"update-git-hooks": "npx simple-git-hooks"
},
"dependencies": {
"cli-table3": "0.6.0",
"commander": "7.2.0",
"fast-glob": "3.2.5",
"gzip-size": "6.0.0",
"ora": "5.4.0",
"pretty-bytes": "5.6.0",
"signal-exit": "3.0.3"
},
"devDependencies": {
"@funboxteam/eslint-config": "7.3.0",
"eslint": "7.32.0",
"lint-staged": "10.5.4",
"simple-git-hooks": "2.0.3"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}