2022-05-11 19:03:56 +09:00
|
|
|
{
|
|
|
|
"name": "nodejs-hands-on",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"private": true,
|
|
|
|
"author": "Kohei Watanabe <kou029w@gmail.com>",
|
|
|
|
"license": "CC0-1.0",
|
2023-12-19 16:50:59 +09:00
|
|
|
"type": "module",
|
|
|
|
"workspaces": [
|
|
|
|
"templates/*"
|
|
|
|
],
|
2022-05-11 19:03:56 +09:00
|
|
|
"scripts": {
|
2023-11-08 14:51:17 +09:00
|
|
|
"prepare": "git config core.hooksPath .githooks",
|
2023-12-19 16:50:59 +09:00
|
|
|
"test": "find src -name '*.md' -exec markdown-link-check {} + && node --test src && npm test --workspaces",
|
2022-05-11 19:03:56 +09:00
|
|
|
"format": "prettier --write ."
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-11-08 14:51:17 +09:00
|
|
|
"markdown-link-check": "^3.11.2",
|
2023-11-08 14:40:13 +09:00
|
|
|
"prettier": "^3.0.0"
|
2022-05-11 19:03:56 +09:00
|
|
|
}
|
|
|
|
}
|