-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.61 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
{
"name": "lighthouse-aggregate-report",
"version": "1.4.2",
"description": "Google Lighthouse aggregate report",
"main": "lib/index.js",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" ",
"lint": "eslint -c .eslintrc.json --ext .ts src",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fasatrix/lighthouse-aggregate-report"
},
"keywords": [
"google lighthouse",
"lighthouse",
"google",
"performance test",
"accessibility",
"performance",
"pwa",
"best-practices",
"seo"
],
"author": "Fabio Santoro",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/fasatrix/lighthouse-aggregate-report/issues"
},
"homepage": "https://github.com/fasatrix/lighthouse-aggregate-report#readme",
"dependencies": {
"lighthouse": "^9.6.8",
"playwright": "^1.29.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-plugin-jsdoc": "^40.0.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.32.0",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"files": [
"lib/**/*"
]
}