-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "metrx",
"version": "2.0.4",
"description": "Tool to measure web page performance metrics",
"author": "Marc-Olivier Castagnetti <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/mcastagnetti/metrx"
},
"bugs": {
"url": "https://github.com/mcastagnetti/metrx/issues"
},
"keywords": [
"metrics",
"performance",
"cli",
"measures"
],
"main": "./index.js",
"bin": {
"metrx": "./cli.js"
},
"files": [
"cli.js",
"index.js",
"src"
],
"license": "MIT",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"dependencies": {
"chalk": "^5.1.2",
"cli-progress": "^3.11.2",
"cli-table": "^0.3.11",
"commander": "^9.4.1",
"ora": "^6.1.2",
"puppeteer": "^19.2.0"
},
"devDependencies": {
"ava": "^5.0.1",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "2.7.1"
},
"scripts": {
"test": "ava"
}
}