generated from markedjs/marked-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
78 lines (78 loc) · 2.16 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.1.4",
"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 <Tony@Brix.ninja> (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": {
"katex": ">=0.16 <0.17",
"marked": ">=4 <16"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@markedjs/eslint-config": "^1.0.9",
"@markedjs/testutils": "15.0.0-0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"babel-jest": "^29.7.0",
"cheerio": "^1.0.0",
"globals": "^15.14.0",
"jest-cli": "^29.7.0",
"katex": "^0.16.19",
"marked": "^15.0.6",
"node-fetch": "^3.3.2",
"rollup": "^4.30.0",
"semantic-release": "^24.2.1",
"tsd": "^0.31.2"
},
"tsd": {
"compilerOptions": {
"strict": true,
"module": "nodenext"
}
}
}