{
  "author": {
    "name": "Giampaolo Bellavite",
    "email": "io@gpbl.org"
  },
  "bugs": {
    "url": "https://github.com/gpbl/react-day-picker/issues"
  },
  "description": "Flexible date picker component for React",
  "directories": {
    "doc": "docs"
  },
  "files": [
    "DayPicker.js",
    "DayPickerInput.js",
    "DayPickerInput.d.ts",
    "lib",
    "moment.js",
    "moment.d.ts",
    "utils.js",
    "types"
  ],
  "homepage": "https://react-day-picker.js.org",
  "keywords": [
    "react",
    "react-component",
    "component",
    "calendar",
    "date-picker",
    "datepicker",
    "date",
    "picker",
    "moment",
    "momentjs"
  ],
  "license": "MIT",
  "main": "DayPicker.js",
  "name": "day-picker-react",
  "peerDependencies": {
    "react": ">=16.9.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gpbl/react-day-picker.git"
  },
  "scripts": {
    "build": "rimraf lib && npm run build:node && npm run build:production && npm run build:development",
    "build:css": "postcss src/style.css --use autoprefixer -d lib/ --no-map",
    "build:development": "cross-env NODE_ENV=development webpack",
    "build:node": "babel ./src -d ./lib/src --source-maps && npm run build:css",
    "build:production": "cross-env NODE_ENV=production webpack -p",
    "check": "npm run lint && npm run dtslint && npm run test",
    "clean": "rimraf coverage lib",
    "dtslint": "dtslint types",
    "lint": "eslint src test",
    "prerelease": "npm run check && npm run build",
    "test": "jest"
  },
  "style": "lib/style.css",
  "types": "./types/index.d.ts",
  "version": "1.0.1"
}