package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "swiper-src",
  3. "version": "5.0.4",
  4. "description": "Most modern mobile touch slider and framework with hardware accelerated transitions",
  5. "scripts": {
  6. "build:dev": "cross-env NODE_ENV=development gulp build",
  7. "build:prod": "cross-env NODE_ENV=production gulp build",
  8. "build-icons-font": "python ./scripts/icon-font/generate.py",
  9. "dev": "cross-env NODE_ENV=development gulp build && cross-env NODE_ENV=development gulp playground && cross-env NODE_ENV=development gulp server",
  10. "prod": "cross-env NODE_ENV=production gulp playground && cross-env NODE_ENV=production gulp server",
  11. "lint": "eslint .",
  12. "lint-fix": "eslint . --fix",
  13. "test": "npm run lint && npm run build:dev"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/nolimits4web/Swiper.git"
  18. },
  19. "keywords": [
  20. "swiper",
  21. "swipe",
  22. "slider",
  23. "touch",
  24. "ios",
  25. "mobile",
  26. "cordova",
  27. "phonegap",
  28. "app",
  29. "framework",
  30. "framework7",
  31. "carousel",
  32. "gallery",
  33. "plugin"
  34. ],
  35. "author": "Vladimir Kharlampidi",
  36. "license": "MIT",
  37. "bugs": {
  38. "url": "https://github.com/nolimits4web/Swiper/issues"
  39. },
  40. "homepage": "http://swiperjs.com",
  41. "engines": {
  42. "node": ">= 4.7.0"
  43. },
  44. "browserslist": [
  45. "Android >= 7",
  46. "IOS >= 11",
  47. "Safari >= 11",
  48. "Chrome >= 49",
  49. "Firefox >= 31",
  50. "Samsung >= 5"
  51. ],
  52. "devDependencies": {
  53. "autoprefixer": "^9.6.1",
  54. "clean-css": "^4.2.1",
  55. "cross-env": "^6.0.0",
  56. "eslint": "^6.4.0",
  57. "eslint-config-airbnb-base": "^14.0.0",
  58. "eslint-plugin-import": "^2.18.2",
  59. "glob": "^7.1.4",
  60. "gulp": "^4.0.2",
  61. "gulp-connect": "^5.7.0",
  62. "gulp-open": "^3.0.1",
  63. "less": "^3.10.3",
  64. "postcss": "^7.0.18",
  65. "rollup": "^1.21.4",
  66. "rollup-plugin-buble": "^0.19.8",
  67. "rollup-plugin-node-resolve": "^5.2.0",
  68. "rollup-plugin-replace": "^2.2.0",
  69. "terser": "^4.3.1"
  70. },
  71. "dependencies": {
  72. "dom7": "^2.1.3",
  73. "ssr-window": "^1.0.1"
  74. }
  75. }