-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "lighthouse-auto-fix",
"version": "0.1.1",
"description": "Automatically resolve lighthouse issues",
"main": "index.js",
"bin": {
"lighthouse-auto-fix": "bin/lighthouse-auto-fix.js"
},
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage",
"test-watch": "jest --watch",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"keywords": [
"Optimisation",
"Lighthouse"
],
"author": "",
"license": "MIT",
"dependencies": {
"autoprefixer": "^9.8.5",
"cheerio": "^1.0.0-rc.3",
"chrome-launcher": "^0.13.4",
"cssnano": "^4.1.10",
"fs-extra": "^8.1.0",
"html-minifier": "^4.0.0",
"imagemin": "^7.0.1",
"imagemin-webp": "^5.1.0",
"lighthouse": "^6.1.1",
"lodash": "^4.17.19",
"pacote": "^9.5.12",
"postcss": "^7.0.32",
"request": "^2.88.2",
"semver": "^6.3.0",
"uglify-es": "^3.3.9",
"workbox-build": "^4.3.1",
"yargs": "^13.3.2"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^24.9.0",
"prettier": "^1.19.1"
}
}