-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.2 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": "@sum.cumo/lighthouse-keeper",
"version": "3.0.2",
"description": "CLI tool for running Google’s Lighthouse checks",
"main": "lib/main.js",
"bin": {
"lighthouse-keeper": "./bin/lighthouse-keeper.js"
},
"repository": {
"type": "git",
"url": "[email protected]:sumcumo/lighthouse-keeper.git"
},
"homepage": "https://github.com/sumcumo/lighthouse-keeper",
"keywords": [
"lighthouse",
"quality",
"cli"
],
"scripts": {
"release": "standard-version",
"lint": "eslint --ext .js --fix --cache lib",
"build": "rollup -c"
},
"author": "sum.cumo GmbH",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "9.1.1",
"babel-eslint": "10.1.0",
"eslint": "7.6.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.0",
"husky": "4.2.5",
"prettier": "2.0.5",
"prettier-eslint": "11.0.0",
"rollup": "1.32.1",
"standard-version": "8.0.2"
},
"dependencies": {
"chalk": "4.1.0",
"chrome-launcher": "0.13.4",
"easy-table": "1.1.1",
"figures": "3.2.0",
"lighthouse": "6.1.1",
"prettyjson": "1.2.1",
"yargs": "15.4.1"
}
}