UNPKG

vue-element-pro-components

Version:
167 lines 5.25 kB
{ "name": "vue-element-pro-components", "version": "1.0.35", "description": "This is a vue2、element-ui based component library", "private": false, "author": "fangkang<https://github.com/fang-kang>", "main": "lib/index.js", "license": "MIT", "keywords": [ "component", "vue", "form", "element-ui", "table", "search", "dialog" ], "files": [ "lib", "types", "src", "packages" ], "typings": "types/index.d.ts", "style": "lib/theme/index.css", "unpkg": "lib/index.js", "repository": { "type": "git", "url": "https://github.com/fang-kang/vue-element-pro-components" }, "homepage": "https://github.com/fang-kang/vue-element-pro-components", "bugs": { "url": "https://github.com/fang-kang/vue-element-pro-components/issues" }, "scripts": { "serve": "cross-env NODE_ENV=development && vue-cli-service serve --copy", "lib:cli": "cross-env rimraf ./lib && node ./build/cli.build.js", "lib": "cross-env NODE_ENV=production rimraf ./lib && node ./build/rollup.build", "lint:prettier": "cross-env prettier --write \"src/**/*.js\" \"src/**/*.vue\" --loglevel warn", "lint:css": "cross-env stylelint 'packages/**/*.{html,vue,css,less,scss,styl}' --fix && stylelint 'examples/**/*.{html,vue,css,less,scss,styl}' --fix && stylelint 'src/**/*.{html,vue,css,less,scss,styl}' --fix && stylelint 'docs/.vuepress/**/*.{html,vue,css,less,scss,styl}' --fix", "test:unit": "vue-cli-service test:unit", "docs:dev": "vuepress dev docs", "docs:build": "vuepress build docs", "precommit": "lint-staged", "version": "conventional-changelog -p angular -i CHANGELOG.md -s", "pub:rollup": "npm run uv && npm run lib && npm publish", "pub:cli": "npm run uv && npm run lib:cli && npm publish", "uv": "cross-env node ./script/update.version.js" }, "dependencies": { "async-validator": "^1.11.5", "clipboard": "^2.0.10", "lodash-es": "^4.17.21", "vue-fragment": "1.5.1", "vue-server-renderer": "^2.6.0" }, "devDependencies": { "@babel/core": "^7.17.10", "@babel/eslint-parser": "7.11.0", "@babel/preset-env": "^7.17.10", "@commitlint/cli": "^8.1.0", "@commitlint/config-conventional": "^8.1.0", "@vue/cli-plugin-babel": "^3.11.0", "@vue/cli-plugin-eslint": "^3.11.0", "@vue/cli-plugin-unit-jest": "^3.11.0", "@vue/cli-service": "^3.11.0", "@vue/eslint-config-standard": "^4.0.0", "@vue/test-utils": "1.0.0-beta.29", "@vuepress/plugin-back-to-top": "^1.0.4", "@vuepress/plugin-medium-zoom": "^1.0.4", "@vuepress/shared-utils": "^1.9.7", "autoprefixer": "^9.6.1", "babel-eslint": "^10.0.3", "babel-jest": "^23.6.0", "babel-plugin-transform-remove-console": "^6.9.4", "babel-polyfill": "^6.26.0", "chalk": "^2.4.2", "conventional-changelog-cli": "^2.0.23", "core-js": "^2.6.5", "cross-env": "^5.2.1", "cssnano": "^4.1.10", "element-ui": "^2.15.7", "eslint": "^5.16.0", "eslint-plugin-vue": "^5.0.0", "highlight.js": "^9.15.10", "husky": "^3.0.5", "image-webpack-loader": "^6.0.0", "less": "^3.10.3", "less-loader": "^5.0.0", "lint-staged": "^9.2.5", "mini-css-extract-plugin": "^0.8.0", "postcss-cssnext": "^3.1.0", "postcss-nested": "^4.1.2", "postcss-simple-vars": "^5.0.2", "prettier": "^1.18.2", "rimraf": "^3.0.0", "rollup": "^1.21.0", "rollup-plugin-alias": "^2.0.0", "rollup-plugin-babel": "^4.3.3", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-filesize": "^6.2.0", "rollup-plugin-img": "^1.1.0", "rollup-plugin-json": "^4.0.0", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-postcss": "^2.0.3", "rollup-plugin-replace": "^2.2.0", "rollup-plugin-terser": "^5.1.1", "rollup-plugin-vue": "^5.0.1", "runjs": "^4.4.2", "sass": "^1.26.5", "sass-loader": "^8.0.2", "stylelint": "^8.0.0", "stylelint-config-standard": "^18.3.0", "stylelint-order": "^3.1.0", "stylelint-webpack-plugin": "^0.10.5", "vue": "2.6.0", "vue-highlight.js": "^2.2.0", "vue-router": "^3.0.1", "vue-server-renderer": "2.6.0", "vue-template-compiler": "2.6.0", "vuepress": "^1.0.4", "vuepress-plugin-demo-container": "^0.2.0", "vuepress-plugin-nuggets-style-copy": "^1.0.3", "vuepress-theme-reco": "^1.6.11", "webpack": "^4.39.3", "webpack-cli": "^3.3.8", "webpack-merge": "^4.2.2" }, "gitHooks": { "pre-commit": "lint-staged" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "src/**/*.{js}": [ "prettier --write", "eslint --fix", "git add" ], "packages/**/*.{js,jsx,vue}": [ "prettier --write", "eslint --fix", "git add" ], "pageages/**/*.{html,vue,css,less,scss,styl}": [ "stylelint --fix", "git add" ], "examples/**/*.{js,jsx,vue}": [ "prettier --write", "eslint --fix", "git add" ], "examples/**/*.{html,vue,css,less,scss,styl}": [ "stylelint --fix", "git add" ], "docs/**/*.{js,jsx,vue}": [ "prettier --write", "eslint --fix", "git add" ] } }