Skip to content

Commit

Permalink
Fix for browserify, less strict dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
Damian Dulisz committed May 26, 2016
1 parent 62f7892 commit 94e3e53
Showing 1 changed file with 60 additions and 59 deletions.
119 changes: 60 additions & 59 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-multiselect",
"version": "0.1.4",
"version": "0.1.5",
"description": "Multiselect component for vue.js",
"author": "Damian Dulisz <[email protected]>",
"private": false,
Expand All @@ -23,65 +23,66 @@
"unit-watch": "karma start test/unit/karma.conf.js --watch",
"lint": "eslint --ext .js,.vue src test/unit/specs"
},
"dependencies": {
"vue": "1.0.21",
"babel-runtime": "5.8.38"
"browserify": {
"transform": ["vueify", "babelify"]
},
"devDependencies": {
"babel-core": "6.7.7",
"babel-loader": "6.2.4",
"babel-plugin-transform-runtime": "6.7.5",
"babel-preset-es2015": "6.6.0",
"babel-preset-stage-2": "6.5.0",
"chai": "3.5.0",
"connect-history-api-fallback": "1.1.0",
"cross-spawn": "2.1.5",
"css-loader": "0.23.0",
"eslint": "2.0.0",
"eslint-config-standard": "5.1.0",
"eslint-friendly-formatter": "1.2.2",
"eslint-loader": "1.3.0",
"eslint-plugin-html": "1.3.0",
"eslint-plugin-promise": "1.0.8",
"eslint-plugin-standard": "1.3.2",
"eventsource-polyfill": "0.9.6",
"express": "4.13.3",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.8.4",
"function-bind": "1.0.2",
"html-webpack-plugin": "2.8.1",
"http-proxy-middleware": "0.12.0",
"inject-loader": "2.0.1",
"isparta-loader": "2.0.0",
"jade": "1.11.0",
"json-loader": "0.5.4",
"karma": "0.13.19",
"karma-coverage": "0.5.5",
"karma-mocha": "0.2.2",
"karma-phantomjs-launcher": "1.0.0",
"karma-sinon-chai": "1.2.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.24",
"karma-webpack": "1.7.0",
"lolex": "1.4.0",
"mocha": "2.4.5",
"nightwatch": "0.8.18",
"node-sass": "3.4.2",
"ora": "0.2.0",
"phantomjs-prebuilt": "2.1.3",
"sass-loader": "3.2.0",
"selenium-server": "2.53.0",
"shelljs": "0.6.0",
"sinon": "1.17.3",
"sinon-chai": "2.8.0",
"url-loader": "0.5.7",
"vue-hot-reload-api": "1.2.0",
"vue-html-loader": "1.0.0",
"vue-loader": "8.2.1",
"vue-style-loader": "1.0.0",
"webpack": "1.13.0",
"webpack-dev-middleware": "1.4.0",
"webpack-hot-middleware": "2.6.0",
"webpack-merge": "0.8.3"
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"babel-runtime": "^6.0.0",
"chai": "^3.5.0",
"connect-history-api-fallback": "^1.1.0",
"cross-spawn": "^2.1.5",
"css-loader": "^0.23.0",
"eslint": "^2.0.0",
"eslint-config-standard": "^5.1.0",
"eslint-friendly-formatter": "^1.2.2",
"eslint-loader": "^1.3.0",
"eslint-plugin-html": "^1.3.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.2",
"eventsource-polyfill": "^0.9.6",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.4",
"function-bind": "^1.0.2",
"html-webpack-plugin": "^2.8.1",
"http-proxy-middleware": "^0.12.0",
"inject-loader": "^2.0.1",
"isparta-loader": "^2.0.0",
"jade": "^1.11.0",
"json-loader": "^0.5.4",
"karma": "^0.13.19",
"karma-coverage": "^0.5.5",
"karma-mocha": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon-chai": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.24",
"karma-webpack": "^1.7.0",
"lolex": "^1.4.0",
"mocha": "^2.4.5",
"nightwatch": "^0.8.18",
"node-sass": "^3.4.2",
"ora": "^0.2.0",
"phantomjs-prebuilt": "^2.1.3",
"sass-loader": "^3.2.0",
"selenium-server": "^2.53.0",
"shelljs": "^0.6.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"url-loader": "^0.5.7",
"vue": "^1.0.21",
"vue-hot-reload-api": "^1.2.0",
"vue-html-loader": "^1.0.0",
"vue-loader": "^8.2.1",
"vue-style-loader": "^1.0.0",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0",
"webpack-merge": "^0.8.3"
}
}

0 comments on commit 94e3e53

Please sign in to comment.