-
Notifications
You must be signed in to change notification settings - Fork 126
/
package.json
57 lines (57 loc) · 1.09 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
{
"name": "psi",
"version": "4.1.0",
"description": "PageSpeed Insights with reporting",
"license": "Apache-2.0",
"repository": "GoogleChromeLabs/psi",
"author": {
"name": "Addy Osmani",
"email": "addyosmani@gmail.com",
"url": "https://addyosmani.com"
},
"bin": "cli.js",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo && mocha",
"coverage": "nyc --reporter=html --reporter=text mocha"
},
"files": [
"cli.js",
"index.js",
"lib"
],
"keywords": [
"pagespeed",
"insights",
"speed",
"page",
"website",
"measure",
"optimize",
"size"
],
"dependencies": {
"chalk": "^3.0.0",
"googleapis": "^47.0.0",
"humanize-url": "^2.1.0",
"meow": "^6.0.1",
"pify": "^5.0.0",
"prepend-http": "^3.0.1",
"pretty-ms": "^6.0.1",
"sort-on": "^4.1.0",
"terminal-link": "^2.1.1",
"update-notifier": "^4.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"strip-ansi": "^6.0.0",
"xo": "^0.25.3"
},
"xo": {
"space": true
}
}