package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "vue-socket.io",
  3. "author": "Metin Seylan <metinsyln@gmail.com>",
  4. "version": "3.0.10",
  5. "description": "socket.io implementation for Vue.js and Vuex",
  6. "main": "dist/vue-socketio.js",
  7. "scripts": {
  8. "build": "webpack --mode=production --progress --hide-modules"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/MetinSeylan/Vue-Socket.io.git"
  13. },
  14. "keywords": [
  15. "vuejs",
  16. "socket",
  17. "vue",
  18. "socket.io",
  19. "websocket",
  20. "socket.io-client",
  21. "realtime",
  22. "flux",
  23. "vuex",
  24. "redux"
  25. ],
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/MetinSeylan/Vue-Socket.io/issues"
  29. },
  30. "homepage": "https://github.com/MetinSeylan/Vue-Socket.io",
  31. "dependencies": {
  32. "socket.io-client": "^2.1.1"
  33. },
  34. "devDependencies": {
  35. "@babel/core": "^7.1.2",
  36. "@babel/plugin-proposal-class-properties": "^7.1.0",
  37. "@babel/plugin-transform-classes": "^7.1.0",
  38. "@babel/preset-env": "^7.1.0",
  39. "babel-loader": "^8.0.4",
  40. "cross-env": "^5.2.0",
  41. "webpack": "^4.23.1",
  42. "webpack-cli": "^3.1.2"
  43. }
  44. }