package.json 1.9 KB

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