{
  "name": "datepick",
  "version": "0.0.3",
  "description": "Date Picker Calendar",
  "main": "index.js",
  "scripts": {
    "build:dev": "webpack",
    "build:prod": "cross-env NODE_ENV=production webpack",
    "dev": "webpack-dev-server",
    "test": "echo \"Error: no test specified\" && exit 1",
    "lint": "eslint --ext .js --ignore-path .gitignore .",
    "lint:fix": "eslint --fix --ext .js --ignore-path .gitignore .",
    "lint:scss": "stylelint **/*.scss --syntax scss --fix",
    "prepare": "npm run build:prod",
    "precommit": "lint-staged",
    "publish": "npm publish",
    "release": "standard-version"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/viaeoo/datepick"
  },
  "bugs": {
    "url": "https://github.com/viaeoo/datepick/issues"
  },
  "keywords": [
    "datepick",
    "datepicker",
    "calendar"
  ],
  "author": "viaeoo",
  "license": "MIT",
  "dependencies": {
    "hammerjs": "^2.0.8"
  },
  "devDependencies": {
    "@babel/cli": "^7.8.4",
    "@babel/core": "^7.9.6",
    "@babel/plugin-proposal-class-properties": "^7.8.3",
    "@babel/polyfill": "^7.8.7",
    "@babel/preset-env": "^7.9.6",
    "babel-loader": "^8.1.0",
    "babel-preset-minify": "^0.5.1",
    "cross-env": "^7.0.2",
    "css-loader": "^3.5.3",
    "eslint": "^6.8.0",
    "eslint-loader": "^4.0.2",
    "file-loader": "^6.0.0",
    "jest": "^25.5.4",
    "lint-staged": "^10.2.2",
    "mini-css-extract-plugin": "^0.9.0",
    "node-sass": "^4.14.0",
    "postcss-loader": "^3.0.0",
    "sass-loader": "^8.0.2",
    "standard-version": "^8.0.0",
    "stylelint": "^13.3.3",
    "stylelint-config-standard": "^20.0.0",
    "stylelint-scss": "^3.17.1",
    "stylelint-webpack-plugin": "^1.2.3",
    "url-loader": "^4.1.0",
    "webpack": "^4.43.0",
    "webpack-cli": "^3.3.11",
    "webpack-dev-server": "^3.10.3"
  },
  "jest": {
    "moduleNameMapper": {
      "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/scripts/testMock.js",
      "\\.(css|less)$": "<rootDir>/scripts/testMock.js"
    }
  },
  "lint-staged": {
    "src/**/*.js": [
      "npm run lint",
      "git add"
    ],
    "src/**/*.scss": [
      "npm run lint:scss",
      "git add"
    ]
  },
  "browserslist": [
    "last 2 version",
    "ie 11"
  ],
  "standard-version": {
    "types": [
      {
        "type": "fix",
        "section": "Bug Fixes"
      },
      {
        "type": "feat",
        "section": "Features"
      },
      {
        "type": "perf",
        "section": "Performance"
      },
      {
        "type": "docs",
        "hidden": true
      },
      {
        "type": "style",
        "hidden": true
      },
      {
        "type": "refactor",
        "hidden": true
      },
      {
        "type": "chore",
        "hidden": true
      },
      {
        "type": "test",
        "hidden": true
      }
    ]
  }
}
