forked from siefkenj/unified-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.5 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
{
"private": true,
"workspaces": [
"./packages/unified-latex-util-pegjs",
"./packages/*"
],
"scripts": {
"build": "npm run build -ws",
"package": "npm run package -ws",
"publish": "npm run publish -ws",
"test": "jest ./packages",
"test:ci": "jest ./packages --maxWorkers=1"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!unified|bail|is-plain-obj|trough|vfile.*|unist.*|hast.*|property-information|html-void-elements|.*-separated-tokens|.*entities.*|ccount|rehype*|string-width|strip-ansi|ansi-regex|supports-color|rehype|web-namespaces|zwitch)"
],
"transform": {
"\\.m?jsx?$": "esbuild-jest",
"latex.pegjs$": "<rootDir>/tests/pegjs-preprocessor-latex.js",
"\\.pegjs$": "<rootDir>/tests/pegjs-preprocessor.js",
"^.+\\.tsx?$": "ts-jest"
},
"haste": {
"forceNodeFilesystemAPI": true
},
"modulePathIgnorePatterns": [
"/dist/"
]
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.11.19",
"esbuild": "^0.17.5",
"esbuild-jest": "^0.5.0",
"esbuild-runner": "^2.2.2",
"jest": "^29.4.1",
"lerna": "^6.4.1",
"lerna-update-wizard": "^1.1.2",
"mdast-builder": "^1.1.1",
"mdast-util-inject": "^1.1.0",
"mkdirp": "^2.1.3",
"pegjs": "^0.10.0",
"prettier": "^2.8.3",
"prettier-plugin-pegjs": "^0.5.3",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-stringify": "^10.0.2",
"ts-jest": "^29.0.5",
"ts-morph": "^17.0.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/color": "^3.0.3",
"@types/cssesc": "^3.0.0",
"@types/text-table": "^0.2.2",
"camelcase": "^7.0.1",
"chalk": "^5.2.0",
"chokidar": "^3.5.3",
"color": "^4.2.3",
"cssesc": "^3.0.0",
"fault": "^2.0.1",
"hastscript": "^7.2.0",
"json5": "^2.2.3",
"minimist": "^1.2.7",
"peggy": "^2.0.1",
"rehype-format": "^4.0.1",
"text-table": "^0.2.0",
"unified": "^10.1.2",
"unified-engine": "^10.1.0",
"unified-lint-rule": "^2.1.1",
"unist-util-position": "^4.0.4",
"vfile-reporter-json": "^3.2.0",
"vfile-reporter-position": "^0.1.7",
"vfile-reporter-pretty": "^6.1.0"
},
"name": "unified-latex"
}