forked from UziTech/marked-katex-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.24 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
{
"name": "marked-katex-extension",
"version": "5.0.1",
"description": "MarkedJS extesion to render katex",
"main": "./lib/index.cjs",
"module": "./src/index.js",
"browser": "./lib/index.umd.js",
"type": "module",
"types": "./src/index.d.ts",
"keywords": [
"marked",
"katex",
"extension"
],
"files": [
"lib/",
"src/"
],
"exports": {
".": {
"import": "./src/index.js",
"require": "./lib/index.cjs"
}
},
"scripts": {
"test": "npm run build && npm run test:cover && npm run test:spec && npm run test:types && npm run lint",
"test:katex": "jest --verbose",
"test:spec": "node --test spec/marked-tests.js",
"test:cover": "jest --coverage",
"test:types": "tsd -f spec/index.test-d.ts -t src/index.d.ts",
"lint": "eslint .",
"build": "rollup -c rollup.config.js",
"update-specs": "node ./update-specs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UziTech/marked-katex-extension.git"
},
"author": "Tony Brix <[email protected]> (https://Tony.Brix.ninja)",
"license": "MIT",
"bugs": {
"url": "https://github.com/UziTech/marked-katex-extension/issues"
},
"homepage": "https://github.com/UziTech/marked-katex-extension#readme",
"peerDependencies": {
"marked": ">=4 <13",
"katex": ">=0.16 <0.17"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@markedjs/testutils": "12.0.2-0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.3",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"babel-jest": "^29.7.0",
"cheerio": "^1.0.0-rc.12",
"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",
"jest-cli": "^29.7.0",
"katex": "^0.16.10",
"marked": "^12.0.2",
"node-fetch": "^3.3.2",
"rollup": "^4.17.1",
"semantic-release": "^23.0.8",
"tsd": "^0.31.0"
},
"dependencies": {
"@types/katex": "^0.16.7"
}
}