-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.34 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.34 KB
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": "vigilo",
"version": "1.1.0",
"description": "Vigilo is a monitoring tool that automates Lighthouse audits and sends key metrics to Datadog. Designed to keep a vigilant eye on your web application's performance and accessibility.",
"main": "dist/index.js",
"repository": "https://github.com/iFixit/vigilo.git",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"setup": "dev-scripts/setup.sh",
"start": "node dist/index.js",
"start:docker": "dev-scripts/run-docker.sh",
"create-dashboard": "pnpm build:scripts && node bin/createDashboard.js",
"update-metric-metadata": "pnpm build:scripts && node bin/updateDatadogMetricMetadata.js",
"clean": "rm -rf dist && rm -rf bin",
"build": "pnpm clean && node build.js",
"build:core": "node build.js --target=core",
"build:scripts": "node build.js --target=scripts"
},
"keywords": [],
"author": "Angel de la Torre <angel.dlt.1996@gmail.com>",
"license": "MIT",
"devDependencies": {
"@tsconfig/node18": "^18.2.1",
"@types/node": "^20.5.9",
"@types/yargs": "^17.0.28",
"tsc-alias": "^1.8.8",
"tsup": "^8.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@datadog/datadog-api-client": "^1.16.0",
"dotenv": "^16.3.1",
"lighthouse": "^11.1.0",
"puppeteer": "^21.2.1",
"yargs": "^17.7.2"
}
}