-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
55 lines (55 loc) · 1.14 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
{
"name": "hexo-math",
"version": "5.0.0",
"description": "Add KaTeX and MathJax support to Hexo",
"main": "index.js",
"directories": {
"lib": "./lib",
"dist": "./dist"
},
"files": [
"lib/",
"dist/",
"index.js"
],
"engines": {
"node": ">= 14"
},
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "c8 -r lcovonly mocha test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexojs/hexo-math.git"
},
"keywords": [
"hexo",
"katex",
"math",
"mathjax"
],
"author": "AKFish <[email protected]> (http://catx.me)",
"contributors": [
"Hexo Core Team (https://github.com/orgs/hexojs/teams/core)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hexojs/hexo-math/issues"
},
"homepage": "https://github.com/hexojs/hexo-math",
"dependencies": {
"hexo-util": "^3.3.0",
"katex": "^0.16.10",
"mathjax": "^3.2.2"
},
"devDependencies": {
"c8": "^9.1.0",
"chai": "^4.4.1",
"eslint": "^8.57.0",
"eslint-config-hexo": "^5.0.0",
"hexo": "^7.1.1",
"mocha": "^10.4.0"
}
}