-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
106 lines (106 loc) · 3.83 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
{
"private": true,
"name": "javaScript-plugin-architecture",
"repository": {
"type": "git",
"url": "https://github.com/azu/JavaScript-Plugin-Architecture"
},
"author": "azu",
"email": "[email protected]",
"homepage": "https://github.com/azu/JavaScript-Plugin-Architecture",
"license": "MIT",
"bugs": {
"url": "https://github.com/azu/JavaScript-Plugin-Architecture/issues"
},
"version": "2.0.0",
"description": "JavaScript Plugin Architecture book.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "honkit serve",
"build": "honkit build",
"eslint": "eslint src/**/*.js",
"eslint:md": "summary-to-path | xargs eslint -c .md.eslintrc --ext .md",
"textlint": "summary-to-path | xargs textlint -f pretty-error",
"textlint:fix": "summary-to-path | xargs textlint --fix",
"test:example": "find ./src -name '*-example.js' | xargs babel-node",
"test:js": "mocha",
"test": "npm-run-all --parallel test:js test:example textlint eslint:md eslint build",
"textlint:strict": "summary-to-path | xargs textlint --experimental -c coverage.textlintrc",
"textlint:coverage": "summary-to-path | xargs textlint --experimental -c coverage.textlintrc -f lcov | lcov-summary",
"travis:coverage": "summary-to-path | xargs textlint --experimental -c coverage.textlintrc -f codecov | codecov"
},
"keywords": [
"ebook",
"plugin",
"extension"
],
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@textlint-ja/textlint-rule-no-synonyms": "^1.0.1",
"babel-preset-power-assert": "^3.0.0",
"codecov.io": "^0.1.6",
"connect": "^3.7.0",
"eslint": "^7.8.1",
"eslint-plugin-markdown": "^1.0.1",
"gitbook-plugin-edit-link": "^2.0.0",
"gitbook-plugin-ga": "^1.0.0",
"gitbook-plugin-github": "^2.0.0",
"gitbook-plugin-include-codeblock": "^3.0.0",
"gitbook-plugin-japanese-support": "0.0.1",
"gitbook-plugin-richquotes": "0.0.7",
"gitbook-summary-to-path": "^1.1.0",
"jsdom": "^9.2.1",
"lcov-summary": "^1.0.1",
"mocha": "^8.1.3",
"nlcst-to-string": "^2.0.3",
"node-fetch": "^1.3.2",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.1",
"redux": "^3.5.2",
"remark": "^6.2.0",
"stemming-x-keywords": "^1.0.3",
"sudachi-synonyms-dictionary": "^4.1.0",
"textlint": "^11.7.6",
"textlint-filter-rule-comments": "^1.2.1",
"textlint-formatter-codecov": "^1.0.2",
"textlint-formatter-lcov": "^1.0.2",
"textlint-rule-ja-no-abusage": "^1.2.2",
"textlint-rule-ja-no-redundant-expression": "3.0.0",
"textlint-rule-ja-no-successive-word": "^1.1.0",
"textlint-rule-max-kanji-continuous-len": "^1.0.1",
"textlint-rule-max-ten": "^2.0.0",
"textlint-rule-no-double-negative-ja": "^1.0.2",
"textlint-rule-no-doubled-conjunction": "^1.0.1",
"textlint-rule-no-doubled-conjunctive-particle-ga": "^1.1.0",
"textlint-rule-no-doubled-joshi": "^3.5.3",
"textlint-rule-no-dropping-the-ra": "^1.0.2",
"textlint-rule-no-mix-dearu-desumasu": "^3.0.0",
"textlint-rule-no-nfd": "^1.0.2",
"textlint-rule-no-start-duplicated-conjunction": "^2.0.2",
"textlint-rule-preset-jtf-style": "^2.3.4",
"textlint-rule-prh": "^5.2.1",
"textlint-rule-sentence-length": "^1.1.3",
"textlint-rule-spellcheck-tech-word": "^5.0.0",
"textlint-rule-unexpanded-acronym": "^1.2.3",
"unist-util-is": "^2.1.3",
"unist-util-parents": "^0.1.1",
"unist-util-select": "^1.0.0"
},
"dependencies": {
"esprima": "^2.5.0",
"estraverse": "^4.1.0",
"gitbook-plugin-include-codeblock": "^3.2.2",
"gitbook-plugin-richquotes": "0.0.9",
"gulp": "^3.9.0",
"gulp-util": "^3.0.6",
"honkit": "^3.6.6",
"jquery": "^3.4.1"
}
}