forked from diplodoc-platform/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.22 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
126
{
"name": "@doc-tools/docs",
"author": "Yandex Data UI Team <[email protected]>",
"description": "Make documentation using yfm-docs in Markdown and HTML formats",
"license": "MIT",
"version": "1.27.0",
"repository": {
"type": "git",
"url": "[email protected]:yandex-cloud/yfm-docs.git"
},
"bin": {
"yfm": "build/index.js"
},
"main": "build/index.js",
"files": [
"build",
"src"
],
"scripts": {
"build": "webpack",
"start": "node build/index.js",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run lint && npm run build"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@doc-tools/components": "2.0.0",
"@doc-tools/transform": "^2.8.2",
"@doc-tools/yfm2xliff": "0.0.3",
"@octokit/core": "3.5.1",
"@types/glob": "^8.0.0",
"ajv": "^8.11.0",
"aws-sdk": "2.1054.0",
"chalk": "4.1.2",
"glob": "^8.0.3",
"highlight.js": "10.7.3",
"js-yaml": "4.1.0",
"mime-types": "2.1.34",
"node-html-parser": "^5.3.3",
"react": "16.14.0",
"react-dom": "16.14.0",
"shelljs": "0.8.5",
"simple-git": "2.48.0",
"slugify": "^1.6.5",
"threads": "1.7.0",
"threads-plugin": "1.4.0",
"walk-sync": "2.2.0",
"yargs": "15.4.1"
},
"devDependencies": {
"@babel/core": "7.16.7",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-syntax-top-level-await": "7.14.5",
"@babel/plugin-transform-runtime": "7.16.8",
"@babel/preset-env": "7.16.8",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@babel/runtime": "7.16.7",
"@types/chalk": "2.2.0",
"@types/js-yaml": "4.0.5",
"@types/lodash": "4.14.178",
"@types/markdown-it": "10.0.3",
"@types/mime-types": "2.1.1",
"@types/node": "12.20.41",
"@types/react": "16.14.21",
"@types/react-dom": "16.9.14",
"@types/shelljs": "0.8.10",
"@types/yargs": "15.0.14",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.3",
"bem-cn-lite": "3.0.0",
"css-loader": "3.6.0",
"eslint": "6.8.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "3.0.0",
"eslint-plugin-security": "1.4.0",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"lodash": "4.17.21",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "4.14.1",
"prop-types": "15.8.1",
"react-svg-loader": "3.0.3",
"sass-loader": "8.0.2",
"style-loader": "1.3.0",
"ts-jest": "27.1.2",
"typescript": "3.9.10",
"webpack": "4.46.0",
"webpack-cli": "3.3.12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"pkg": {
"scripts": [
"build/index.js",
"build/0.index.worker.js",
"build/plugins/*.js",
"build/lint-rules/*.js",
"build/default-lint-config.js",
"build/head-content.js"
],
"assets": "build/app.js"
},
"keywords": [
"markdown",
"yandex",
"docs",
"yfm",
"documentation",
"tool",
"tools",
"generator"
]
}