-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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
{
"name": "@seolhun/web-performance-tester",
"license": "MIT",
"version": "1.2.0",
"author": {
"name": "Seolhun",
"email": "[email protected]",
"url": "https://github.com/Seolhun"
},
"bugs": {
"url": "https://github.com/Seolhun/web-performance-tester/issues"
},
"homepage": "https://github.com/Seolhun/web-performance-tester#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Seolhun/web-performance-tester"
},
"keywords": [
"typescript",
"lighthouse",
"analytics",
"web",
"performance"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"start": "node dist/index.js",
"test": "jest",
"lh": "cd examples/default && npm run start",
"lint": "eslint --ext .js,.ts,.tsx,.jsx ./",
"lint:fix": "eslint --ext .js,.ts,.tsx,.jsx ./ --fix",
"prettier": "prettier --write '**/*.{ts,tsx,js,jsx}'"
},
"main": "dist/index.js",
"files": [
"dist"
],
"dependencies": {
"@fxts/core": "^0.11.0",
"chrome-launcher": "^0.15.1",
"dayjs": "^1.11.6",
"lighthouse": "^9.6.7"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.1.2",
"prettier": "^2.8.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
}
}