forked from yansern/vue-multipane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.95 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-multipane",
"description": "Resizable split panes for Vue.js.",
"version": "0.9.5",
"author": "Yan Sern <hey@yansern.io>",
"main": "dist/vue-multipane.js",
"unpkg": "dist/vue-multipane.min.js",
"module": "dist/vue-multipane.esm.js",
"scripts": {
"build": "yarn run build:prod && yarn run build:dev && yarn run build:esm && yarn run build:demo",
"build:prod": "cross-env rollup -c rollup.config.prod.js",
"build:dev": "cross-env rollup -c rollup.config.dev.js",
"build:esm": "cross-env rollup -c rollup.config.esm.js",
"build:demo": "cross-env NODE_ENV=production webpack --progress --hide-modules --env.entry=demo --config=node_modules/laravel-mix/setup/webpack.config.js",
"dev": "cross-env NODE_ENV=development webpack-dev-server --hot --inline --env.entry=demo --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"license": "MIT",
"homepage": "https://github.com/yansern/vue-multipane/index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/yansern/vue-multipane.git"
},
"bugs": {
"url": "https://github.com/yansern/vue-multipane/issues"
},
"keywords": [
"vue",
"multipane",
"split pane",
"ui",
"resize",
"resizeable",
"layout",
"flexbox",
"components"
],
"devDependencies": {
"babel-env": "^2.4.1",
"babel-eslint": "^7.2.3",
"babel-runtime": "^6.26.0",
"cross-env": "^5.0.5",
"eslint-plugin-prettier": "^2.2.0",
"eslint_d": "^5.1.0",
"laravel-mix": "^1.4.5",
"laravel-mix-environments": "^0.1.0",
"rollup": "^0.50.0",
"rollup-plugin-alias": "^1.3.1",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-scss": "^0.3.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-plugin-vue": "^2.5.0",
"uglify-es": "^3.1.2",
"vue": "^2.4.4",
"yargs": "^9.0.1"
},
"engines": {
"node": ">=6.0.0"
}
}