-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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
{
"name": "vue-simplemde",
"version": "2.1.1",
"description": "SimpleMDE - Markdown Editor component for Vue.js",
"main": "src/index.vue",
"typings": "types/index.d.ts",
"scripts": {
"build": "vue-cli-service build --target lib --name VueSimpleMDE src/index.vue",
"postbuild": "node hack.js",
"lint": "vue-cli-service lint"
},
"keywords": [
"Vue",
"SimpleMDE",
"Markdown"
],
"author": {
"name": "F-loat",
"email": "[email protected]"
},
"files": [
"dist",
"src",
"types"
],
"repository": {
"type": "git",
"url": "https://github.com/F-loat/vue-simplemde.git"
},
"license": "MIT",
"dependencies": {
"marked": "^3.0.8",
"simplemde": "*"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.4.6",
"@vue/cli-plugin-eslint": "^4.4.6",
"@vue/cli-service": "^4.4.6",
"@vue/eslint-config-airbnb": "^5.1.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.4.0",
"eslint-plugin-vue": "^6.2.2",
"vue-template-compiler": "^2.6.11"
},
"resolutions": {
"marked": "^3.0.8"
}
}