-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.15 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "engineering-documentation-book",
"version": "0.1.0",
"private": true,
"description": "実務で使える技術ドキュメント成果物(README/手順書/Runbook/ADR/障害報告・ポストモーテム等)の設計と運用を扱う。",
"scripts": {
"start": "bash scripts/jekyll.sh serve",
"build": "bash scripts/jekyll.sh build",
"test": "npm run check:metadata && npm run lint && npm run check-links",
"lint": "markdownlint -c .markdownlint.json \"docs/**/*.md\"",
"check-links": "find docs -name '*.md' -print0 | xargs -0 -n 1 markdown-link-check -c .markdown-link-check.json",
"deploy": "gh-pages -d _site",
"check:metadata": "node scripts/check-metadata-consistency.js"
},
"license": "CC-BY-NC-SA-4.0",
"devDependencies": {
"gh-pages": "^6.3.0",
"markdown-link-check": "^3.14.2",
"markdownlint-cli": "^0.48.0"
},
"repository": {
"type": "git",
"url": "https://github.com/itdojp/engineering-documentation-book.git"
},
"homepage": "https://itdojp.github.io/engineering-documentation-book/",
"bugs": {
"url": "https://github.com/itdojp/engineering-documentation-book/issues"
}
}