package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "fslightbox",
  3. "version": "3.3.1",
  4. "description": "Modern and easy plugin for displaying images and videos in clean overlaying box. Display single source or create beautiful gallery with powerful lightbox.",
  5. "author": "Bantha Apps Piotr Zdziarski",
  6. "license": "MIT",
  7. "homepage": "https://fslightbox.com",
  8. "bugs": {
  9. "url": "https://github.com/banthagroup/fslightbox/issues"
  10. },
  11. "main": "index.js",
  12. "keywords": [
  13. "lightbox",
  14. "slide gallery",
  15. "image lightbox",
  16. "slider",
  17. "carousel"
  18. ],
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/banthagroup/fslightbox"
  22. },
  23. "scripts": {
  24. "test": "jest",
  25. "production": "webpack --mode production --config webpack.prod.config.js --display-modules && gulp",
  26. "watch": "webpack-dev-server --mode development --host 0.0.0.0",
  27. "cypress": "concurrently --kill-others \"webpack-dev-server --config ./webpack.cypress.config.js --mode development\" \"node ./node_modules/.bin/cypress open\""
  28. },
  29. "jest": {
  30. "setupFiles": [
  31. "./jest-setup.js"
  32. ],
  33. "verbose": true,
  34. "testPathIgnorePatterns": [
  35. "/node_modules/",
  36. "/demo/",
  37. "/dist/",
  38. "/tests/cypress/"
  39. ],
  40. "collectCoverage": false
  41. },
  42. "devDependencies": {
  43. "@babel/core": "^7.4.4",
  44. "@babel/preset-env": "^7.4.4",
  45. "@babel/register": "^7.4.4",
  46. "babel-jest": "^24.7.1",
  47. "babel-loader": "^8.0.5",
  48. "babel-polyfill": "^6.26.0",
  49. "browser-sync": "^2.26.7",
  50. "concurrently": "^6.2.0",
  51. "copy-webpack-plugin": "^5.0.3",
  52. "core-js": "^3.0.1",
  53. "css-loader": "^2.1.0",
  54. "cypress": "^7.5.0",
  55. "dotenv": "^10.0.0",
  56. "gulp": "^4.0.2",
  57. "gulp-clean-css": "^4.2.0",
  58. "gulp-rename": "^1.4.0",
  59. "gulp-sass": "^4.0.2",
  60. "html-loader": "^0.5.5",
  61. "html-webpack-plugin": "^3.2.0",
  62. "jest": "^24.7.1",
  63. "node-sass": "^4.12.0",
  64. "prop-types": "^15.6.2",
  65. "sass-loader": "^7.1.0",
  66. "style-loader": "^0.23.1",
  67. "uglifyjs-webpack-plugin": "^2.1.1",
  68. "webpack": "^4.30.0",
  69. "webpack-cli": "^3.3.1",
  70. "webpack-dev-server": "^3.3.1"
  71. }
  72. }