forked from sitespeedio/coach-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.37 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "coach-core",
"version": "6.4.3",
"description": "Core package for the Coach.",
"keywords": [
"performance",
"web",
"advice",
"webperf",
"perfmatters",
"coach"
],
"main": "./lib/index.js",
"engines": {
"node": ">=10.13.0"
},
"files": [
"lib",
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/sitespeedio/coach-core.git"
},
"bugs": {
"url": "https://github.com/sitespeedio/coach-core/issues"
},
"scripts": {
"combine": "mkdirp dist && node tools/combine.js dist/coach.js",
"test:api": "mocha --recursive test/api",
"test:dom": "mocha --recursive test/dom",
"test:har": "mocha --recursive test/har",
"test:merge": "mocha --recursive test/merge",
"pretest": "npm run combine && npm run terser",
"test": "mocha --recursive test/api test/dom test/har test/merge",
"jsdoc": "jsdoc -R README.md -r -d dist/doc lib",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"travis": "npm run eslint-check && npm run lint && npm run test",
"prepare": "npm run combine && npm run terser && npm run jsdoc",
"gen-dist": "npm run combine && npm run terser",
"terser": "terser dist/coach.js --compresss --mangle --format wrap_iife=true --parse acorn > dist/coach.min.js"
},
"devDependencies": {
"browsertime": "12.8.0",
"bluebird": "3.7.2",
"bookmarkletify": "^1.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"connect": "^3.7.0",
"eslint": "7.13.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.1.4",
"http2": "3.3.7",
"jsdoc": "3.6.6",
"mkdirp": "0.5.1",
"mocha": "6.2.0",
"prettier": "2.1.2",
"serve-static": "1.14.1",
"terser": "5.3.8"
},
"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": {
"filter-files": "0.4.0",
"json-stable-stringify": "1.0.1",
"lodash.groupby": "4.6.0",
"lodash.merge": "4.6.2",
"lodash.sortby": "4.7.0",
"pagexray": "4.3.1",
"third-party-web": "0.12.4",
"wappalyzer-core": "6.6.0"
}
}