-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.47 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
62
{
"name": "benchy-cli",
"version": "0.0.5",
"description": "A CLI tool for comparing performance metrics between web pages",
"bin": {
"benchy": "src/cli.js"
},
"engines": {
"node": ">=12.10"
},
"files": [
"src",
"!src/**/*.spec.js"
],
"scripts": {
"format": "prettier --write \"**/*.{js,json,md}\"",
"lint": "eslint ./src/ --no-cache",
"preuninstall": "node src/scripts/pre-uninstall.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/briganti/benchy.git"
},
"keywords": [
"cli-app",
"cli",
"lighthouse",
"report"
],
"author": "Michael Vial <[email protected]>",
"license": "MIT",
"dependencies": {
"@folder/xdg": "^3.1.2",
"cli-spinner": "^0.2.10",
"cli-table3": "^0.6.0",
"lighthouse": "^6.1.1",
"node-jq": "^1.11.1",
"prompts": "^2.3.2",
"yargs": "^15.4.1"
},
"devDependencies": {
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.8",
"prettier": "^2.2.1"
},
"bugs": {
"url": "https://github.com/briganti/benchy/issues"
},
"homepage": "https://github.com/briganti/benchy#readme"
}