forked from tonning/vue-bulma-markdown-editor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.78 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
{
"name": "vue-bulma-markdown-editor",
"version": "1.3.1",
"description": "A Vue and Bulma specific package for adding a markdown editor with preview.",
"main": "dist/index.min.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "rm -rf dist && NODE_ENV=production webpack",
"demo": "NODE_ENV=production webpack --config docs/webpack.config.js",
"start": "webpack-dev-server --config docs/webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/tonning/vue-bulma-markdown-editor.git"
},
"keywords": [
"Vue",
"vue.js",
"bulma",
"markdown",
"editor"
],
"author": "Kristoffer Tonning",
"license": "MIT",
"bugs": {
"url": "https://github.com/tonning/vue-bulma-markdown-editor/issues"
},
"homepage": "https://github.com/tonning/vue-bulma-markdown-editor#readme",
"dependencies": {
"axios": "^0.16.2",
"vue": "^2.4.4"
},
"devDependencies": {
"autosize": "^4.0.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-loader": "^7.1.2",
"babel-runtime": "^6.26.0",
"bulma": "^0.5.2",
"bulma-switch": "^0.0.3",
"css-loader": "^0.28.7",
"lodash": "^4.17.4",
"markdown-it": "^8.4.0",
"markdown-it-attrs": "^1.2.0",
"moment": "^2.18.1",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"vue-loader": "^13.0.4",
"vue-template-compiler": "^2.4.4",
"webpack": "3.6.0",
"webpack-merge": "^4.1.0",
"webpack-dev-server": "2.9.1",
"webpack-cli": "2.1.4"
}
}