-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.55 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.55 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "steins-git",
"description": "Steins;Gateを用いてGitを解説する薄い本",
"version": "2.2.1",
"author": "O2 Project",
"license": "CC-BY-NC 4.0",
"repository": {
"type": "git",
"url": "https://github.com/o2project/steins-git.git"
},
"keywords": [
"Git",
"Steins;Gate"
],
"bugs": {
"url": "https://github.com/o2project/steins-git/issues"
},
"homepage": "https://github.com/o2project/steins-git",
"private": true,
"scripts": {
"build": "npm-run-all build:web copy:icon",
"build:web": "honkit build",
"copy:icon": "node tools/copy_icon.js",
"serve": "honkit serve",
"clean": "rimraf _book",
"lint": "textlint src/*.md",
"format": "prettier --config .prettierrc.js --write src/*.md"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/release-notes-generator": "^10.0.3",
"honkit": "^4.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"prettier-plugin-md-nocjsp": "^1.5.1",
"rimraf": "^4.1.1",
"semantic-release": "^20.0.2",
"textlint": "^12.6.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-ja-hiragana-fukushi": "^1.3.0",
"textlint-rule-ja-hiragana-hojodoushi": "^1.0.4",
"textlint-rule-ja-hiragana-keishikimeishi": "^1.1.0",
"textlint-rule-ja-no-abusage": "^3.0.0",
"textlint-rule-ja-no-mixed-period": "^3.0.1",
"textlint-rule-ja-no-redundant-expression": "^4.0.1",
"textlint-rule-max-ten": "^4.0.3",
"textlint-rule-no-dead-link": "^5.1.2",
"textlint-rule-no-double-negative-ja": "^2.0.1",
"textlint-rule-no-doubled-conjunction": "^2.0.4",
"textlint-rule-no-doubled-conjunctive-particle-ga": "^2.0.4",
"textlint-rule-no-doubled-joshi": "^4.0.1",
"textlint-rule-no-dropping-the-ra": "^3.0.0",
"textlint-rule-no-mix-dearu-desumasu": "^5.0.0",
"textlint-rule-no-nfd": "^1.0.2",
"textlint-rule-prefer-tari-tari": "^1.0.3",
"textlint-rule-web-plus-db": "^1.1.5"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"master",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/git"
]
}
}