package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "vue-lazyload",
  3. "version": "1.2.3",
  4. "description": "Vue module for lazy-loading images in your vue.js applications.",
  5. "main": "vue-lazyload.js",
  6. "unpkg": "vue-lazyload.js",
  7. "scripts": {
  8. "build": "node build",
  9. "lint": "eslint ./src",
  10. "test": "karma start",
  11. "test:debug": "cross-env DEBUG=true karma start"
  12. },
  13. "dependencies": {},
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/hilongjw/vue-lazyload.git"
  17. },
  18. "keywords": [
  19. "vue-lazyload",
  20. "vue",
  21. "lazyload",
  22. "vue-directive"
  23. ],
  24. "author": "Awe <hilongjw@gmail.com>",
  25. "bugs": {
  26. "url": "https://github.com/hilongjw/vue-lazyload/issues"
  27. },
  28. "browserslist": [
  29. "> 1%",
  30. "last 2 versions",
  31. "not ie <= 8"
  32. ],
  33. "license": "MIT",
  34. "devDependencies": {
  35. "assign-deep": "^0.4.7",
  36. "babel-cli": "^6.26.0",
  37. "babel-core": "^6.26.0",
  38. "babel-plugin-external-helpers": "^6.22.0",
  39. "babel-polyfill": "^6.26.0",
  40. "babel-preset-env": "^1.6.1",
  41. "babel-preset-stage-0": "^6.24.1",
  42. "babel-register": "^6.26.0",
  43. "chai": "^4.1.2",
  44. "eslint": "^4.13.1",
  45. "eslint-config-standard": "^11.0.0-beta.0",
  46. "eslint-plugin-import": "^2.8.0",
  47. "eslint-plugin-node": "^5.2.1",
  48. "eslint-plugin-promise": "^3.6.0",
  49. "eslint-plugin-standard": "^3.0.1",
  50. "karma": "^1.7.1",
  51. "karma-chai": "^0.1.0",
  52. "karma-chrome-launcher": "^2.2.0",
  53. "karma-coverage": "^1.1.1",
  54. "karma-expect": "^1.1.3",
  55. "karma-mocha": "^1.3.0",
  56. "karma-rollup-preprocessor": "^5.0.2",
  57. "mocha": "^4.0.1",
  58. "puppeteer": "^0.13.0",
  59. "rollup": "^0.51.1",
  60. "rollup-plugin-babel": "^2.6.1",
  61. "rollup-plugin-commonjs": "^8.4.1",
  62. "rollup-plugin-node-resolve": "^3.2.0",
  63. "rollup-plugin-replace": "^2.0.0",
  64. "rollup-plugin-uglify": "^1.0.1",
  65. "vue": "^2.5.13"
  66. }
  67. }