-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
67 lines (67 loc) · 1.44 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
63
64
65
66
67
{
"name": "siteaudit",
"version": "2.1.0",
"description": "Siteaudit will analize your site and generate Google Page Speed and Lighthouse report.",
"main": "/lib/index.js",
"scripts": {
"lint": "npx eslint ./lib",
"commit": "npx git-cz",
"release": "standard-version"
},
"files": [
"bin",
"lib",
"docs",
"CHANGELOG.md",
"LICENSE.md",
"yarn.json"
],
"config": {
"commitizen": {
"path": "git-cz"
}
},
"author": "Canella Riccardo <[email protected]>",
"bin": {
"siteaudit": "bin/siteaudit"
},
"license": "MIT",
"dependencies": {
"chrome-launcher": "^0.13.4",
"colors": "^1.4.0",
"commander": "^7.0.0",
"lighthouse": "^7.0.0",
"node-fetch": "^2.6.1",
"ora": "^5.2.0",
"pa11y": "^5.3.0",
"psi": "^4.1.0",
"puppeteer": "^5.5.0",
"url": "^0.11.0"
},
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"audit",
"lighthouse",
"pagespeed",
"benchmark"
],
"repository": {
"type": "git",
"url": "https://github.com/thecreazy/siteaudit.git"
},
"bugs": {
"url": "https://github.com/thecreazy/siteaudit/issues"
},
"devDependencies": {
"commitizen": "^4.2.3",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"git-cz": "^4.7.6",
"standard-version": "^9.1.0"
}
}