-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 2.19 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@codechecks/lighthouse-keeper",
"description": "Keep an eye on Google Lighthouse score changes",
"keywords": [
"lighthouse",
"google-lighthouse",
"performance",
"accessibility",
"best-practices",
"seo",
"pwa",
"codechecks"
],
"repository": "codechecks/lighthouse-keeper",
"author": "Chris Kaczor <chris@kaczor.io>",
"version": "0.1.2",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"scripts": {
"start:example": "codechecks ./example/codechecks.yml",
"build": "rm -rf ./lib && tsc",
"format": "prettier --list-different '**/*.{ts,json,md, gql}'",
"format:fix": "prettier --write '**/*.{ts,json,md,gql}'",
"tslint": "tslint -p ./tsconfig.json -e 'node_modules/**/*' 'src/**/*.ts'",
"tslint:fix": "tslint --fix --format stylish -p ./tsconfig.json -e 'node_modules/**/*' '**/*.ts'",
"tsc": "tsc --noEmit",
"lint": "yarn format && yarn tslint && yarn tsc",
"lint:fix": "yarn format:fix && yarn tslint:fix && yarn tsc",
"test:unit": "jest",
"test:watch": "jest --watch",
"test": "yarn lint && yarn test:unit",
"test:fix": "yarn lint:fix && yarn test:unit",
"prepublishOnly": "yarn test && yarn build"
},
"files": [
"lib/**/*"
],
"devDependencies": {
"@codechecks/client": "0.1.6-beta.4",
"@codechecks/type-coverage-watcher": "^0.1.3",
"@types/bluebird": "^3.5.25",
"@types/jest": "^23.3.12",
"@types/lodash": "^4.14.121",
"@types/mock-fs": "^3.6.30",
"@types/node": "^10.12.18",
"bluebird": "^3.5.3",
"jest": "^23.6.0",
"mock-fs": "^4.10.1",
"prettier": "^1.15.3",
"ts-essentials": "^3.0.2",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"tslint-language-service": "^0.9.9",
"typescript": "^3.2.2",
"typestrict": "^1.0.2"
},
"peerDependencies": {
"@codechecks/client": "^0.1.0"
},
"dependencies": {
"chrome-launcher": "^0.11.2",
"http-server": "^0.11.1",
"lighthouse": "^5.2.0",
"markdown-table": "^1.1.3",
"please-upgrade-node": "^3.2.0",
"tmp-promise": "^2.0.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10.13"
}
}