forked from F-loat/vue-simplemde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.35 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
{
"name": "vue-simplemde",
"version": "0.4.4",
"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": "[email protected]"
},
"license": "MIT",
"dependencies": {
"simplemde": "^1.11.2"
},
"repository": {
"type": "git",
"url": "https://github.com/F-loat/vue-simplemde.git"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.0.0",
"babel-preset-env": "^1.5.1",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"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.7.0",
"file-loader": "^0.9.0",
"vue-loader": "^12.1.0",
"vue-template-compiler": "^2.3.3",
"webpack": "^2.6.1",
"webpack-umd-external": "^1.0.2"
}
}