-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 1.89 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": "@foo-software/lighthouse-persist",
"version": "8.1.0",
"description": "A tool for persisting Lighthouse audit results used for website performance monitoring and analysis.",
"main": "./dist/index.js",
"engines": {
"node": ">=20.0"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/foo-software/lighthouse-persist.git"
},
"keywords": [
"lighthouse",
"google",
"performance",
"seo",
"progressive web app",
"best practices",
"website performance monitoring",
"AWS",
"S3"
],
"author": "Adam Henson <[email protected]> (https://github.com/adamhenson)",
"license": "MIT",
"bugs": {
"url": "https://github.com/foo-software/lighthouse-persist/issues"
},
"homepage": "https://github.com/foo-software/lighthouse-persist#readme",
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint",
"prettier --write"
]
},
"scripts": {
"build": "npm run clean && npm run build:js",
"build:js": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"lint": "eslint . --ext .ts",
"prepublish": "npm run build",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"prepare": "husky install"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.5",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.3"
},
"dependencies": {
"aws-sdk": "^2.1260.0",
"chrome-launcher": "^1.1.1",
"lighthouse": "^12.0.0",
"node-fetch": "^3.3.2"
}
}