-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
package.json
72 lines (72 loc) · 1.79 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": "phantomas",
"version": "2.13.0",
"author": "macbre <[email protected]> (http://macbre.net)",
"description": "Headless Chromium-based web performance metrics collector and monitoring tool",
"main": "./lib/index.js",
"bin": {
"phantomas": "bin/phantomas.js"
},
"repository": {
"type": "git",
"url": "git://github.com/macbre/phantomas.git"
},
"keywords": [
"high performance web sites",
"metrics",
"monitoring",
"phantomas",
"puppeteer",
"chromium",
"headless browser",
"web development",
"webperf"
],
"license": "BSD-2-Clause",
"engines": {
"node": ">=16.0"
},
"dependencies": {
"analyze-css": "^2.1.89",
"analyze-image": "^1.0.0",
"commander": "^9.0.0",
"debug": "^4.1.1",
"decamelize": "^5.0.0",
"fast-stats": "0.0.6",
"js-yaml": "^4.0.0",
"puppeteer": "^23.0.2"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@jest/globals": "^28.0.0",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"glob": "^8.0.1",
"globals": "^15.3.0",
"jest": "^28.0.0",
"prettier": "2.7.1"
},
"scripts": {
"test": "node --trace-warnings node_modules/.bin/jest test/ --coverage --detectOpenHandles --forceExit",
"unit-test": "jest test/results.test.js test/modules/ --coverage --detectOpenHandles --forceExit",
"lint": "eslint --cache .",
"metadata": "DEBUG=generate node lib/metadata/generate.js",
"make-docs": "DEBUG=docs node lib/metadata/make_docs.js",
"prettier": "npx prettier --write ."
},
"jest": {
"verbose": true,
"reporters": [
"default",
"github-actions"
],
"coverageThreshold": {
"global": {
"statements": 89,
"branches": 80,
"functions": 89,
"lines": 89
}
}
}
}