This repository has been archived by the owner on May 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
72 lines (72 loc) · 1.56 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
68
69
70
71
72
{
"name": "webcoach",
"version": "7.0.0",
"description": "The coach gives you advice on building a better web page",
"keywords": [
"performance",
"web",
"advice",
"webperf",
"perfmatters",
"coach"
],
"main": "./lib/index.js",
"bin": "./bin/webcoach.js",
"engines": {
"node": ">=10.13.0"
},
"files": [
"bin",
"lib"
],
"repository": {
"type": "git",
"url": "git://github.com/sitespeedio/coach.git"
},
"bugs": {
"url": "https://github.com/sitespeedio/coach/issues"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"test": "mocha --recursive test"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"connect": "^3.7.0",
"eslint": "6.2.2",
"eslint-config-prettier": "6.1.0",
"eslint-plugin-prettier": "3.1.0",
"http2": "3.3.7",
"jsdoc": "3.6.3",
"mkdirp": "0.5.1",
"mocha": "6.2.0",
"prettier": "1.18.2",
"serve-static": "1.14.1",
"uglify-js": "3.6.0"
},
"homepage": "https://www.sitespeed.io/documentation/coach/",
"license": "MIT",
"author": {
"name": "Peter Hedenskog",
"url": "https://www.peterhedenskog.com"
},
"contributors": [
{
"name": "Tobias Lidskog"
},
{
"name": "Jonathan Lee"
}
],
"dependencies": {
"coach-core": "7.0.0",
"browsertime": "14.12.0",
"chalk": "4.1.2",
"cli-table3": "0.5.1",
"word-wrap": "1.2.3",
"yargs": "17.2.1"
}
}