-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.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
{
"name": "vue-searchable-select",
"version": "0.1.3",
"description": "Pure Vue3 version of the 'searchable select box' widget",
"main": "dist/index.js",
"types": "./types/searchable-select.d.ts",
"browser": "dist/index.min.js",
"style": "dist/theme-default.css",
"files": [
"src",
"dist",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/degica/vue-searchable-select.git"
},
"keywords": [
"vue",
"select",
"select2",
"search",
"searchable",
"dropdown"
],
"author": "Nigel Baillie <nbaillie@degica.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/degica/vue-toast-notification/issues"
},
"homepage": "https://github.com/degica/vue-toast-notification",
"scripts": {
"test": "jest --passWithNoTests",
"test:watch": "yarn run test --watch --notify",
"start": "yarn run dev",
"dev": "cross-env NODE_ENV=development webpack serve --hot --config=webpack.config.dev.js",
"docs": "cross-env NODE_ENV=production webpack --config=webpack.config.dev.js --progress --mode=production",
"build": "cross-env NODE_ENV=production webpack --progress --mode=production",
"prepublishOnly": "yarn run test && yarn run build"
},
"dependencies": {
"lodash.debounce": "^4.0.8"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@types/lodash.debounce": "^4.0.6",
"@vue/compiler-sfc": "^3.1.4",
"@vue/test-utils": "^2.0.0-rc.10",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"bootstrap": "^4.5.3",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"mini-css-extract-plugin": "^2.1.0",
"mitt": "^3.0.0",
"sass": "~1.35.2",
"sass-loader": "^12.1.0",
"style-loader": "^3.0.0",
"svg-url-loader": "^7.1.1",
"vue": "^3.1",
"vue-loader": "^16.3.0",
"vue3-jest": "^27.0.0-alpha.1",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.0.0-beta.3",
"webpack-remove-empty-scripts": "^0.7.1"
},
"peerDependencies": {
"vue": "^3.0"
},
"engines": {
"node": ">=12.15.0"
}
}