forked from zestedesavoir/zmarkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 4.45 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
110
111
112
113
114
115
{
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
],
"collectCoverage": true,
"collectCoverageFrom": [
"packages/**/src/*.js",
"packages/zmarkdown/plugins/*.js",
"packages/zmarkdown/postprocessors/*.js",
"packages/zmarkdown/renderers/*.js",
"packages/zmarkdown/server/utils/*.js",
"packages/zmarkdown/utils/*.js",
"packages/zmarkdown/*.js",
"!**/*.config.js"
]
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.0.0",
"axios": "^0.21.1",
"babel-loader": "^9.1.3",
"clone": "^2.1.2",
"core-js": "^3.6.5",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"dedent": "^0.7.0",
"del-cli": "^3.0.1",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"express": "^4.17.1",
"globals": "^15.0.0",
"html-differ": "^1.4.0",
"jest": "^26.4.2",
"jest-environment-node-debug": "^2.0.0",
"lerna": "^8.1.2",
"mdast-util-to-hast": "^9.1.2",
"rehype-stringify": "^8.0.0",
"remark": "^12.0.1",
"remark-footnotes": "^2.0.0",
"remark-math": "^3.0.1",
"remark-parse": "^8.0.3",
"remark-rehype": "^7.0.0",
"remark-stringify": "^8.1.1",
"sync-request": "^6.1.0",
"textr": "^0.3.0",
"unified": "^9.2.0",
"unist-util-visit": "^2.0.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"scripts": {
"pretest": "lerna run pretest --scope zmarkdown",
"test": "cross-env DEST=/tmp jest",
"lint": "eslint .",
"posttest": "lerna run posttest --scope zmarkdown",
"build": "lerna run build",
"d": "node --inspect --debug-brk ./node_modules/.bin/jest --runInBand -i",
"clean": "lerna clean --yes && del-cli node_modules && npm install && lerna run prepare && npm run test",
"build-demo": "lerna run release --scope zmarkdown && del-cli ./packages/zmarkdown/public/js && cp -r ./packages/zmarkdown/client/dist ./packages/zmarkdown/public/js"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"private": true,
"name": "zmarkdown-meta",
"dependencies": {
"deepmerge": "^4.2.2",
"hast-util-sanitize": "^3.0.0",
"mdast-util-split-by-heading": "file:packages/mdast-util-split-by-heading",
"rebber": "file:packages/rebber",
"rebber-plugins": "file:packages/rebber-plugins",
"rehype-footnotes-title": "file:packages/rehype-footnotes-title",
"rehype-html-blocks": "file:packages/rehype-html-blocks",
"rehype-postfix-footnote-anchors": "file:packages/rehype-postfix-footnote-anchors",
"rehype-sanitize": "^4.0.0",
"remark-abbr": "file:packages/remark-abbr",
"remark-align": "file:packages/remark-align",
"remark-captions": "file:packages/remark-captions",
"remark-comments": "file:packages/remark-comments",
"remark-custom-blocks": "file:packages/remark-custom-blocks",
"remark-disable-tokenizers": "file:packages/remark-disable-tokenizers",
"remark-emoticons": "file:packages/remark-emoticons",
"remark-escape-escaped": "file:packages/remark-escape-escaped",
"remark-fix-guillemets": "file:packages/remark-fix-guillemets",
"remark-grid-tables": "file:packages/remark-grid-tables",
"remark-heading-shift": "file:packages/remark-heading-shift",
"remark-heading-trailing-spaces": "file:packages/remark-heading-trailing-spaces",
"remark-iframes": "file:packages/remark-iframes",
"remark-images-download": "file:packages/remark-images-download",
"remark-kbd": "file:packages/remark-kbd",
"remark-numbered-footnotes": "file:packages/remark-numbered-footnotes",
"remark-ping": "file:packages/remark-ping",
"remark-sub-super": "file:packages/remark-sub-super",
"typographic-colon": "file:packages/typographic-colon",
"typographic-em-dash": "file:packages/typographic-em-dash",
"typographic-exclamation-mark": "file:packages/typographic-exclamation-mark",
"typographic-guillemets": "file:packages/typographic-guillemets",
"typographic-percent": "file:packages/typographic-percent",
"typographic-permille": "file:packages/typographic-permille",
"typographic-question-mark": "file:packages/typographic-question-mark",
"typographic-semicolon": "file:packages/typographic-semicolon",
"zmarkdown": "file:packages/zmarkdown"
},
"workspaces": [
"packages/*"
]
}