-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
80 lines (80 loc) · 3.04 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
77
78
79
80
{
"name": "lightmon",
"version": "2.5.0",
"description": "A lighthouse monitor",
"main": "./bin/lightmon",
"scripts": {
"build": "cd frontend && npm ci && npm run build",
"cleanup": "cross-env DEBUG=${DEBUG:-LIGHTMON*} ./bin/cleanup",
"lint": "eslint src/",
"lint:fix": "eslint --fix src/",
"start": "node ./bin/evaluate",
"evaluation": "cross-env DEBUG=${DEBUG:-LIGHTMON*} npm start",
"frontend:preflight": "cd frontend && npm run preflight",
"frontend:preflight:fix": "cd frontend && npm run preflight:fix",
"start:debug": "node --nolazy --inspect-brk=9229 ./bin/evaluate",
"server": "cross-env DEBUG=${DEBUG:-LIGHTMON*} ./bin/server",
"server:watch": "cross-env DEBUG=${DEBUG:-LIGHTMON*} nodemon -w src/ -w config/ -w bin/ ./bin/server",
"update": "npm-check --skip-unused -p --ignore commander --ignore proper-lockfile",
"update:fix": "npm-check --skip-unused -p --ignore commander --ignore proper-lockfile -y",
"test": "mocha 'src/**/*.spec.js'",
"test:integration": "mocha 'src/**/*.integration-spec.js'",
"test:all": "mocha 'src/**/*[-.]spec.js'",
"preflight": "concurrently --names 'audit,lint,update,frontend:preflight,test' \"npm audit --production\" npm:lint npm:update npm:frontend:preflight npm:test:all",
"preflight:fix": "concurrently --names 'audit,lint,update,frontend:preflight:fix' \"npm audit --production --fix\" npm:lint:fix npm:update:fix npm:frontend:preflight:fix && npm run preflight"
},
"engines": {
"node": ">=11"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "[email protected]:verivox/lighthouse.git"
},
"keywords": [
"lighthouse",
"monitor",
"prometheus",
"metrics",
"performance"
],
"author": "Lars Kumbier <[email protected]> (https://kumbier.it)",
"contributors": [
"Kim Almasan <[email protected]> (https://kumbier.it)",
"Yurii Ivanov <[email protected]>"
],
"license": "MIT",
"dependencies": {
"better-sqlite3": "^7.1.0",
"chokidar": "^3.4.2",
"commander": "^6.1.0",
"cross-env": "^7.0.2",
"debug": "^4.1.1",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"lighthouse": "^8.5.0",
"mime": "^2.4.6",
"moment": "^2.27.0",
"prom-client": "^12.0.0",
"proper-lockfile": "^4.1.1",
"puppeteer": "^10.4.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.9"
},
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"chai": "^4.2.0",
"chai-files": "^1.4.0",
"chai-fs": "^2.0.0",
"concurrently": "^5.3.0",
"eslint": "^7.8.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"npm-check": "^5.9.2",
"rimraf": "^3.0.2",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0"
}
}