-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 2.53 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
{
"name": "@diplodoc/markdown-translation",
"version": "0.15.4",
"description": "markdown translation utilities",
"homepage": "https://github.com/diplodoc-platform/markdown-translation",
"bugs": {
"url": "https://github.com/diplodoc-platform/markdown-translation/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diplodoc-platform/markdown-translation.git"
},
"keywords": [
"markdown-it",
"markdown",
"md",
"parser",
"translation",
"localization",
"generator",
"renderer",
"xlf",
"xliff",
"skeleton"
],
"main": "./lib/index.js",
"types": "./lib/index.d.js",
"files": [
"lib/"
],
"engines": {
"node": "18.*",
"npm": "9.*"
},
"scripts": {
"test": "jest --verbose --coverage --silence=false",
"test:watch": "jest --watch --verbose --silent=false",
"build:dev": "node scripts/development.js",
"build": "npm run build:clean && tsc -p tsconfig.types.json && node scripts/bundle.js",
"build:clean": "rm -rf lib",
"lint": "eslint -c .eslintrc.json \"src/**/*.ts*\"",
"fix": "prettier --write --log-level=silent \"./src/**/*.{ts,tsx}\"",
"prepublishOnly": "npm run build"
},
"author": {
"name": "moki",
"email": "[email protected]",
"url": "github.com/moki"
},
"license": "MIT",
"devDependencies": {
"@es-exec/api": "^0.0.5",
"@esbuild-plugins/tsconfig-paths": "^0.1.2",
"@gravity-ui/eslint-config": "^3.1.1",
"@gravity-ui/prettier-config": "^1.1.0",
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.5.6",
"@types/js-yaml": "^4.0.8",
"@types/markdown-it": "^13.0.5",
"@types/node": "^18.18.7",
"commonmark-spec": "^0.30.0",
"esbuild": "^0.19.5",
"esbuild-jest": "^0.5.0",
"esbuild-node-externals": "^1.9.0",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"markdown-it": "^13.0.2",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"peerDependencies": {
"markdown-it": "^13.0.2"
},
"dependencies": {
"@cospired/i18n-iso-languages": "^4.1.0",
"@diplodoc/markdown-it-custom-renderer": "^0.1.2",
"@diplodoc/markdown-it-markdown-renderer": "^0.15.5",
"@diplodoc/sentenizer": "0.0.0",
"@diplodoc/transform": "^4.2.1",
"@shellscape/i18n-iso-countries": "^7.5.0-shellscape.v1",
"cheerio": "^1.0.0-rc.12",
"domhandler": "^5.0.3",
"fast-xml-parser": "^4.1.3",
"js-yaml": "^4.1.0",
"markdown-it-meta": "0.0.1",
"markdown-it-sup": "^1.0.0"
}
}