forked from stakater-archive/StakaterCloudDocs-Archived
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.92 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
{
"name": "docs",
"version": "0.0.1",
"private": false,
"description": "Stakater Red Hat Openshift Documentation",
"keywords": [
"documentation",
"stakater",
"Red Hat",
"openshift"
],
"homepage": "https://github.com/stakater/StakaterCloudDocs#stakaterclouddocs",
"bugs": {
"url": "https://github.com/stakater/StakaterCloudDocs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stakater/StakaterCloudDocs.git"
},
"author": "Stakater",
"dependencies": {
"cosmiconfig": "^6.0.0",
"ecstatic": "^4.1.4",
"gray-matter": "^4.0.2",
"http-server": "^0.12.3",
"js-yaml": "^3.13.1",
"minimist": "^1.2.2",
"lodash": "^4.17.15",
"lodash.template": "^4.5.0",
"svgo": "^1.3.2",
"vuepress": "1.4.1"
},
"devDependencies": {
"@vuepress/plugin-active-header-links": "^1.4.1",
"@textlint-rule/textlint-rule-no-unmatched-pair": "^1.0.7",
"@vuepress/plugin-back-to-top": "1.4.1",
"@vuepress/plugin-medium-zoom": "1.4.1",
"@vuepress/theme-vue": "1.4.1",
"vuepress-plugin-container": "^2.1.3",
"remark-cli": "^8.0.0",
"remark-lint": "^7.0.0",
"remark-preset-lint-consistent": "^3.0.0",
"remark-preset-lint-recommended": "^4.0.0",
"textlint": "^11.6.3",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-apostrophe": "^2.0.0",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-diacritics": "^1.0.0",
"textlint-rule-en-capitalization": "^2.0.2",
"textlint-rule-stop-words": "^2.0.3",
"textlint-rule-terminology": "^2.1.4",
"textlint-rule-write-good": "^1.6.2",
"vue-toasted": "^1.1.28"
},
"scripts": {
"dev": "vuepress dev",
"build": "vuepress build",
"serve": "http-server .vuepress/dist",
"lint-md": "yarn lint-md:style && yarn lint-md:wording",
"lint-md:style": "remark --quiet --frail .",
"lint-md:wording": "textlint ./content/**/*.md"
}
}