This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
71 lines (71 loc) · 2.12 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
{
"name": "vue3-markdown-it",
"version": "1.0.10",
"author": "Jan Guillermo",
"description": "An awesome Vue 3 markdown-it wrapper plugin that can even support external plugins!",
"license": "MIT",
"keywords": [
"vue",
"vue3",
"vue3-markdown-it",
"markdown",
"markdown-it"
],
"main": "dist/vue3-markdown-it.umd.min.js",
"scripts": {
"build": "vue-cli-service build --formats umd-min --target lib ./src/index.js",
"lint": "vue-cli-service lint",
"test": "vue-cli-service test:unit",
"prepublishOnly": "npm run test && npm run build"
},
"dependencies": {
"markdown-it": "^12.3.2",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^8.4.1",
"markdown-it-deflist": "^2.1.0",
"markdown-it-emoji": "^2.0.0",
"markdown-it-footnote": "^3.0.3",
"markdown-it-highlightjs": "^3.6.0",
"markdown-it-ins": "^3.0.1",
"markdown-it-mark": "^3.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-toc-done-right": "^4.2.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@vue/cli-plugin-babel": "^5.0.0-rc.1",
"@vue/cli-plugin-eslint": "^5.0.0-rc.1",
"@vue/cli-plugin-unit-jest": "^5.0.0-rc.1",
"@vue/cli-service": "^5.0.0-rc.1",
"@vue/compiler-sfc": "^3.2.26",
"@vue/test-utils": "^2.0.0-beta.5",
"@vue/vue3-jest": "^27.0.0-alpha.4",
"core-js": "^3.20.2",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.3.0",
"husky": "^7.0.4",
"markdown-it-strikethrough-alt": "^1.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4",
"vue": "^3.2.26",
"vue-jest": "^5.0.0-alpha.4"
},
"homepage": "https://janguillermo.github.io/vue3-markdown-it/",
"repository": {
"type": "git",
"url": "https://github.com/JanGuillermo/vue3-markdown-it.git"
},
"bugs": {
"url": "https://github.com/JanGuillermo/vue3-markdown-it/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test && npm run build"
}
}
}