-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
62 lines (62 loc) · 1.84 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
{
"name": "markdown-it-math",
"version": "5.0.0-rc.0",
"type": "module",
"description": "Markdown-it plugin to include math in your document",
"main": "index.js",
"types": "types/index.js",
"scripts": {
"clean": "rm -fr coverage/ types/",
"check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "npm run types",
"prettier": "prettier --write .",
"prettier:ci": "prettier --check .",
"test": "node --test --experimental-test-coverage",
"test:coverage-badge": "mkdir -p coverage && node --test --experimental-test-coverage --test-reporter ./test/reporters/coverage-badge-reporter.js --test-reporter-destination coverage/badge.svg",
"test:watch": "node --test --watch",
"types": "tsc index.js --allowJS --declaration --declarationMap --emitDeclarationOnly --esModuleInterop --outDir types"
},
"repository": {
"type": "git",
"url": "https://github.com/runarberg/markdown-it-math"
},
"keywords": [
"markdown-it",
"markdown-it-plugin",
"markdown",
"MathML",
"AsciiMath",
"mathup"
],
"author": "Rúnar Berg Baugsson Sigríðarson",
"license": "MIT",
"bugs": {
"url": "https://github.com/runarberg/markdown-it-math/issues"
},
"homepage": "https://github.com/runarberg/markdown-it-math",
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.13.9",
"@types/texzilla": "^0.9.4",
"badge-maker": "^4.1.0",
"eslint": "^9.21.0",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^16.0.0",
"markdown-it": "^14.1.0",
"prettier": "3.5.3",
"texzilla": "^1.0.2",
"typescript": "^5.8.2"
},
"peerDependencies": {
"mathup": "^1.0.0-rc.3"
},
"peerDependenciesMeta": {
"mathup": {
"optional": true
}
}
}