jest-hands-on/package.json
2023-11-17 11:56:57 +09:00

20 lines
411 B
JSON

{
"name": "jest-hands-on",
"version": "1.0.0",
"private": true,
"license": "MIT",
"main": "templates/template/main.js",
"type": "module",
"workspaces": [
"templates/*"
],
"scripts": {
"test": "jest src && yarn workspaces run test",
"format": "prettier --write ."
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"jest": "^29.4.3",
"prettier": "^3.0.0"
}
}