-
-
Notifications
You must be signed in to change notification settings - Fork 996
/
package.json
81 lines (81 loc) · 2.48 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
{
"name": "vue-multiselect",
"version": "3.1.0",
"private": false,
"types": "index.d.ts",
"homepage": "vue-multiselect.js.org",
"description": "Multiselect component for Vue",
"author": {
"name": "Damian Dulisz",
"email": "[email protected]"
},
"contributors": [
"Matt Elen <[email protected]>",
"Akshay Jat <https://github.com/akki-jat>"
],
"scripts": {
"copy": "shx mkdir -p docs/shiki && shx mkdir -p documentation/shiki && shx cp -r node_modules/shiki/{dist,languages,samples,themes} documentation/shiki/ && shx cp -r node_modules/shiki/{dist,languages,samples,themes} docs/shiki/",
"lint": "vue-cli-service lint",
"bundle": "vue-cli-service build --target lib ./src/index.js && rm -rf ./dist/demo.html && rollup -c --environment BUILD:production",
"finish": "npm run lint && npm test && npm run bundle",
"test": "vue-cli-service test:unit",
"dev": "vite serve documentation",
"predev": "npm run copy",
"prebuild": "npm run copy",
"build": "vite build documentation",
"preview": "vite preview documentation"
},
"main": "dist/vue-multiselect.esm.js",
"unpkg": "dist/vue-multiselect.umd.min.js",
"jsnext:main": "dist/vue-multiselect.esm.js",
"files": [
"dist",
"src",
"index.d.ts"
],
"devDependencies": {
"@vitejs/plugin-vue": "^4.2.3",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/test-utils": "^2.0.0-0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"core-js": "^3.6.5",
"csso": "^5.0.5",
"eslint": "^6.7.2",
"eslint-config-standard": "^6.1.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^7.0.0-0",
"node-sass": "4.14.1",
"rollup": "^2.46.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.62.1",
"sass-loader": "10.1.1",
"shiki": "^0.14.5",
"shx": "^0.3.4",
"typescript": "~3.9.3",
"vite": "^4.3.9",
"vue": "^3.2.25",
"vue-jest": "^5.0.0-alpha.7",
"vuex": "^4.1.0"
},
"bugs": {
"url": "https://github.com/shentao/vue-multiselect"
},
"engines": {
"node": ">= 14.18.1",
"npm": ">= 6.14.15"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shentao/vue-multiselect.git"
},
"dependencies": {}
}