forked from remarkjs/remark-math
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 1.97 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
{
"name": "rehype-mathjax",
"version": "4.0.2",
"description": "rehype plugin to transform inline and block math with MathJax",
"license": "MIT",
"keywords": [
"unified",
"remark",
"rehype",
"rehype-plugin",
"plugin",
"mdast",
"markdown",
"hast",
"html",
"math",
"mathjax",
"latex",
"tex"
],
"repository": "https://github.com/remarkjs/remark-math/tree/main/packages/rehype-mathjax",
"bugs": "https://github.com/remarkjs/remark-math/issues",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"author": "TANIGUCHI Masaya <[email protected]> (https://docs.casa)",
"contributors": [
"TANIGUCHI Masaya <[email protected]> (https://docs.casa)",
"Titus Wormer <[email protected]> (https://wooorm.com)"
],
"sideEffects": false,
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"files": [
"lib/",
"browser.d.ts",
"browser.js",
"chtml.d.ts",
"chtml.js",
"index.d.ts",
"index.js",
"svg.d.ts",
"svg.js"
],
"browser": {
"./lib/create-adaptor.js": "./lib/create-adaptor.browser.js"
},
"dependencies": {
"@types/hast": "^2.0.0",
"@types/mathjax": "^0.0.37",
"@types/web": "^0.0.70",
"hast-util-from-dom": "^4.0.0",
"hast-util-to-text": "^3.1.0",
"jsdom": "^20.0.0",
"mathjax-full": "^3.0.0",
"unified": "^10.0.0",
"unist-util-visit": "^4.0.0"
},
"devDependencies": {
"@types/jsdom": "^20.0.0"
},
"scripts": {
"build": "rimraf \"lib/**/*.d.ts\" \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage",
"test-api": "node --conditions development test/index.js",
"test": "npm run build && npm run test-api"
},
"xo": false,
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true,
"ignoreCatch": true,
"#": "needed `any`s",
"ignoreFiles": [
"lib/create-plugin.d.ts",
"lib/create-renderer.d.ts",
"lib/create-renderer.js"
]
}
}