forked from officert/vue-slideout-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.51 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "vue2-slideout-panel",
"version": "2.13.0",
"description": "Lib for creating stackable panels using Vue JS",
"main": "dist/vue-slideout-panel.js",
"scripts": {
"dev": "NODE_ENV=development webpack-dev-server --config ./build/webpack.dev.js --open --inline --hot",
"build:debug": "NODE_ENV=debug webpack --config build/webpack.dist.js",
"build:release": "NODE_ENV=production webpack --config build/webpack.dist.js",
"build:docs": "webpack --config build/webpack.docs.js",
"build": "npm run build:debug && npm run build:release && npm run build:docs",
"clean": "rimraf ./dist ./docs/docs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/officert/vue-slideout-panel.git"
},
"keywords": [
"vue",
"vuejs",
"panels",
"stackable",
"components",
"ui"
],
"author": "Tim Officer",
"license": "MIT",
"bugs": {
"url": "https://github.com/officert/vue-slideout-panel/issues"
},
"homepage": "https://officert.github.io/vue-slideout-panel",
"dependencies": {
"promise-polyfill": "^8.1.0"
},
"peerDependencies": {
"vue": "^2.5.22"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"css-loader": "^0.28.11",
"deep-assign": "^2.0.0",
"eslint": "^4.13.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-vue": "^4.5.0",
"extract-loader": "^2.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"mocha": "^4.0.1",
"promise-polyfill": "^8.0.0",
"rimraf": "^2.6.1",
"style-loader": "^0.21.0",
"vue": "^2.5.16",
"vue-router": "^2.5.3",
"vue-loader": "^11.3.3",
"vue-style-loader": "^3.0.0",
"vue-template-compiler": "^2.2.6",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.7.1",
"yargs": "^10.0.3"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}