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.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
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": "3.24.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": "node scripts/build.cli.js",
"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"
},
"engines": {
"node": "14.*"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@aws-sdk/client-s3": "^3.369.0",
"@diplodoc/client": "^0.0.13",
"@diplodoc/markdown-translation": "^0.15.4",
"@diplodoc/mermaid-extension": "^1.1.1",
"@diplodoc/openapi-extension": "^1.3.3",
"@doc-tools/transform": "^3.8.5",
"@doc-tools/yfm2xliff": "0.0.5",
"@octokit/core": "4.2.4",
"@types/glob": "^8.0.0",
"@types/json-stringify-safe": "^5.0.0",
"@yandex-cloud/nodejs-sdk": "^2.2.2",
"ajv": "^8.11.0",
"async": "^3.2.4",
"aws-sdk": "^2.1425.0",
"bem-cn-lite": "^4.1.0",
"chalk": "4.1.2",
"dotenv": "^16.0.3",
"fast-xml-parser": "^4.0.11",
"glob": "^8.0.3",
"highlight.js": "^11.7.0",
"html-escaper": "^3.0.3",
"http-status-codes": "^2.2.0",
"js-yaml": "4.1.0",
"json-stringify-safe": "^5.0.1",
"mime-types": "2.1.35",
"minimatch": "^9.0.3",
"node-html-parser": "^6.1.5",
"shelljs": "0.8.5",
"simple-git": "3.19.0",
"slugify": "^1.6.5",
"tar-stream": "^3.1.4",
"threads": "1.7.0",
"threads-plugin": "1.4.0",
"walk-sync": "3.0.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@types/async": "^3.2.15",
"@types/chalk": "2.2.0",
"@types/html-escaper": "^3.0.0",
"@types/js-yaml": "4.0.5",
"@types/lodash": "4.14.195",
"@types/mime-types": "2.1.1",
"@types/node": "14.*",
"@types/shelljs": "0.8.12",
"@types/tar-stream": "^2.2.2",
"@types/yargs": "17.0.24",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"babel-eslint": "10.1.0",
"esbuild": "^0.17.17",
"eslint": "6.8.0",
"eslint-plugin-security": "1.7.1",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"lodash": "4.17.21",
"ts-jest": "29.1.0",
"ts-node": "^10.9.1",
"typescript": "4.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"pkg": {
"scripts": [
"build/index.js",
"build/linter.js",
"build/plugins/*.js",
"build/lint-rules/*.js",
"build/default-lint-config.js",
"build/head-content.js"
],
"assets": [
"build/app.client.js",
"build/app.client.css"
]
},
"keywords": [
"markdown",
"yandex",
"docs",
"yfm",
"documentation",
"tool",
"tools",
"generator"
]
}