This repository was archived by the owner on May 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 KB
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
{
"name": "vuepress-plugin-mathjax",
"version": "1.2.8",
"main": "src/index.js",
"description": "A VuePress plugin which supports TeX syntax in markdown files.",
"author": "Shigma <1700011071@pku.edu.cn>",
"license": "MIT",
"files": [
"src"
],
"scripts": {
"lint": "eslint . --fix",
"jest": "jest --config jest.config.js __tests__/.*\\.spec\\.js",
"test": "npm run lint & npm run jest"
},
"repository": {
"type": "git",
"url": "https://github.com/vuepress/vuepress-plugin-mathjax.git"
},
"bugs": {
"url": "https://github.com/vuepress/vuepress-plugin-mathjax/issues"
},
"homepage": "https://vuepress.github.io/plugins/mathjax/",
"devDependencies": {
"@vuepress/core": "^1.0.2",
"@vuepress/shared-utils": "^1.0.2",
"eslint": "^5.15.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.3.2",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"jest": "^24.5.0",
"jest-serializer-vue": "^2.0.2"
},
"dependencies": {
"lru-cache": "^5.1.1",
"mathjax3": "3.0.0-beta.3",
"vuepress-mergeable": "^1.0.2"
},
"keywords": [
"vuepress",
"vuepress-plugin",
"latex",
"mathjax",
"markdown"
]
}