-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
109 lines (109 loc) · 2.78 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
{
"name": "@diplodoc/translation",
"version": "1.5.1",
"description": "markdown translation utilities",
"homepage": "https://github.com/diplodoc-platform/translation",
"bugs": {
"url": "https://github.com/diplodoc-platform/translation/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diplodoc-platform/translation.git"
},
"keywords": [
"markdown-it",
"markdown",
"md",
"parser",
"translation",
"localization",
"generator",
"renderer",
"xlf",
"xliff",
"skeleton"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/",
"schemas/"
],
"exports": {
".": {
"types": "./lib/index.d.js",
"default": "./lib/index.js"
},
"./package": "./package.json",
"./schemas/*": "./schemas/*"
},
"engines": {
"node": ">=18.*",
"npm": ">=9.*"
},
"scripts": {
"test": "jest --verbose --coverage --silence=false",
"test:watch": "jest --watch --verbose --silent=false",
"build": "npm run build:clean && tsc -p tsconfig.types.json && node esbuild/build.js",
"build:clean": "rm -rf lib",
"prepublishOnly": "npm run build",
"lint": "lint update && lint",
"lint:fix": "lint update && lint fix",
"pre-commit": "lint update && lint-staged",
"prepare": "husky"
},
"author": {
"name": "diplodoc",
"url": "github.com/diplodoc-platform"
},
"license": "MIT",
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@diplodoc/tsconfig": "^1.0.2",
"@esbuild-plugins/tsconfig-paths": "^0.1.2",
"@types/diff": "^5.0.9",
"@types/jest": "^29.5.6",
"@types/js-yaml": "^4.0.8",
"@types/lodash": "^4.17.5",
"@types/markdown-it": "^13.0.9",
"@types/node": "^18.18.7",
"colors": "^1.4.0",
"esbuild": "^0.23.1",
"esbuild-jest": "^0.5.0",
"jest": "^29.7.0",
"markdown-it": "^13.0.2",
"typescript": "^5.2.2"
},
"peerDependencies": {
"markdown-it": "^13.0.2"
},
"dependencies": {
"@cospired/i18n-iso-languages": "^4.1.0",
"@diplodoc/lint": "^1.1.3",
"@diplodoc/sentenizer": "^0.0.8",
"@diplodoc/transform": "^4.10.0",
"@shellscape/i18n-iso-countries": "^7.5.0-shellscape.v1",
"ajv": "^8.12.0",
"ajv-keywords": "^5.1.0",
"cheerio": "^1.0.0-rc.12",
"domhandler": "^5.0.3",
"fast-xml-parser": "^4.1.3",
"js-yaml": "^4.1.0",
"json-schema": "^0.4.0",
"lodash": "^4.17.21",
"markdown-it-deflist": "^3.0.0",
"markdown-it-meta": "0.0.1",
"markdown-it-sup": "^1.0.0",
"node-html-parser": "^6.1.12",
"openapi-types": "^12.1.3",
"ts-dedent": "^2.2.0",
"uri-js": "^4.4.1",
"xml-formatter": "^3.6.1",
"xml-parser-xo": "^4.1.1"
},
"babel": {
"presets": [
"@babel/preset-typescript"
]
}
}