-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1021 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1021 Bytes
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
{
"name": "@sitespeed.io/plugin-lighthouse",
"version": "0.1.0",
"description": "Lighthouse plugin for sitespeed.io",
"repository": {
"type": "git",
"url": "git+https://github.com/sitespeedio/plugin-lighthouse.git"
},
"keywords": [
"sitespeed.io",
"lighthouse",
"webperf",
"perfmatters"
],
"author": {
"name": "Lorenzo Urbini",
"url": "https://www.linkedin.com/in/lorenzo-urbini-a2061a17/"
},
"contributors": [
{
"name": "Lorenzo Urbini"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sitespeedio/plugin-lighthouse/issues"
},
"devDependencies": {
"eslint": "~4.5.0",
"eslint-config-prettier": "~2.3.0",
"eslint-plugin-prettier": "~2.1.2",
"prettier": "~1.5.3"
},
"dependencies": {
"lighthouse": "^2.6.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check"
},
"main": "./lib/index.js"
}