-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
83 lines (83 loc) · 2.2 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
{
"name": "coach-core",
"version": "8.1.1",
"description": "Core package for the Coach.",
"keywords": [
"performance",
"web",
"advice",
"webperf",
"perfmatters",
"coach"
],
"main": "./lib/index.js",
"engines": {
"node": ">=14.0.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",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"prepare": "npm run combine && npm run terser",
"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": "23.5.0",
"bluebird": "3.7.2",
"bookmarkletify": "^1.0.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"connect": "^3.7.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mkdirp": "^3.0.1",
"mocha": "^10.2.0",
"prettier": "^3.4.2",
"serve-static": "^1.16.2",
"terser": "^5.37.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": {
"filter-files": "0.4.0",
"json-stable-stringify": "1.0.2",
"lodash.groupby": "4.6.0",
"lodash.merge": "4.6.2",
"lodash.sortby": "4.7.0",
"pagexray": "4.4.4",
"third-party-web": "0.26.2",
"wappalyzer-core": "6.10.66"
}
}