Skip to content

Commit 37eaccf

Browse files
committed
Update package.json install Jest and @babel-transform-modules-commonjs
1 parent ed97826 commit 37eaccf

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

package.json

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
{
22
"name": "lighthouse-link-thesis",
3-
"version": "0.0.4c",
3+
"version": "0.0.5c",
44
"description": "a way to automatically use lighthouse to get accessibility report number",
55
"main": "index.class.js",
66
"type": "module",
77
"scripts": {
8-
"start": "npm run clean && npm run test",
9-
"start:class": "npm run clean && npm run test:class",
10-
"test": "node index",
11-
"test:class": "node index.class",
12-
"clean": "node clean",
13-
"exp": "node test"
8+
"start": "npm run clean && npm run build",
9+
"start:class": "npm run clean && npm run build:class",
10+
"build": "node index",
11+
"build:class": "node index.class",
12+
"test": "jest",
13+
"test:debug": "jest --detectOpenHandles",
14+
"clean": "node clean"
1415
},
1516
"keywords": [
1617
"automated-tools",
@@ -21,5 +22,9 @@
2122
"dependencies": {
2223
"async": "^3.2.4",
2324
"lighthouse": "^10.2.0"
25+
},
26+
"devDependencies": {
27+
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
28+
"jest": "^29.6.2"
2429
}
2530
}

0 commit comments

Comments
 (0)