-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.56 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
{
"name": "avalynx-select",
"title": "AvalynxSelect",
"description": "AvalynxSelect is a lightweight, customizable select dropdown component for web applications. It is designed to be used with Bootstrap version 5.3 or higher and does not require any framework dependencies.",
"version": "1.2.1",
"license": "MIT",
"main": "dist/js/avalynx-select.js",
"module": "dist/js/avalynx-select.esm.js",
"files": [
"dist/js/avalynx-select.js",
"dist/js/avalynx-select.esm.js"
],
"keywords": [
"avalynx",
"select",
"dropdown",
"bootstrap",
"bootstrap5",
"livesearch",
"component"
],
"ignore": [
"package.json"
],
"author": {
"name": "Juergen Schwind an the AvalynxSelect Authors",
"url": "https://github.com/avalynx/avalynx-select/graphs/contributors"
},
"homepage": "https://github.com/avalynx/",
"repository": {
"type": "git",
"url": "git+https://github.com/avalynx/avalynx-select.git"
},
"bugs": {
"url": "https://github.com/avalynx/avalynx-select/issues"
},
"scripts": {
"test": "jest",
"build": "shx rm -rf dist; shx mkdir -p dist/js/; shx cp src/js/avalynx-select.js dist/js/avalynx-select.js; shx cp src/js/avalynx-select.js dist/js/avalynx-select.esm.js; node build.js dist/js/avalynx-select.esm.js"
},
"dependencies": {
"bootstrap": ">=5.3"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"babel-jest": "^30.2.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"shelljs": "^0.10.0",
"shx": "^0.4.0"
}
}