jest-hands-on/templates/template/package.json
2022-10-01 00:32:15 +00:00

15 lines
264 B
JSON

{
"name": "template",
"version": "1.0.0",
"private": true,
"main": "main.js",
"type": "module",
"scripts": {
"test": "jest",
"watch": "jest --watchAll"
},
"devDependencies": {
"@babel/preset-env": "^7.18.9",
"jest": "^29.0.0"
}
}