-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.56 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.56 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
30
31
32
33
34
35
36
37
38
{
"name": "github初心者ガイド-バージョン管理の基礎から実践まで",
"version": "1.1.0",
"description": "GitとGitHubの基本操作から実践的な運用まで、初心者が段階的に学べる実用ガイド",
"main": "index.md",
"scripts": {
"start": "bundle exec jekyll serve --livereload --config docs/_config.yml --source docs --destination _site",
"build": "bundle exec jekyll build --config docs/_config.yml --source docs --destination _site",
"test": "npm run check:metadata && npm run lint && npm run check-links",
"lint": "markdownlint --config .markdownlint-src.json src/**/*.md",
"check-links": "markdown-link-check src/**/*.md",
"docs:lint": "markdownlint 'docs/**/*.md'",
"docs:check-internal-links": "git ls-files docs | grep -E '\\.md$' | xargs python3 scripts/check_markdown_internal_links.py",
"docs:quality-gate": "npm run docs:lint && npm run docs:check-internal-links",
"deploy": "gh-pages -d _site",
"check:metadata": "node scripts/check-metadata-consistency.js"
},
"keywords": [
"book",
"documentation",
"ja"
],
"author": "ITDO Inc.",
"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/github-guide-for-beginners-book.git"
},
"homepage": "https://itdojp.github.io/github-guide-for-beginners-book/",
"bugs": {
"url": "https://github.com/itdojp/github-guide-for-beginners-book/issues"
}
}