forked from diplodoc-platform/transform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.77 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
{
"name": "@diplodoc/transform",
"version": "4.8.2",
"description": "A simple transformer of text in YFM (Yandex Flavored Markdown) to HTML",
"author": "YFM Team <yfm-team@yandex.ru>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:diplodoc-platform/transform.git"
},
"main": "lib/index.js",
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"build": "npm run build:lib && npm run build:dist",
"build:lib": "tsc -p tsconfig.transform.json",
"build:dist": "./esbuild/build.js",
"test": "jest --coverage",
"lint": "eslint --max-warnings=0 \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix --max-warnings=0 \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
"typecheck": "tsc -p tsconfig.json --noEmit",
"precommit": "npm run lint && npm run test",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"dependencies": {
"@diplodoc/tabs-extension": "^2.0.15",
"chalk": "4.1.2",
"cheerio": "^1.0.0-rc.12",
"css": "^3.0.0",
"cssfilter": "0.0.10",
"get-root-node-polyfill": "1.0.0",
"github-slugger": "1.4.0",
"js-yaml": "^4.1.0",
"lodash": "4.17.21",
"markdown-it": "^13.0.2",
"markdown-it-attrs": "4.1.4",
"markdown-it-deflist": "2.1.0",
"markdown-it-meta": "0.0.1",
"markdown-it-sup": "1.0.0",
"markdownlint": "^0.25.1",
"markdownlint-rule-helpers": "0.17.2",
"sanitize-html": "^2.11.0",
"slugify": "1.6.5"
},
"devDependencies": {
"@diplodoc/babel-preset": "^1.0.2",
"@diplodoc/eslint-config": "^2.0.0",
"@diplodoc/prettier-config": "^2.0.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": "12.2.3",
"@types/markdown-it-attrs": "4.1.0",
"@types/markdownlint": "0.18.0",
"@types/node": "17.0.10",
"@types/sanitize-html": "^2.9.3",
"autoprefixer": "^10.4.15",
"esbuild": "^0.19.2",
"esbuild-sass-plugin": "^2.12.0",
"highlight.js": "^11.8.0",
"jest": "28.1.3",
"markdown-it-testgen": "^0.1.6",
"postcss": "^8.4.27",
"postcss-preset-env": "^9.1.1",
"ts-jest": "28.0.8",
"typescript": "4.7.4"
},
"peerDependencies": {
"highlight.js": "^10.0.3 || ^11"
},
"peerDependenciesMeta": {
"highlight.js": {
"optional": true
}
},
"bugs": {
"url": "https://github.com/diplodoc-platform/transform/issues"
},
"homepage": "https://github.com/diplodoc-platform/transform#readme",
"keywords": [
"markdown",
"yandex",
"docs",
"yfm",
"documentation",
"tool",
"tools",
"generator"
],
"moduleDirectories": [
"node_modules",
"src"
]
}