UNPKG

@livelybone/vue-datepicker

Version:

A vue component of datepicker, includes DatePicker, DateRangePicker, DatetimePicker, DateRangePicker, TimePicker

124 lines (123 loc) 4 kB
{ "name": "@livelybone/vue-datepicker", "version": "4.1.2", "description": "A vue component of datepicker, includes DatePicker, DateRangePicker, DatetimePicker, DateRangePicker, TimePicker", "main": "./lib/umd/index.js", "module": "./lib/es/index.js", "unpkg": "./lib/umd/index.js", "css_path": "./lib/css/index.css", "scss_path": "./lib/css/index.scss", "types": "./index.d.ts", "scripts": { "build:css": "cross-env NODE_ENV=production node-sass ./src/css/index.scss ./lib/css/index.css --output-style compressed && ncp ./src/css ./lib/css", "build:js": "cross-env NODE_ENV=production rollup -c", "dev": "rimraf ./lib && cross-env BUILD_ENV=watch node watch.js", "build": "rimraf ./lib && npm run build:css && npm run build:js", "eslint": "eslint ./ --ext .vue,.ts,.js --fix", "test": "cross-env BABEL_ENV=test karma start --single-run", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0", "prepublishOnly": "npm run build && npm run eslint", "commit": "git-cz", "release": "npm publish --registry=https://registry.npmjs.org", "release:alpha": "npm publish --tag alpha --registry=https://registry.npmjs.org" }, "repository": { "type": "git", "url": "https://github.com/livelybone/vue-datepicker.git" }, "keywords": [ "DatePicker", "DateRangePicker", "DatetimePicker", "TimePicker", "DateRangePicker" ], "author": "2631541504@qq.com", "license": "MIT", "bugs": { "url": "https://github.com/livelybone/vue-datepicker/issues" }, "homepage": "https://livelybone.github.io/vue/vue-datepicker/", "devDependencies": { "@babel/core": "^7.5.0", "@babel/plugin-transform-runtime": "^7.5.0", "@babel/preset-env": "^7.5.0", "@babel/preset-typescript": "^7.3.3", "@babel/runtime": "^7.5.1", "@livelybone/singleton": "^1.1.1", "@typescript-eslint/eslint-plugin": "^1.12.0", "@typescript-eslint/parser": "^1.11.0", "@vue/test-utils": "^1.0.0-beta.19", "babel-loader": "^8.0.6", "babel-plugin-istanbul": "^5.1.4", "chai": "^4.2.0", "chalk": "^2.4.2", "chokidar": "^3.0.2", "commitizen": "^3.0.7", "conventional-changelog-cli": "^2.0.12", "cross-env": "^5.2.0", "cross-spawn": "^6.0.5", "cz-conventional-changelog": "^2.1.0", "eslint": "^5.3.0", "eslint-config-airbnb-base": "^13.0.0", "eslint-config-prettier": "^6.0.0", "eslint-plugin-import": "^2.12.0", "eslint-plugin-prettier": "^3.1.0", "eslint-plugin-vue": "^5.1.0", "express": "^4.17.1", "husky": "^3.0.0", "karma": "^4.1.0", "karma-chai": "^0.1.0", "karma-chrome-launcher": "^2.2.0", "karma-coverage": "^1.1.2", "karma-mocha": "^1.3.0", "karma-sourcemap-loader": "^0.3.7", "karma-spec-reporter": "0.0.32", "karma-webpack": "^4.0.2", "lint-staged": "^9.2.0", "mocha": "^6.1.4", "ncp": "^2.0.0", "postcss": "7.0.39", "prettier": "^1.18.2", "rollup": "^1.16.7", "rollup-plugin-babel": "^4.3.3", "rollup-plugin-commonjs": "^10.0.1", "rollup-plugin-license": "^0.9.0", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-uglify": "^6.0.2", "rollup-plugin-vue": "^5.0.1", "ts-loader": "^6.0.4", "typescript": "^3.5.3", "vue": "^2.5.16", "vue-loader": "^15.2.4", "vue-template-compiler": "^2.5.16", "webpack": "^4.12.0", "webpack-command": "^0.2.1" }, "dependencies": { "@livelybone/copy": "^2.6.3", "@livelybone/date-generator": "^4.2.1", "@livelybone/vue-popper": "^2.4.0", "vue-scrollbar-live": "^5.7.1" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "**/*.{js,ts,vue}": [ "eslint --fix", "git update-index --again" ], "**/*.scss": [ "prettier --write", "git update-index --again" ] } }