-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
104 lines (104 loc) · 2.79 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
{
"name": "@diplodoc/transform",
"version": "4.41.0",
"description": "A simple transformer of text in YFM (Yandex Flavored Markdown) to HTML",
"keywords": [
"markdown",
"yandex",
"docs",
"yfm",
"documentation",
"tool",
"tools",
"generator"
],
"homepage": "https://github.com/diplodoc-platform/transform#readme",
"bugs": {
"url": "https://github.com/diplodoc-platform/transform/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:diplodoc-platform/transform.git"
},
"license": "MIT",
"author": "YFM Team <[email protected]>",
"main": "lib/index.js",
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"build": "npm run build:lib && npm run build:dist",
"build:dist": "./esbuild/build.mjs",
"build:lib": "tsc -p tsconfig.transform.json",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"test": "jest --coverage",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "lint update && lint",
"lint:fix": "lint update && lint fix",
"pre-commit": "lint update && lint-staged",
"prepare": "husky"
},
"dependencies": {
"@diplodoc/cut-extension": "^0.6.0",
"@diplodoc/file-extension": "^0.2.0",
"@diplodoc/tabs-extension": "^3.5.0",
"chalk": "^4.1.2",
"cheerio": "^1.0.0",
"css": "^3.0.0",
"cssfilter": "0.0.10",
"get-root-node-polyfill": "1.0.0",
"github-slugger": "^1.5.0",
"js-yaml": "^4.1.0",
"lodash": "4.17.21",
"markdown-it": "^13.0.2",
"markdown-it-attrs": "^4.2.0",
"markdown-it-deflist": "2.1.0",
"markdown-it-meta": "0.0.1",
"markdown-it-sup": "1.0.0",
"markdownlint": "^0.32.1",
"markdownlint-rule-helpers": "0.17.2",
"sanitize-html": "^2.11.0",
"slugify": "1.6.6",
"svgo": "^3.2.0"
},
"devDependencies": {
"@diplodoc/babel-preset": "^1.0.2",
"@diplodoc/lint": "^1.2.0",
"@diplodoc/tsconfig": "^1.0.2",
"@types/css": "0.0.34",
"@types/github-slugger": "^1.3.0",
"@types/jest": "28.1.7",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "4.14.183",
"@types/markdown-it": "^13.0.9",
"@types/markdown-it-attrs": "4.1.0",
"@types/node": "17.0.10",
"@types/sanitize-html": "^2.9.3",
"autoprefixer": "^10.4.15",
"esbuild": "^0.23.1",
"esbuild-sass-plugin": "^3.3.1",
"highlight.js": "^11.8.0",
"jest": "28.1.3",
"jest-serializer-html": "^7.1.0",
"markdown-it-testgen": "^0.1.6",
"postcss": "^8.4.27",
"postcss-preset-env": "^9.1.1",
"ts-dedent": "^2.2.0",
"ts-jest": "28.0.8",
"typescript": "4.7.4"
},
"peerDependencies": {
"highlight.js": "^10.0.3 || ^11"
},
"peerDependenciesMeta": {
"highlight.js": {
"optional": true
}
},
"moduleDirectories": [
"node_modules",
"src"
]
}