-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.44 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
{
"name": "ilib-loctool-pendo-md",
"version": "1.0.0",
"main": "dist/index.js",
"description": "A loctool plugin that knows how to process markdown inside of Pendo xliff files",
"types": "dist/index.d.ts",
"author": "Wadim Wawrzenczak <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"loctool",
"internationalization",
"i18n",
"localization",
"l10n",
"globalization",
"g11n",
"strings",
"resources",
"locale",
"translation",
"Pendo",
"markdown",
"md"
],
"files": [
"README.md",
"LICENSE",
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist ; git clean -f -d *",
"debug": "node --inspect-brk node_modules/.bin/jest -i",
"dist": "npm-run-all build test pkg",
"pkg": "npm pack",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint .",
"format": "prettier --check .",
"prepare": "husky && require-self"
},
"type": "commonjs",
"engines": {
"node": ">=18.18.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@tsconfig/node18": "^18.2.4",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/micromatch": "^4.0.9",
"@types/node": "18",
"@types/ungap__structured-clone": "^1.2.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"loctool": "^2.25.2",
"prettier": "^3.3.3",
"require-self": "^0.2.3",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"unist-builder": "2"
},
"dependencies": {
"@ungap/structured-clone": "^1.2.0",
"ilib-xml-js": "^1.7.0",
"mdast-util-from-markdown": "^0",
"mdast-util-gfm-strikethrough": "^0",
"mdast-util-to-markdown": "^0",
"micromark": "~2.11.0",
"micromark-extension-gfm-strikethrough": "^0",
"micromatch": "^4.0.8",
"npm-run-all": "^4.1.5",
"unist-util-remove-position": "3",
"unist-util-visit": "^2"
},
"peerDependencies": {
"loctool": "^2.25.2"
}
}