forked from iliyaZelenko/vue-cool-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.24 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "vue-cool-select",
"version": "3.5.2",
"scripts": {
"commit": "git-cz",
"serve": "cd ./gh-pages-src && yarn serve",
"build": "rollup --c ./build/rollup.config.js --environment BUILD:production",
"build-watch": "rollup -w -c",
"lint": "vue-cli-service lint",
"lint-show": "vue-cli-service lint --no-fix",
"gp-build-with-deploy": "cd ./gh-pages-src && yarn build-with-deploy",
"build-and-local-publish": "yarn build && yalc publish --push",
"test:unit": "vue-cli-service test:unit",
"test:unit-watch": "vue-cli-service test:unit --watch",
"test:unit-coverage": "vue-cli-service test:unit --coverage",
"test:e2e": "vue-cli-service test:e2e"
},
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.4.3",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/npm": "^5.1.4",
"@semantic-release/release-notes-generator": "^7.1.4",
"@types/jest": "^24.0.6",
"@vue/cli-plugin-babel": "^3.0.5",
"@vue/cli-plugin-e2e-cypress": "^3.4.1",
"@vue/cli-plugin-eslint": "^3.0.5",
"@vue/cli-plugin-unit-jest": "^3.4.1",
"@vue/cli-service": "^3.0.5",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^24.1.0",
"clone": "^2.1.2",
"commitizen": "^4.0.0",
"core-js": "3.4.6",
"cssnano": "^4.1.10",
"fs-extra": "^7.0.1",
"jest": "^24.1.0",
"postcss-preset-env": "^6.6.0",
"propdoc": "^0.9.3",
"push-dir": "^0.4.1",
"rollup": "^1.8.0",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.1.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-vue": "^4.7.2",
"semantic-release": "^15.13.3",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"sugarss": "^2.0.0",
"ts-jest": "^24.0.0",
"ts-loader": "^6.1.2",
"tslint": "^5.13.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.3.3333",
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.17"
},
"browserslist": "> 0.5%, last 2 versions, Firefox ESR, not dead",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"vue",
"select",
"autocomplete",
"vue.js",
"slots",
"bootstrap",
"bootstrap 4",
"material design"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iliyaZelenko/vue-cool-select.git"
},
"bugs": {
"url": "https://github.com/iliyaZelenko/vue-cool-select/issues"
},
"homepage": "https://github.com/iliyaZelenko/vue-cool-select#readme",
"license": "MIT",
"description": "Vue select with autocomplete and with slots. 2 themes: bootstrap 4, material design.",
"peerDependencies": {
"vue": "^2.5.17"
},
"author": "Ilya Zelenko",
"main": "dist/bundle-cjs.js",
"module": "dist/bundle-esm.js",
"unpkg": "dist/bundle-umd.js",
"jsdelivr": "dist/bundle-umd.js",
"typings": "types/types.d.ts",
"files": [
"dist/*",
"src/*",
"types/*"
]
}