-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.16 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": "bootstrap-select-dropdown",
"version": "0.14.6",
"description": "A jQuery plugin for Bootstrap 4 that converts <select> and <select multiselect> elements to dropdowns. Uses fuse.js for fuzzy search and Bootstrap's dropdown plugin.",
"main": "./dist/bootstrap-select-dropdown.js",
"scripts": {
"build": "webpack --config webpack.prod.js --mode production",
"dev": "webpack --config webpack.dev.js --mode development",
"serve": "webpack-serve --config webpack.dev.js",
"version": "npm run dev && npm run build && git add .",
"postversion": "git push && npm publish",
"test:server": "browser-sync start --port 8080 --server 'docs'",
"test:chromium": "testcafe chromium test.js",
"test:chrome": "testcafe chrome test.js",
"test:firefox": "testcafe firefox test.js"
},
"author": {
"name": "Steven Thompson",
"url": "https://github.com/thompsonsj"
},
"repository": {
"type": "git",
"url": "https://github.com/thompsonsj/bootstrap-select-dropdown"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.0.6",
"bootstrap": "^4.4.1",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"expose-loader": "^0.7.5",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"fuse.js": "^3.4.6",
"handlebars": "^4.7.2",
"handlebars-loader": "^1.7.1",
"handlebars-webpack-plugin": "^1.8.0",
"highlight.js": "^9.17.1",
"html-entities": "^1.2.1",
"jquery": "^3.4.1",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"popper.js": "^1.16.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.3.1",
"style-loader": "^1.1.3",
"testcafe": "^1.8.0",
"unminified-webpack-plugin": "^2.0.0",
"webpack": "^4.41.5",
"webpack-auto-inject-version": "^1.2.2",
"webpack-cli": "^3.3.10",
"webpack-serve": "^3.2.0"
},
"dependencies": {},
"keywords": [
"bootstrap",
"bootstrap-4",
"dropdown",
"javascript",
"jquery",
"multiselect",
"select"
]
}