UNPKG

3.43 kBJSONView Raw
1{
2 "name": "@livelybone/vue-select",
3 "version": "2.6.5",
4 "description": "A vue select component, includes cascader",
5 "main": "./lib/umd/index.js",
6 "module": "./lib/es/index.js",
7 "unpkg": "./lib/umd/index.js",
8 "css_path": "./lib/css/index.css",
9 "scss_path": "./lib/css/index.scss",
10 "types": "./index.d.ts",
11 "scripts": {
12 "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",
13 "build:js": "cross-env NODE_ENV=production rollup -c",
14 "dev": "rimraf ./lib && cross-env BUILD_ENV=watch node watch.js",
15 "build": "rimraf ./lib && npm run build:css && npm run build:js",
16 "eslint": "eslint ./ --ext .vue,.js --fix",
17 "test": "cross-env BABEL_ENV=test karma start --single-run",
18 "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
19 "commit": "git-cz"
20 },
21 "repository": {
22 "type": "git",
23 "url": "https://github.com/livelybone/vue-select.git"
24 },
25 "keywords": [
26 "vue",
27 "select",
28 "cascader"
29 ],
30 "author": "2631541504@qq.com",
31 "license": "MIT",
32 "bugs": {
33 "url": "https://github.com/livelybone/vue-select/issues"
34 },
35 "homepage": "https://github.com/livelybone/vue-select#readme",
36 "devDependencies": {
37 "@babel/core": "^7.5.0",
38 "@babel/plugin-transform-runtime": "^7.5.0",
39 "@babel/preset-env": "^7.5.0",
40 "@babel/runtime": "^7.5.1",
41 "@livelybone/singleton": "^1.1.1",
42 "@vue/test-utils": "^1.0.0-beta.19",
43 "babel-eslint": "^10.0.2",
44 "babel-loader": "^8.0.6",
45 "babel-plugin-istanbul": "^5.1.4",
46 "chai": "^4.2.0",
47 "chalk": "^2.4.2",
48 "chokidar": "^3.0.2",
49 "commitizen": "^3.0.7",
50 "conventional-changelog-cli": "^2.0.12",
51 "cross-env": "^5.2.0",
52 "cross-spawn": "^6.0.5",
53 "cz-conventional-changelog": "^2.1.0",
54 "eslint": "^5.3.0",
55 "eslint-config-airbnb-base": "^13.0.0",
56 "eslint-config-prettier": "^6.0.0",
57 "eslint-plugin-import": "^2.12.0",
58 "eslint-plugin-prettier": "^3.1.0",
59 "eslint-plugin-vue": "^5.1.0",
60 "express": "^4.17.1",
61 "husky": "^3.0.0",
62 "karma": "^4.1.0",
63 "karma-chai": "^0.1.0",
64 "karma-chrome-launcher": "^2.2.0",
65 "karma-coverage": "^1.1.2",
66 "karma-mocha": "^1.3.0",
67 "karma-sourcemap-loader": "^0.3.7",
68 "karma-spec-reporter": "0.0.32",
69 "karma-webpack": "^4.0.2",
70 "lint-staged": "^9.2.0",
71 "mocha": "^6.1.4",
72 "ncp": "^2.0.0",
73 "prettier": "^1.18.2",
74 "rollup": "^1.16.7",
75 "rollup-plugin-babel": "^4.3.3",
76 "rollup-plugin-commonjs": "^10.0.1",
77 "rollup-plugin-license": "^0.9.0",
78 "rollup-plugin-node-resolve": "^5.2.0",
79 "rollup-plugin-uglify": "^6.0.2",
80 "rollup-plugin-vue": "^5.0.1",
81 "vue": "^2.5.16",
82 "vue-loader": "^15.2.4",
83 "vue-template-compiler": "^2.5.16",
84 "webpack": "^4.12.0",
85 "webpack-command": "^0.2.1"
86 },
87 "dependencies": {
88 "@livelybone/copy": "^2.5.4",
89 "@livelybone/vue-popper": "^2.3.1",
90 "vue-scrollbar-live": "^5.2.2"
91 },
92 "config": {
93 "commitizen": {
94 "path": "./node_modules/cz-conventional-changelog"
95 }
96 },
97 "husky": {
98 "hooks": {
99 "pre-commit": "lint-staged"
100 }
101 },
102 "lint-staged": {
103 "**/*.{js,vue}": [
104 "eslint --fix",
105 "git update-index --again"
106 ],
107 "**/*.scss": [
108 "prettier --write",
109 "git update-index --again"
110 ]
111 }
112}