{
  "name": "react-dates",
  "version": "4.1.1",
  "description": "A responsive and accessible date range picker component built with React",
  "main": "index.js",
  "scripts": {
    "build": "npm run clean && npm run build:js && npm run build:css && npm run build:svg",
    "build:js": "babel src/ -d lib/ --ignore src/components",
    "build:css": "node-sass css/styles.scss lib/css/_datepicker.css",
    "build:svg": "webpack",
    "clean": "rimraf lib",
    "cover": "npm run cover:clean && npm run cover:mocha && npm run cover:check",
    "cover:clean": "rimraf coverage",
    "cover:check": "babel-node ./node_modules/istanbul/lib/cli check-coverage",
    "cover:mocha": "babel-node ./node_modules/istanbul/lib/cli cover node_modules/mocha/bin/_mocha -- --compilers js:babel-register,jsx:babel-register --require airbnb-js-shims --recursive ./test/_helpers test/**/*",
    "lint": "eslint --ext .js,.jsx src test",
    "mocha": "mocha --compilers js:babel-register,jsx:babel-register --require airbnb-js-shims --recursive ./test/_helpers",
    "pretest": "npm run --silent lint",
    "tests-only": "npm run mocha --silent test",
    "tests-karma": "karma start",
    "test": "npm run tests-only && npm run tests-karma",
    "storybook": "start-storybook -p 9001 -s ./public",
    "tag": "git tag v$npm_package_version",
    "gh-pages:clean": "rimraf _gh-pages",
    "gh-pages:build": "$(npm bin)/build-storybook -o _gh-pages",
    "gh-pages:copy-public": "cp public/* _gh-pages/$1",
    "gh-pages:publish": "$(npm bin)/git-directory-deploy --directory _gh-pages",
    "gh-pages": "npm run gh-pages:clean && npm run gh-pages:build && npm run gh-pages:copy-public && npm run gh-pages:publish",
    "version:patch": "npm --no-git-tag-version version patch",
    "version:minor": "npm --no-git-tag-version version minor",
    "version:major": "npm --no-git-tag-version version major",
    "preversion": "npm run test && npm run check-changelog && npm run check-only-changelog-changed",
    "postversion": "git commit package.json CHANGELOG.md -m \"Version $npm_package_version\" && npm run tag && git push && git push --tags && npm publish --registry=https://registry.npmjs.org/",
    "prepublish": "in-publish && safe-publish-latest && npm run build || not-in-publish",
    "postpublish": "npm run gh-pages",
    "check-changelog": "expr $(git status --porcelain 2>/dev/null| grep \"^\\s*M.*CHANGELOG.md\" | wc -l) >/dev/null || (echo 'Please edit CHANGELOG.md' && exit 1)",
    "check-only-changelog-changed": "(expr $(git status --porcelain 2>/dev/null| grep -v \"CHANGELOG.md\" | wc -l) >/dev/null && echo 'Only CHANGELOG.md may have uncommitted changes' && exit 1) || exit 0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/airbnb/react-dates.git"
  },
  "author": "Maja Wichrowska <maja.wichrowska@airbnb.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/airbnb/react-dates/issues"
  },
  "homepage": "https://github.com/airbnb/react-dates#readme",
  "devDependencies": {
    "@kadira/react-storybook-addon-info": "^3.3.0",
    "@kadira/storybook": "^2.24.0",
    "airbnb-js-shims": "^1.0.1",
    "babel-cli": "^6.11.4",
    "babel-core": "^6.13.2",
    "babel-loader": "^6.2.5",
    "babel-plugin-syntax-jsx": "^6.13.0",
    "babel-preset-airbnb": "^2.0.0",
    "babel-register": "^6.11.6",
    "chai": "^3.5.0",
    "coveralls": "^2.11.14",
    "enzyme": "^2.4.1",
    "eslint": "^3.3.1",
    "eslint-config-airbnb": "^10.0.1",
    "eslint-plugin-import": "^1.13.0",
    "eslint-plugin-jsx-a11y": "^2.1.0",
    "eslint-plugin-react": "^6.1.2",
    "git-directory-deploy": "^1.5.1",
    "imports-loader": "^0.6.5",
    "in-publish": "^2.0.0",
    "istanbul": "^1.1.0-alpha.1",
    "json-loader": "^0.5.4",
    "karma": "^1.2.0",
    "karma-chai": "^0.1.0",
    "karma-firefox-launcher": "^1.0.0",
    "karma-mocha": "^1.1.1",
    "karma-sinon": "^1.0.5",
    "karma-webpack": "^1.8.0",
    "mocha": "^3.0.2",
    "mocha-wrap": "^2.0.5",
    "moment": "^2.15.1",
    "node-sass": "^3.8.0",
    "raw-loader": "^0.5.1",
    "react": "^15.2.1",
    "react-addons-shallow-compare": "^15.2.1",
    "react-addons-test-utils": "^15.2.1",
    "react-dom": "^15.2.1",
    "react-svg-loader": "^1.1.1",
    "rimraf": "^2.5.4",
    "safe-publish-latest": "^1.0.1",
    "sass-loader": "^4.0.0",
    "sinon": "^1.17.5",
    "sinon-sandbox": "^1.0.2",
    "style-loader": "^0.13.1",
    "webpack": "^1.13.2"
  },
  "dependencies": {
    "array-includes": "^3.0.2",
    "classnames": "^2.2.5",
    "react-moment-proptypes": "^1.2.0",
    "react-portal": "^3.0.0"
  },
  "peerDependencies": {
    "moment": "2.10 - 2.14 || ^2.15.1",
    "react": ">=0.14",
    "react-dom": ">=0.14",
    "react-addons-shallow-compare": ">=0.14"
  }
}
