jest-hands-on/package.json

22 lines
483 B
JSON
Raw Normal View History

2021-07-27 10:54:21 +09:00
{
"name": "jest-hands-on",
"version": "1.0.0",
"private": true,
"license": "CC0-1.0",
2022-02-24 17:06:32 +09:00
"main": "templates/template/main.js",
2022-02-18 13:17:48 +09:00
"type": "module",
2022-02-24 17:06:32 +09:00
"workspaces": [
"templates/*"
],
2021-07-27 10:54:21 +09:00
"scripts": {
2022-07-20 19:15:18 +09:00
"test": "jest src && yarn workspaces run test",
"format": "prettier --ignore-path .gitignore --write ."
2021-07-27 10:54:21 +09:00
},
"devDependencies": {
2023-02-28 16:49:05 +09:00
"@babel/preset-env": "^7.20.2",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"prettier-plugin-md-nocjsp": "^1.5.1"
2021-07-27 10:54:21 +09:00
}
}