jest-hands-on/package.json
2022-02-24 17:06:32 +09:00

21 lines
455 B
JSON

{
"name": "jest-hands-on",
"version": "1.0.0",
"private": true,
"license": "CC0-1.0",
"main": "templates/template/main.js",
"type": "module",
"workspaces": [
"templates/*"
],
"scripts": {
"test": "jest && yarn workspaces run test",
"format": "prettier --write ."
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"jest": "^27.5.1",
"prettier-plugin-md-nocjsp": "^1.2.0",
"prettier": "^2.5.1"
}
}