-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.18 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
{
"name": "@dreayoung/vue-code-view",
"version": "0.4.1",
"description": "A Vue 2 component like Vue SFC REPL `@vue/repl` : u can edit, run and preview the code effect display in real time on the web page.",
"main": "lib/vue-code-viewer.common.js",
"unpkg": "lib/vue-code-viewer.umd.js",
"scripts": {
"bootstrap": "cnpm i || yarn",
"dev": "vue-cli-service serve ",
"dev:play": "vue-cli-service serve --mode play",
"dist": "vue-cli-service build --mode production --target lib --name vue-code-viewer --dest lib src/index.js",
"deploy:build": "vue-cli-service build --mode deploy",
"lint": "vue-cli-service lint",
"clean": "rimraf node_modules"
},
"dependencies": {
"codemirror": "^5.62.2",
"deepmerge": "^4.2.2",
"throttle-debounce": "^3.0.1",
"tiny-sass-compiler": "^0.12.2"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"devDependencies": {
"@iconify/vue2": "^1.1.3",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"ant-design-vue": "^1.7.8",
"babel-eslint": "^10.1.0",
"compression-webpack-plugin": "^6.1.1",
"core-js": "^3.6.5",
"element-ui": "^2.15.5",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^6.2.2",
"highlight.js": "^11.3.1",
"less": "^4.1.2",
"markdown-it": "^12.2.0",
"markdown-it-chain": "^1.3.0",
"markdown-it-container": "^3.0.0",
"prettier": "^2.2.1",
"sass": "^1.44.0",
"sass-loader": "^8.0.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "^2.6.11",
"vue-loader": "^15.9.8",
"vue-router": "^3.2.0",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.4.0"
},
"keywords": [
"vue",
"components",
"codemirror",
"code editor"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GendoGay/vue-code-view.git"
},
"author": "andurils",
"license": "MIT",
"homepage": "https://andurils.github.io/vue-code-view",
"browserslist": [
"last 2 version",
"> 1%",
"not dead"
]
}