-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.99 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
39
40
41
42
43
44
45
46
{
"name": "it-infra-book",
"version": "1.0.1",
"description": "ベンダー非依存の観点からインフラストラクチャ技術の本質的な設計原理と実装手法を体系化した技術書",
"main": "index.md",
"scripts": {
"start": "cd docs && bundle exec jekyll serve --livereload",
"build": "cd docs && bundle exec jekyll build",
"test": "npm run check:metadata && npm run test:chapter-descriptions && npm run test:figure-index && npm run check:postgresql-standby && npm run test:postgresql-standby && npm run check:reading-guide && npm run test:reading-guide && npm run lint && npm run check-links",
"lint": "markdownlint 'docs/**/*.md'",
"check-links": "markdown-link-check docs/**/*.md",
"deploy": "gh-pages -d docs/_site",
"check:metadata": "node scripts/check-metadata-consistency.js",
"check:postgresql-standby": "node scripts/check-postgresql-standby.js",
"check:reading-guide": "node scripts/check-reading-guide.js",
"check:figures": "node scripts/check-figure-index.js",
"test:figure-index": "node --test scripts/check-figure-index.test.js",
"test:chapter-descriptions": "node --test scripts/check-chapter-descriptions.test.js",
"test:postgresql-standby": "node --test scripts/check-postgresql-standby.test.js",
"test:reading-guide": "node --test scripts/check-reading-guide.test.js",
"check:built-figures": "node scripts/check-built-figure-index.js docs/_site"
},
"keywords": [
"book",
"documentation",
"ja"
],
"author": "太田和彦(株式会社アイティードゥ)",
"license": "CC-BY-NC-SA-4.0",
"devDependencies": {
"gh-pages": "^6.3.0",
"markdown-link-check": "^3.14.2",
"markdownlint-cli": "^0.49.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itdojp/IT-infra-book.git"
},
"bugs": {
"url": "https://github.com/itdojp/IT-infra-book/issues"
},
"homepage": "https://itdojp.github.io/IT-infra-book/",
"engines": {
"node": ">=22.12.0"
}
}