forked from asciidwango/js-primer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 5.11 KB
/
package.json
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "js-primer",
"private": true,
"license": "MIT",
"version": "4.0.0",
"description": "JavaScript Primer - JavaScriptの入門書",
"packageManager": "[email protected]",
"directories": {
"test": "test"
},
"scripts": {
"start": "honkit serve",
"build": "npm-run-all build:web",
"build:all": "npm-run-all build:web build:pdf build:epub build:mobi",
"build:web": "honkit build",
"build:pdf": "honkit pdf ./ _book/javascript-primer.pdf",
"build:epub": "honkit epub ./ _book/javascript-primer.epub",
"build:mobi": "honkit mobi ./ _book/javascript-primer.mobi",
"postbuild": "npm-run-all build:add-resource workbox",
"workbox": "workbox injectManifest workbox-config.js",
"build:add-resource": "node tools/gitbook/copy-favicon.js",
"eslint": "eslint source/ --cache",
"eslint:fix": "eslint --fix source/ --cache",
"prettier:html": "prettier \"source/use-case/**/*.html\" --write",
"textlint": "summary-to-path ./source/README.md | xargs textlint -f pretty-error --cache",
"textlint:no-cached": "summary-to-path ./source/README.md | xargs textlint -f pretty-error",
"textlint:fix": "summary-to-path ./source/README.md | xargs textlint --fix",
"textlint-link": "summary-to-path ./source/README.md | LINK_CHECK=true xargs textlint",
"textlint-link:fix": "summary-to-path ./source/README.md | LINK_CHECK=true xargs textlint --fix",
"lint": "npm-run-all --parallel textlint eslint",
"lint:fix": "npm-run-all --parallel textlint:fix eslint:fix",
"test:example": "mocha test/",
"test:basic": "mocha \"./source/basic/**/*-test.js\"",
"test:nodecli": "cd ./source/use-case/nodecli && npm install && npm test",
"test:nodecli-unittest": "cd ./source/use-case/nodecli/refactor-and-unittest/src/test && npm install && npm test",
"test:ajaxapp": "mocha \"./source/use-case/ajaxapp/!(node_modules)**/*-test.js\"",
"test:todoapp": "cd ./source/use-case/todoapp && npm install && npm test",
"test": "npm-run-all -l --parallel test:* lint",
"e2e:todoapp": "cd ./source/use-case/todoapp && npm install && npm run e2e",
"e2e": "npm-run-all -l --parallel e2e:*",
"build:applescript": "tsc -p tools/applescript",
"versionup:patch": "npm version patch",
"versionup:minor": "npm version minor",
"versionup:major": "npm version major"
},
"keywords": [
"gitbook",
"textlint"
],
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.0",
"@jxa/global-type": "^1.3.4",
"@jxa/run": "^1.3.4",
"@power-doctest/javascript": "^5.3.1",
"@power-doctest/markdown": "^5.3.2",
"@power-doctest/tester": "^5.3.2",
"@textlint-ja/textlint-rule-no-synonyms": "^1.3.0",
"@textlint-rule/textlint-rule-require-header-id": "^1.0.1",
"@textlint/regexp-string-matcher": "^1.1.0",
"@types/meow": "^5.0.0",
"@types/node": "^14.18.5",
"acorn": "^8.7.0",
"add-text-to-markdown": "^2.0.0",
"consolemock": "^1.1.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"esquery": "^1.4.0",
"front-matter": "^4.0.2",
"gitbook-plugin-anchors": "^0.7.1",
"gitbook-plugin-canonical-link": "^2.0.3",
"gitbook-plugin-custom-favicon": "0.0.4",
"gitbook-plugin-ga": "^1.0.0",
"gitbook-plugin-github-issue-feedback": "^1.4.0",
"gitbook-plugin-include-codeblock": "^3.2.3",
"gitbook-plugin-js-console": "^3.0.4",
"gitbook-plugin-page-toc-button": "^0.1.1",
"gitbook-summary-to-path": "^1.1.0",
"globby": "^11.0.4",
"honkit": "^3.7.3",
"honkit-plugin-sandpack": "^1.3.3",
"js-levenshtein": "^1.1.6",
"jsdom": "16.5.0",
"jsdom-global": "3.0.2",
"lodash": "^4.17.21",
"meow": "^7.1.1",
"micromatch": "^4.0.4",
"mocha": "^8.4.0",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.1",
"prettier": "^2.5.1",
"remark": "^12.0.1",
"rewire": "^5.0.0",
"semver": "^7.3.5",
"strict-eval": "^1.0.2",
"sudachi-synonyms-dictionary": "^8.0.1",
"text-testing-mocha": "^0.4.6",
"textlint": "^12.1.0",
"textlint-filter-rule-allowlist": "^4.0.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-eslint": "^4.0.0",
"textlint-rule-footnote-order": "^1.0.3",
"textlint-rule-inline-code-denylist": "file:./textlint/textlint-rule-inline-code-denylist",
"textlint-rule-no-dead-link": "^4.8.0",
"textlint-rule-no-js-function-paren": "^1.0.1",
"textlint-rule-no-use-column": "file:./textlint/textlint-rule-no-use-column",
"textlint-rule-no-use-prototype-hash": "file:./textlint/textlint-rule-no-use-prototype-hash",
"textlint-rule-period-in-list-item": "^0.3.2",
"textlint-rule-preset-ja-technical-writing": "^7.0.0",
"textlint-rule-prh": "^5.3.0",
"textlint-rule-sentence-length": "^3.0.0",
"textstat": "^0.8.0",
"typescript": "^3.9.10",
"unist-util-find-all-between": "^2.1.0",
"unist-util-find-before": "^2.0.5",
"unist-util-parents": "^1.0.3",
"unist-util-select": "^3.0.4",
"vm2": "^3.9.9",
"wait-on": "^5.3.0",
"workbox-cli": "^3.6.3"
},
"dependencies": {}
}