mirror of
https://github.com/kou029w/nodejs-hands-on.git
synced 2025-01-18 16:08:05 +00:00
daba8f6614
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
20 lines
533 B
JSON
20 lines
533 B
JSON
{
|
|
"name": "nodejs-hands-on",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"author": "Kohei Watanabe <kou029w@gmail.com>",
|
|
"license": "CC0-1.0",
|
|
"type": "module",
|
|
"workspaces": [
|
|
"templates/*"
|
|
],
|
|
"scripts": {
|
|
"prepare": "git config core.hooksPath .githooks",
|
|
"test": "find src -name '*.md' -exec markdown-link-check {} + && node --test 'src/**/*.test.js' && npm test --workspaces",
|
|
"format": "prettier --write ."
|
|
},
|
|
"devDependencies": {
|
|
"markdown-link-check": "3.13.6",
|
|
"prettier": "3.4.2"
|
|
}
|
|
}
|