@livelybone/vue-select
Version:
A vue select component, includes cascader
115 lines (114 loc) • 3.58 kB
JSON
{
"name": "@livelybone/vue-select",
"version": "2.7.0",
"description": "A vue select component, includes cascader",
"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/index.scss ./lib/css/index.scss",
"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,.js --fix",
"test": "cross-env BABEL_ENV=test karma start --single-run",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"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-select.git"
},
"keywords": [
"vue",
"select",
"cascader"
],
"author": "2631541504@qq.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/livelybone/vue-select/issues"
},
"homepage": "https://github.com/livelybone/vue-select#readme",
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/runtime": "^7.5.1",
"@livelybone/singleton": "^1.1.1",
"@vue/test-utils": "^1.0.0-beta.19",
"babel-eslint": "^10.0.2",
"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",
"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",
"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.5.4",
"@livelybone/vue-popper": "^2.3.1",
"vue-scrollbar-live": "^5.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,vue}": [
"eslint --fix",
"git update-index --again"
],
"**/*.scss": [
"prettier --write",
"git update-index --again"
]
}
}