package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "vue-json-excel",
  3. "version": "0.3.0",
  4. "description": "Download your JSON as an excel or CSV file directly from the browser",
  5. "main": "dist/vue-json-excel.umd.js",
  6. "module": "dist/vue-json-excel.esm.js",
  7. "scripts": {
  8. "build:dist": "rollup -c ./rollup.config.js",
  9. "test": "echo \"Error: no test specified\" && exit 1"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git+https://github.com/jecovier/vue-json-excel.git"
  14. },
  15. "keywords": [
  16. "vue",
  17. "vuejs",
  18. "vue2",
  19. "Excel",
  20. "xls",
  21. "csv",
  22. "json",
  23. "export",
  24. "json excel",
  25. "download",
  26. "component"
  27. ],
  28. "author": "Jose Javier Espinoza",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/jecovier/vue-json-excel/issues"
  32. },
  33. "homepage": "https://github.com/jecovier/vue-json-excel#readme",
  34. "dependencies": {
  35. "downloadjs": "^1.4.7"
  36. },
  37. "devDependencies": {
  38. "rollup": "^1.7.4",
  39. "rollup-plugin-commonjs": "^9.2.2",
  40. "rollup-plugin-node-resolve": "^4.0.1",
  41. "rollup-plugin-vue": "^4.7.2",
  42. "vue-template-compiler": "^2.6.10"
  43. }
  44. }