-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 4.51 KB
/
Copy pathpackage.json
File metadata and controls
138 lines (138 loc) · 4.51 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@crestapps/bootstrap-select",
"title": "bootstrap-select",
"main": "dist/js/bootstrap-select.cjs",
"module": "dist/js/bootstrap-select.esm.mjs",
"style": "dist/css/bootstrap-select.min.css",
"exports": {
".": {
"import": "./dist/js/bootstrap-select.esm.mjs",
"require": "./dist/js/bootstrap-select.cjs",
"default": "./dist/js/bootstrap-select.js"
},
"./dist/css/bootstrap-select.css": "./dist/css/bootstrap-select.css",
"./dist/css/bootstrap-select.min.css": "./dist/css/bootstrap-select.min.css",
"./dist/js/bootstrap-select.cjs": "./dist/js/bootstrap-select.cjs",
"./dist/js/bootstrap-select.js": "./dist/js/bootstrap-select.js",
"./dist/js/bootstrap-select.min.js": "./dist/js/bootstrap-select.min.js",
"./dist/js/bootstrap-select.esm.mjs": "./dist/js/bootstrap-select.esm.mjs"
},
"unpkg": "dist/js/bootstrap-select.min.js",
"jsdelivr": "dist/js/bootstrap-select.min.js",
"files": [
"dist",
"js",
"sass",
"LICENSE",
"README.md"
],
"description": "A dependency-free, vanilla JavaScript plugin that brings select elements into the 21st century with intuitive multiselection, searching, and much more. Supports Bootstrap 5+. Forked from snapappointments/bootstrap-select with jQuery and Bootstrap 3/4 support removed.",
"version": "1.2.0",
"homepage": "https://github.com/CrestApps/bootstrap-select",
"author": {
"name": "CrestApps",
"url": "https://github.com/CrestApps"
},
"contributors": [
{
"name": "Casey Holzer",
"url": "https://github.com/caseyjhol"
},
{
"name": "Silvio Moreto",
"url": "https://github.com/silviomoreto"
},
{
"name": "SnapAppointments, LLC",
"url": "https://snapappointments.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/CrestApps/bootstrap-select.git"
},
"bugs": {
"url": "https://github.com/CrestApps/bootstrap-select/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"bootstrap": ">=5.0.0"
},
"devDependencies": {
"@docusaurus/core": "^3.10.2",
"@docusaurus/preset-classic": "^3.10.2",
"@easyops-cn/docusaurus-search-local": "^0.55.3",
"@fortawesome/fontawesome-free": "^7.3.1",
"@mdx-js/react": "^3.1.1",
"@playwright/test": "^1.62.1",
"@popperjs/core": "^2.11.8",
"archiver": "^8.0.0",
"autoprefixer": "^10.5.4",
"@rollup/plugin-terser": "^1.0.0",
"bootstrap": "^5.3.8",
"chokidar-cli": "^3.0.0",
"clsx": "^2.1.1",
"cssnano": "^8.0.2",
"eslint": "^9.39.5",
"globals": "^17.8.0",
"postcss": "^8.5.25",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"rollup": "^4.62.3",
"sass": "^1.102.0",
"webpack": "^5.109.2"
},
"scripts": {
"clean": "npm run clean:css && npm run clean:js",
"clean:css": "node scripts/clean.js dist/css",
"clean:js": "node scripts/clean.js dist/js",
"build": "npm run lint && npm run build:css && npm run build:js",
"build:css": "npm run clean:css && node scripts/build-css.js",
"build:js": "npm run clean:js && rollup -c",
"docs:build": "npm run docs:prepare && docusaurus build docs --out-dir .pages-build",
"docs:clear": "docusaurus clear docs",
"docs:pages": "node scripts/publish-docs-to-pages.js",
"docs:prepare": "npm run build && node scripts/copy-dist-to-docs.js && node scripts/copy-vendor-to-docs.js",
"docs:serve": "npm run docs:build && docusaurus serve docs --dir .pages-build",
"docs:start": "npm run docs:prepare && docusaurus start docs",
"dist": "npm run build && node scripts/create-dist-archive.js && node scripts/copy-dist-to-docs.js",
"lint": "eslint js/bootstrap-select.helpers.js js/bootstrap-select.search.js js/bootstrap-select.constants.js js/i18n/*.js rollup.config.js scripts/**/*.js",
"test": "playwright test",
"watch": "npm run build && chokidar \"js/**/*.js\" \"sass/**/*.scss\" -c \"npm run build\""
},
"browserslist": [
"Chrome >= 60",
"Firefox >= 60",
"Edge >= 79",
"iOS >= 12",
"Safari >= 12",
"Opera >= 50"
],
"keywords": [
"javascript",
"vanilla-js",
"form",
"bootstrap",
"bootstrap-5",
"dropdown",
"select",
"replacement"
],
"overrides": {
"joi": "^18.2.1",
"lodash": "^4.18.1",
"serialize-javascript": "^7.0.5",
"uuid": "^11.1.1"
},
"engines": {
"node": ">=20.19.0"
},
"allowScripts": {
"core-js@3.49.0": true,
"fsevents@2.3.2": true
}
}