forked from shentao/vue-multiselect
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
67 lines (67 loc) · 1.9 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
{
"name": "@suadelabs/vue3-multiselect",
"version": "1.0.2",
"private": false,
"types": "index.d.ts",
"description": "Multiselect component for Vue 3",
"author": {
"name": "Matt Elen",
"email": "[email protected]",
"url": "https://suade.org/"
},
"contributors": [
"Damian Dulisz <[email protected]>"
],
"scripts": {
"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",
"prepare": "npm run bundle",
"test": "vue-cli-service test:unit"
},
"main": "dist/vue3-multiselect.umd.min.js",
"unpkg": "dist/vue3-multiselect.umd.min.js",
"files": [
"dist",
"src",
"index.d.ts"
],
"devDependencies": {
"@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",
"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-loader": "10.1.1",
"typescript": "~3.9.3",
"vue": "^3.0.0",
"vue-jest": "^5.0.0-alpha.7"
},
"bugs": {
"url": "https://github.com/suadelabs/vue3-multiselect/issues"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"jsnext:main": "dist/vue3-multiselect.umd.min.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/suadelabs/vue3-multiselect.git"
}
}