nodejs-hands-on/package.json
2023-11-08 14:51:17 +09:00

16 lines
415 B
JSON

{
"name": "nodejs-hands-on",
"version": "1.0.0",
"private": true,
"author": "Kohei Watanabe <kou029w@gmail.com>",
"license": "CC0-1.0",
"scripts": {
"prepare": "git config core.hooksPath .githooks",
"test": "find src -name '*.md' -exec markdown-link-check {} +",
"format": "prettier --write ."
},
"devDependencies": {
"markdown-link-check": "^3.11.2",
"prettier": "^3.0.0"
}
}