forked from F-loat/vue-simplemde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "vue-simplemde",
"version": "0.5.2",
"description": "SimpleMDE - Markdown Editor component for Vue.js",
"main": "dist/vue-simplemde.min.js",
"scripts": {
"build": "npm run build:dev && npm run build:prod",
"build:dev": "cross-env NODE_ENV=development webpack --progress --hide-modules",
"build:prod": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"lint": "./node_modules/.bin/eslint --format node_modules/eslint-friendly-formatter ./src/markdown-editor.vue"
},
"keywords": [
"Vue",
"SimpleMDE",
"Markdown"
],
"author": {
"name": "F-loat",
"email": "chaimaoyuan@foxmail.com"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/F-loat/vue-simplemde.git"
},
"license": "MIT",
"dependencies": {
"easymde": "https://github.com/Ionaru/easy-markdown-editor",
"marked": "*"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.2.0",
"css-loader": "^0.28.7",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-plugin-html": "^3.2.1",
"eslint-plugin-import": "^2.17.2",
"file-loader": "^1.1.5",
"vue-loader": "^13.3.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^3.7.1"
}
}