-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
58 lines (58 loc) · 1.47 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": "pwmetrics",
"version": "4.2.3",
"description": "Gather progressive web metrics for a url. CLI & lib",
"main": "lib/index.js",
"bin": {
"pwmetrics": "bin/cli.js"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"dev": "tsc -w",
"lint": "[ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .",
"test": "npm run lint && ./test-runner.sh",
"gulp-example": "gulp --gulpfile recipes/gulp/gulpfile.js --cwd recipes/gulp"
},
"author": "Paul Irish",
"license": "Apache-2.0",
"dependencies": {
"@gribnoysup/wunderbar": "^2.2.1",
"@types/node": "*",
"chrome-launcher": "^0.10.2",
"google-auth-library": "^0.10.0",
"googleapis": "^47.0.0",
"lighthouse": "^6.0.0",
"micro-promisify": "^0.1.1",
"open": "^6.4.0",
"readline-sync": "^1.4.6",
"yargs": "^6.6.0"
},
"devDependencies": {
"chai": "^3.5.0",
"devtools-protocol": "^0.0.739646",
"eslint": "^3.12.0",
"eslint-config-google": "^0.7.1",
"gulp": "^3.9.1",
"mocha": "^3.2.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"typescript": "3.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulirish/pwmetrics.git"
},
"keywords": [
"metrics",
"performance",
"lighthouse"
],
"bugs": {
"url": "https://github.com/paulirish/pwmetrics/issues"
},
"homepage": "https://github.com/paulirish/pwmetrics#readme",
"engines": {
"node": ">=8.9"
}
}