UNPKG

base-ui

Version:

A component library for Better Vue developmemt

115 lines (114 loc) 3.81 kB
{ "name": "base-ui", "version": "0.0.294", "description": "A component library for Better Vue developmemt", "main": "./dist/base-ui.min.js", "repository": { "type": "git", "url": "git+https://github.com/sin-group/base-ui.git" }, "keywords": [ "base-ui", "component" ], "author": "KylesLight, Lany", "license": "MIT", "bugs": { "url": "https://github.com/sin-group/base-ui/issues" }, "homepage": "https://github.com/sin-group/base-ui#readme", "devDependencies": { "@babel/core": "7.7.5", "@babel/plugin-proposal-class-properties": "7.7.4", "@babel/plugin-proposal-decorators": "7.12.1", "@babel/plugin-proposal-optional-chaining": "7.11.0", "@babel/preset-env": "7.7.6", "@popperjs/core": "2.6.0", "@vue/babel-helper-vue-jsx-merge-props": "1.0.0", "@vue/babel-preset-jsx": "1.1.2", "@vue/test-utils": "1.1.0", "@yqg/arcanist": "0.0.2", "@yqg/cli": "1.2.9", "@yqg/eslint-config": "0.0.4", "@yqg/node": "1.5.3", "@yqg/stylelint-config": "0.0.3", "babel-core": "7.0.0-bridge.0", "babel-eslint": "10.0.3", "babel-jest": "26.6.1", "babel-loader": "8.1.0", "clean-webpack-plugin": "3.0.0", "core-js": "3.6.5", "debug": "3.1.0", "element-resize-detector": "^1.2.4", "eslint": "5.4.0", "eslint-config-airbnb": "17.1.0", "eslint-config-airbnb-base": "13.1.0", "eslint-loader": "2.1.0", "eslint-plugin-import": "2.14.0", "eslint-plugin-jsx-a11y": "6.1.2", "eslint-plugin-vue": "4.7.1", "file-loader": "6.1.1", "hard-source-webpack-plugin": "0.13.1", "husky": "3.1.0", "jest": "26.6.1", "jest-serializer-vue": "2.0.2", "json3": "3.3.3", "lint-staged": "9.5.0", "mini-css-extract-plugin": "1.1.0", "node-sass": "4.14.1", "optimize-css-assets-webpack-plugin": "5.0.4", "replace": "1.0.0", "sass-loader": "7.3.1", "stylelint": "12.0.0", "stylelint-config-standard": "19.0.0", "stylelint-scss": "3.13.0", "underscore": "1.9.1", "vue": "2.6.10", "vue-eslint-parser": "3.2.2", "vue-jest": "3.0.7", "vue-loader": "15.9.3", "vue-template-compiler": "2.6.10", "webpack": "4.44.1", "webpack-cli": "4.0.0" }, "scripts": { "arc:eslint": "eslint", "arc:stylelint:less": "stylelint --syntax less", "arc:stylelint:scss": "stylelint --syntax scss", "arc:csslint": "stylelint", "prebuild": "yqg shell check-package-json.sh", "build": "webpack --config webpack.config.js", "eslint:all": "eslint **/*.vue .", "eslint:fix": "npm run eslint -- --fix", "stylelint:vue": "stylelint **/*.vue --syntax scss --custom-syntax postcss-html", "stylelint:all": "stylelint \"projects/**/*.scss\" --syntax scss && npm run stylelint:vue", "lintjs": "npm run eslint:all", "lintcss": "npm run stylelint:all", "lint": "npm run lintjs && npm run lintcss", "test": "jest --config jest.config.js" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.vue": [ "eslint --fix", "stylelint --fix --syntax scss --custom-syntax postcss-html", "git add" ], "*.js": [ "eslint --fix", "git add" ], "*.scss": [ "stylelint --fix --syntax scss", "git add" ], "*.css": [ "stylelint ", "git add" ] } }