{
  "_args": [
    [
      "react-responsive-carousel@3.2.23",
      "/Users/david/Desktop/Desarrollo/RequiezPages/Quadri"
    ]
  ],
  "_from": "react-responsive-carousel@3.2.23",
  "_id": "react-responsive-carousel@3.2.23",
  "_inBundle": false,
  "_integrity": "sha512-pqJLsBaKHWJhw/ItODgbVoziR2z4lpcJg+YwmRlSk4rKH32VE633mAtZZ9kDXjy4wFO+pgUZmDKPsPe1fPmHCg==",
  "_location": "/react-responsive-carousel",
  "_phantomChildren": {},
  "_requested": {
    "type": "version",
    "registry": true,
    "raw": "react-responsive-carousel@3.2.23",
    "name": "react-responsive-carousel",
    "escapedName": "react-responsive-carousel",
    "rawSpec": "3.2.23",
    "saveSpec": null,
    "fetchSpec": "3.2.23"
  },
  "_requiredBy": [
    "/"
  ],
  "_resolved": "https://registry.npmjs.org/react-responsive-carousel/-/react-responsive-carousel-3.2.23.tgz",
  "_spec": "3.2.23",
  "_where": "/Users/david/Desktop/Desarrollo/RequiezPages/Quadri",
  "author": {
    "name": "Leandro Augusto Lemos",
    "url": "http://leandrowd.github.io/"
  },
  "auto-changelog": {
    "output": "CHANGELOG.md",
    "template": "keepachangelog",
    "unreleased": true,
    "commitLimit": true
  },
  "bugs": {
    "url": "https://github.com/leandrowd/react-responsive-carousel/issues"
  },
  "dependencies": {
    "classnames": "^2.2.5",
    "prop-types": "^15.5.8",
    "react-easy-swipe": "^0.0.21"
  },
  "description": "React Responsive Carousel",
  "devDependencies": {
    "@babel/cli": "^7.8.4",
    "@babel/core": "^7.9.0",
    "@babel/plugin-proposal-class-properties": "^7.8.3",
    "@babel/preset-env": "^7.9.5",
    "@babel/preset-react": "^7.9.4",
    "@babel/preset-typescript": "^7.9.0",
    "@kadira/react-storybook-addon-info": "^3.4.0",
    "@kadira/storybook": "^2.35.3",
    "@storybook/addon-actions": "^5.3.18",
    "@storybook/addon-essentials": "^5.3.18",
    "@storybook/addon-knobs": "^5.3.18",
    "@storybook/addon-storysource": "^5.3.18",
    "@storybook/addon-viewport": "^5.3.18",
    "@storybook/react": "^5.3.18",
    "@types/classnames": "^2.2.10",
    "@types/enzyme": "^3.10.5",
    "@types/jest": "^25.2.1",
    "@types/react": "^16.9.34",
    "@types/react-dom": "^16.9.6",
    "@types/react-test-renderer": "^16.9.2",
    "auto-changelog": "^1.10.2",
    "babel-loader": "^8.1.0",
    "css-loader": "^3.5.2",
    "enzyme": "^3.11.0",
    "enzyme-adapter-react-16": "^1.15.2",
    "gh-pages": "^2.2.0",
    "husky": "^3.0.9",
    "jest-cli": "^25.3.0",
    "mkdirp": "^1.0.4",
    "node-sass": "^4.13.1",
    "parcel-bundler": "^1.12.4",
    "prettier": "^1.18.2",
    "pretty-quick": "^2.0.0",
    "react": "^16.9.0",
    "react-dom": "^16.9.0",
    "react-player": "^1.15.3",
    "react-test-renderer": "^16.9.0",
    "sass-loader": "^8.0.2",
    "style-loader": "^1.1.3",
    "typescript": "^3.8.3"
  },
  "homepage": "http://leandrowd.github.io/react-responsive-carousel/",
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged"
    }
  },
  "jest": {
    "unmockedModulePathPatterns": [
      "node_modules"
    ],
    "rootDir": "src",
    "setupFilesAfterEnv": [
      "../setupTests.js"
    ]
  },
  "keywords": [
    "react",
    "carousel",
    "gallery",
    "image-gallery",
    "slider",
    "responsive",
    "swipe",
    "mobile-friendly",
    "react-component",
    "view"
  ],
  "license": "MIT",
  "main": "lib/js/index.js",
  "name": "react-responsive-carousel",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/leandrowd/react-responsive-carousel.git"
  },
  "scripts": {
    "build": "yarn lib:build",
    "changelog": "auto-changelog --ignore-commit-pattern=\"(Merge pull request|Merge branch|Updating changelog|Prepare for publishing)\"",
    "format": "prettier \"**/*.{js,ts,tsx,json}\"",
    "format:check": "yarn format --check",
    "format:write": "yarn format --write",
    "jest": "jest",
    "jest-ssr": "jest --testEnvironment=node ./src/__tests__/SSR.tsx",
    "lib:build": "yarn lib:build-js && yarn lib:build-styles && yarn lib:build-types",
    "lib:build-and-publish": "yarn lib:build && yarn lib:pre-publish && npm run lib:publish && yarn lib:post-publish",
    "lib:build-js": "babel ./src -d lib/js --ignore './src/__tests__' --extensions .ts,.tsx --config-file ./babel.config.json",
    "lib:build-styles": "mkdirp lib/styles && node-sass src/carousel.scss > lib/styles/carousel.css && node-sass --output-style compressed src/carousel.scss > lib/styles/carousel.min.css",
    "lib:build-types": "tsc -p tsconfig.types.json",
    "lib:post-publish": "yarn changelog && yarn update-codesandbox && git add . && git commit -m 'Updating changelog and codesandbox' && git push origin master",
    "lib:pre-publish": "npm version patch && git push origin master",
    "lib:publish": "npm publish && git push --tags",
    "postpublish-to-npm": "yarn changelog && yarn update-codesandbox && git add . && git commit -m 'Updating changelog and codesandbox' && git push origin master",
    "prepublish-prerelease-to-npm": "git pull && yarn build && git add . && git commit -m 'Prepare for publishing prerelease'",
    "prepublish-to-npm": "git pull && yarn build",
    "publish-prerelease-to-npm": "(git pull && npm version prerelease --preid=next && npm publish)",
    "publish-to-npm": "npm version patch && npm publish && git push --tags",
    "start": "parcel src/index.html src/assets/**/*",
    "storybook": "start-storybook -p 9001 -s ./src -c .storybook",
    "test": "yarn format:check && yarn typecheck && yarn jest && yarn jest-ssr",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "update-codesandbox": "cd codesandbox/default && yarn add react-responsive-carousel@latest",
    "update-snapshots": "jest --updateSnapshot",
    "website:build": "parcel build ./src/index.html --out-dir temp/website",
    "website:copy-assets": "cp -r ./src/assets temp/website/assets && cp -r ./CNAME temp/website/CNAME",
    "website:create-and-publish": "yarn website:build && yarn website:copy-assets && yarn website:storybook && yarn website:deploy",
    "website:deploy": "gh-pages -d temp/website",
    "website:storybook": "build-storybook -s ./src -o ./temp/website/storybook"
  },
  "types": "lib/ts/index.d.ts",
  "version": "3.2.23"
}
