package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "vue-native-websocket",
  3. "version": "2.0.15",
  4. "description": "native websocket implemantation for vuejs and vuex",
  5. "main": "dist/build.js",
  6. "scripts": {
  7. "build": "eslint --ext .js src && webpack --progress --hide-modules",
  8. "lint": "eslint --ext .js src",
  9. "unit": "karma start test/unit/karma.conf.js",
  10. "test": "karma start test/unit/karma.conf.js --single-run "
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/nathantsoi/vue-native-websocket.git"
  15. },
  16. "keywords": [
  17. "vuejs",
  18. "socket",
  19. "vue",
  20. "websocket",
  21. "realtime",
  22. "flux",
  23. "vuex",
  24. "redux"
  25. ],
  26. "author": "Nathan Tsoi",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/nathantsoi/vue-native-websocket/issues"
  30. },
  31. "homepage": "https://github.com/nathantsoi/vue-native-websocket#readme",
  32. "devDependencies": {
  33. "babel-cli": "^6.24.1",
  34. "babel-eslint": "^7.2.3",
  35. "babel-loader": "^7.0.0",
  36. "babel-preset-es2015": "^6.24.1",
  37. "chai": "^4.0.2",
  38. "eslint": "^3.19.0",
  39. "eslint-config-standard": "^10.2.1",
  40. "eslint-plugin-import": "^2.2.0",
  41. "eslint-plugin-node": "^4.2.2",
  42. "eslint-plugin-promise": "^3.5.0",
  43. "eslint-plugin-standard": "^3.0.1",
  44. "exports-loader": "^0.6.4",
  45. "karma": "^1.7.0",
  46. "karma-chrome-launcher": "^2.2.0",
  47. "karma-coverage": "^1.1.1",
  48. "karma-mocha": "^1.3.0",
  49. "karma-sinon-chai": "^1.3.1",
  50. "karma-sourcemap-loader": "^0.3.7",
  51. "karma-spec-reporter": "^0.0.31",
  52. "karma-webpack": "^2.0.3",
  53. "mocha": "^3.4.2",
  54. "mock-socket": "^6.1.0",
  55. "script-loader": "^0.7.0",
  56. "sinon": "^2.3.6",
  57. "sinon-chai": "^2.11.0",
  58. "vue": "^2.3.4",
  59. "webpack": "^3.0.0"
  60. },
  61. "dependencies": {}
  62. }