-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 852 Bytes
/
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
{
"name": "lighthouse-link-thesis",
"version": "0.0.7c",
"description": "a way to automatically use lighthouse to get accessibility report number",
"main": "index.class.js",
"type": "module",
"scripts": {
"legacy": "npm run pre && npm run legacy:build",
"start": "npm run pre && npm run build",
"pre": "npm run clean && npm run setup",
"legacy:build": "node ./legacy/index",
"build": "node index.class",
"setup": "node setup",
"test": "jest",
"test:debug": "jest --detectOpenHandles",
"clean": "node clean"
},
"keywords": [
"automated-tools",
"lighthouse"
],
"author": "EmptyWork",
"license": "MIT",
"dependencies": {
"async": "^3.2.4",
"lighthouse": "^10.2.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"jest": "^29.6.2"
}
}