-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.34 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
{
"name": "exthouse",
"version": "1.0.0",
"description": "Analyze the impact of a browser extension on web performance",
"repository": "https://github.com/treosh/exthouse",
"author": "Artem Denysov <denysov.artem@gmail.com>, Aleksey Kulikov <alekseykulikov@me.com>",
"license": "MIT",
"engines": {
"node": ">=10"
},
"bin": {
"exthouse": "bin/cli.js"
},
"main": "src/index.js",
"files": [
"bin",
"src"
],
"keywords": [
"web performance",
"extensions",
"web extensions",
"browser extension",
"chrome extension",
"user experience",
"long tasks",
"first input delay",
"time to interactive",
"lighthouse",
"chrome",
"performance"
],
"scripts": {
"test": "prettier -c bin/** src/** package.json *.md && tsc -p ."
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"delay": "^4.3.0",
"fs-extra": "^8.0.1",
"globby": "^9.2.0",
"lighthouse": "^5.1.0",
"lodash": "^4.17.11",
"open": "^6.3.0",
"puppeteer": "^1.17.0",
"simple-format-number": "^0.1.2",
"unzip-crx": "^0.2.0"
},
"devDependencies": {
"@types/fs-extra": "^7.0.0",
"@types/lodash": "^4.14.134",
"@types/puppeteer": "^1.12.4",
"markdown-table": "^1.1.3",
"millify": "^3.1.0",
"prettier": "^1.18.2",
"typescript": "^3.5.1"
}
}