-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
45 lines (45 loc) · 1.49 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
{
"name": "lighthouse-plugin-publisher-ads-wrapper",
"version": "1.5.7-beta",
"type": "module",
"description": "Wrapper for Publisher Ads Lighthouse Plugin.",
"author": "Google Ads",
"license": "Apache-2.0",
"main": "index.cjs",
"scripts": {
"lint": "eslint -c lighthouse-plugin-publisher-ads/.eslintrc.cjs .",
"debug": "mocha debug lighthouse-plugin-publisher-ads/test/{audits,utils}/*.js",
"test": "mocha lighthouse-plugin-publisher-ads/test/{audits,utils}/*.js",
"smoke": "node lighthouse-plugin-publisher-ads/test/smoke/run-smoke.js",
"type-check": "tsc -p lighthouse-plugin-publisher-ads/tsconfig.json",
"collect-strings": "node lighthouse-plugin-publisher-ads/messages/collect-strings.js"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test && yarn type-check && yarn collect-strings"
}
},
"dependencies": {
"@tusbar/cache-control": "^0.3.1",
"@types/esprima": "^4.0.2",
"lighthouse": "9.5.0-dev.20220907-2",
"lodash.clonedeep": "^4.5.0",
"yargs": "16.1.1"
},
"devDependencies": {
"@lhci/cli": "0.7.x",
"@types/lodash": "^4.14.178",
"@types/yargs": "^15.0.11",
"@typescript-eslint/parser": "^5.31.0",
"chai": "^4.1.2",
"devtools-protocol": "^0.0.1040073",
"eslint": "^6.0.1",
"eslint-config-google": "^0.12.0",
"eslint-plugin-sort-requires": "^2.1.0",
"husky": "^2.4.0",
"mocha": "^8.3.2",
"sinon": "^5.0.7",
"static-server": "^2.2.1",
"typescript": "^4.7.4"
}
}