-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.31 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
{
"name": "ackee-lighthouse",
"private": true,
"version": "3.0.0",
"authors": [
"Tobias Reich <[email protected]>"
],
"description": "Send Lighthouse reports to Ackee",
"keywords": [
"ackee",
"tracking",
"tracker",
"report",
"lighthouse",
"chrome",
"performance"
],
"type": "module",
"scripts": {
"eslint": "eslint --ignore-path .gitignore '**/*.js'",
"prettier": "prettier --ignore-path .gitignore '**/*.{js,json,css,yml,md}'",
"start": "node src/index.js",
"test": "npm run lint",
"lint": "npm run eslint && npm run prettier -- --check",
"format": "npm run eslint -- --fix && npm run prettier -- --write"
},
"license": "MIT",
"homepage": "https://github.com/electerious/ackee-lighthouse",
"repository": {
"type": "git",
"url": "https://github.com/electerious/ackee-lighthouse.git"
},
"files": [
"src"
],
"dependencies": {
"@electerious/prettier-config": "^2.0.0",
"chrome-launcher": "^1.1.2",
"dot-prop": "^8.0.2",
"dotenv": "^16.4.5",
"lighthouse": "^12.1.0",
"signale": "^1.4.0"
},
"devDependencies": {
"@electerious/eslint-config": "^4.1.0"
},
"eslintConfig": {
"root": true,
"extends": [
"@electerious/eslint-config"
]
},
"prettier": "@electerious/prettier-config"
}