-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "lighthouse-thresholds",
"version": "1.0.6-alpha",
"description": "A tool for setting and comparing lighthouse budgets",
"main": "index.js",
"license": "MIT",
"repository": "https://github.com/luke-j/lighthouse-thresholds",
"author": {
"name": "Luke Jones",
"email": "[email protected]",
"url": "lukejones.co"
},
"bin": {
"lighthouse-thresholds": "bin/index.js"
},
"scripts": {
"precommit": "npm run lint && npm run beautify",
"lint": "eslint src",
"beautify": "pretty-quick --staged",
"build":
"rollup index.js --banner '#!/usr/bin/env node' --output.format cjs --output.file bin/index.js && chmod +x bin/index.js"
},
"engines": {
"node": ">= 8"
},
"devDependencies": {
"eslint": "^4.19.1",
"husky": "^0.14.3",
"prettier": "^1.12.1",
"pretty-quick": "^1.4.1",
"rollup": "^0.58.2"
},
"dependencies": {
"chalk": "^2.4.1",
"chrome-launcher": "^0.10.2",
"find-config": "^1.0.0",
"lighthouse": "^2.9.4",
"lodash": "^4.17.10"
}
}