-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
78 lines (78 loc) · 2.2 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
75
76
77
78
{
"name": "@jhuix/vue-showdowns-editor",
"version": "1.0.10",
"private": false,
"description": "A markdown editor using codemirror and previewer using @jhuix/showdowns for Vue.js",
"author": "Jhuix <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "npm run lint && npm run build:lib && npm run build:demo",
"lint": "vue-cli-service lint",
"build:lib": "cross-env BUILD_ENV=lib vue-cli-service build --target lib --name VueMDSE --filename vue-mdse --dest dist/lib src/index.js",
"build:wc": "vue-cli-service build --target wc --name showdowns-editor --dest dist/wc src/index.common.js",
"build:demo": "cross-env BUILD_ENV=demo vue-cli-service build --dest docs/demo",
"prepublishOnly": "npm run lint && npm run build:lib"
},
"main": "dist/lib/vue-mdse.common.js",
"unpkg": "dist/lib/vue-mdse.umd.min.js",
"style": "dist/lib/vue-mdse.css",
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"dependencies": {
"@jhuix/showdowns": "^0.6.7",
"vue-codemirror": "^4.0.6"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.7",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-vuex": "^4.5.7",
"@vue/cli-service": "^4.5.7",
"@vue/eslint-config-prettier": "^6.0.0",
"axios": "^0.20.0",
"babel-eslint": "^10.1.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.0.1",
"prettier": "^2.1.2",
"stylus": "^0.54.8",
"stylus-loader": "^3.0.2",
"vue": "^2.6.12",
"vue-router": "^3.4.7",
"vue-template-compiler": "^2.6.12",
"vuex": "^3.5.1"
},
"browserslist": [
"> 0.2%",
"last 2 versions",
"IE > 9",
"iOS >= 8",
"Firefox >= 20",
"Android > 4.4"
],
"keywords": [
"vue",
"vue-cli4",
"showdown",
"showdowns",
"markdown",
"preview",
"html",
"markdown-editor",
"showdowns-editor"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jhuix/vue-showdowns-editor"
},
"homepage": "https://github.com/jhuix/vue-showdowns-editor#readme",
"publishConfig": {
"access": "public"
}
}