-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
91 lines (91 loc) · 2.75 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
{
"name": "latex-ast-parser-shell",
"description": "Shell project for projects in the `packages/` directory",
"version": "0.0.0",
"private": true,
"author": {
"name": "Jason Siefken",
"email": "[email protected]"
},
"keywords": [
"pegjs",
"latex",
"parser",
"prettier"
],
"workspaces": [
"packages/unified-latex",
"packages/latex-ast-parser",
"packages/prettier-plugin-latex"
],
"scripts": {
"test": "npm run test -w unified-latex -w latex-ast-parser -w prettier-plugin-latex",
"build": "npm run build -w unified-latex -w latex-ast-parser -w prettier-plugin-latex"
},
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.17.9",
"@types/color": "^3.0.3",
"@types/cssesc": "^3.0.0",
"@types/hast": "^2.3.4",
"@types/prettier": "^2.6.0",
"@types/trie-prefix-tree": "^1.5.0",
"color": "^4.2.3",
"cssesc": "^3.0.0",
"hast": "^1.0.0",
"hast-util-to-html": "^8.0.3",
"hastscript": "^7.0.2",
"jest-esm-transformer": "^1.0.0",
"prettier": "^2.6.2",
"rehype-stringify": "^9.0.3",
"trie-prefix-tree": "^1.5.1",
"unified": "^10.1.2",
"unified-lint-rule": "^2.1.1",
"unist-util-position": "^4.0.3",
"vfile": "^5.3.2",
"vfile-reporter": "^7.0.4"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "7.16.11",
"@types/jest": "^27.4.1",
"@types/mdast": "^3.0.10",
"@types/node": "^17.0.24",
"babel-jest": "^27.5.1",
"babel-loader": "8.2.4",
"chalk": "^5.0.1",
"esbuild-runner": "^2.2.1",
"eslint": "^8.13.0",
"jest": "27.5.1",
"mdast-builder": "^1.1.1",
"mdast-util-inject": "^1.1.0",
"mkdirp": "1.0.4",
"pegjs": "0.10.0",
"pegjs-loader": "^0.5.6",
"prettier-plugin-pegjs": "^0.5.0",
"remark": "^14.0.2",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-stringify": "^10.0.2",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"ts-morph": "^14.0.0",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^4.6.3",
"typescript-json-schema": "^0.53.0",
"webpack": "5.72.0",
"webpack-cli": "^4.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/siefkenj/latex-parser.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/siefkenj/latex-parser/issues"
},
"homepage": "https://github.com/siefkenj/latex-parser#readme",
"engines": {
"node": ">= 10.0"
}
}