This repository has been archived by the owner on Nov 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
68 lines (68 loc) · 1.72 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
{
"name": "vue-katex",
"version": "0.5.0",
"description": "Vue plugin for KaTeX",
"main": "dist/vue-katex.cjs.js",
"module": "dist/vue-katex.es.js",
"unpkg": "dist/vue-katex.umd.js",
"files": [
"dist",
"vetur/attributes.json",
"vetur/tags.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lucpotage/vue-katex.git"
},
"scripts": {
"build": "rollup --config rollup.config.js",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"prepublish": "yarn run lint && yarn run test:unit && yarn run build"
},
"keywords": [
"Vue",
"KaTeX"
],
"author": "Luc Potage",
"contributors": [
{
"name": "Jake Hassel",
"email": "[email protected]",
"url": "https://shadskii.io"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lucpotage/vue-katex/issues"
},
"homepage": "https://github.com/lucpotage/vue-katex#readme",
"peerDependencies": {
"katex": "^0.12",
"vue": "^2.6.11"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@vue/cli-plugin-babel": "^4.4.6",
"@vue/cli-plugin-eslint": "^4.4.6",
"@vue/cli-plugin-unit-jest": "^4.4.6",
"@vue/cli-service": "^4.4.6",
"@vue/test-utils": "^1.0.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-vue": "^6.2.2",
"katex": "^0.11.1",
"rollup": "^1.27.2",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-vue": "^5.0.0",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"deepmerge": "^4.2.2"
}
}