-
-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.57 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.57 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "browsertime",
"description": "Get performance metrics from your web page using Browsertime.",
"version": "26.3.2",
"bin": "./bin/browsertime.js",
"type": "module",
"types": "./types/scripting.d.ts",
"dependencies": {
"@devicefarmer/adbkit": "3.3.8",
"@sitespeed.io/chromedriver": "143.0.7499",
"@sitespeed.io/edgedriver": "143.0.3650",
"@sitespeed.io/geckodriver": "0.36.0",
"@sitespeed.io/log": "1.0.0",
"@sitespeed.io/throttle": "5.0.1",
"@sitespeed.io/tracium": "0.3.3",
"chrome-har": "1.2.1",
"chrome-remote-interface": "0.33.3",
"execa": "9.6.1",
"fast-stats": "0.0.7",
"ff-test-bidi-har-export": "0.0.22",
"lodash.merge": "4.6.2",
"selenium-webdriver": "4.43.0",
"yargs": "18.0.0"
},
"optionalDependencies": {
"jimp": "1.6.1",
"usb-power-profiling": "1.6.0"
},
"devDependencies": {
"@types/selenium-webdriver": "4.35.5",
"ava": "6.4.1",
"clean-jsdoc-theme": "4.3.2",
"eslint": "9.37.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-unicorn": "61.0.2",
"jsdoc": "4.0.5",
"prettier": "3.8.3",
"serve": "14.2.6",
"serve-handler": "6.1.7",
"typescript": "5.9.3"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE",
"README.md",
"bin",
"browserscripts",
"browsersupport",
"visualmetrics/visualmetrics-portable.py",
"browsertime.png",
"index.js",
"lib",
"package.json",
"vendor",
"types"
],
"exports": {
".": {
"import": "./index.js",
"types": "./types/scripting.d.ts"
}
},
"scripts": {
"test": "ava",
"start-server": "serve test/data/html/",
"stop-server": "sudo pkill serve",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"tsc": "tsc",
"jsdoc": "jsdoc --configure jsdoc/jsdoc.json",
"prepublishOnly": "npm run lint && npm run tsc"
},
"author": "Peter Hedenskog",
"contributors": [
{
"name": "Gregory Mierzwinski"
},
{
"name": "Tobias Lidskog"
},
{
"name": "Jonathan Lee"
}
],
"repository": {
"type": "git",
"url": "https://github.com/sitespeedio/browsertime.git"
},
"homepage": "https://www.sitespeed.io/documentation/browsertime/",
"license": "MIT",
"ava": {
"files": [
"test/**/*",
"!test/util",
"!test/data"
],
"concurrency": 1,
"failFast": true,
"require": [
"./test/util/setup.js"
],
"nodeArguments": [
"--trace-deprecation"
]
}
}