forked from harvesthq/chosen
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.24 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.24 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
{
"author": "jjj",
"name": "chosen-jjj",
"version": "3.0.0",
"description": "Chosen is a JavaScript plugin that makes select boxes user-friendly. It is currently available in both jQuery and Prototype flavors.",
"main": "docs/chosen.jquery.js",
"keywords": [
"select",
"multiselect",
"dropdown",
"form",
"input",
"ui",
"chosen",
"jquery",
"prototype"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jjj/chosen.git"
},
"engines": {
"node": ">=20.20.0"
},
"scripts": {
"test": "grunt test",
"build": "grunt build",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"autoprefixer": "^10.4.22",
"coffee-script": ">= 1.6",
"grunt": "^1.2.1",
"grunt-contrib-coffee": "^2.1.0",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^5.0.0",
"grunt-contrib-jasmine": "^4.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-dom-munger": "^4.0.0",
"grunt-gh-pages": "^4.0.0",
"grunt-sass": "^4.0.1",
"grunt-zip": "^1.0.0",
"load-grunt-tasks": "^5.1.0",
"postcss": "^8.4.31",
"puppeteer": "^23.11.1",
"sass": "^1.95.0",
"simulant": "^0.2.2"
},
"overrides": {
"tar-fs": "^3.0.4",
"ws": "^8.17.1"
},
"contributors": [
{
"name": "John James Jacoby",
"url": "https://github.com/JJJ"
},
{
"name": "Patrick Filler",
"url": "https://github.com/pfiller"
},
{
"name": "Christophe Coevoet",
"url": "https://github.com/stof"
},
{
"name": "Ken Earley",
"url": "https://github.com/kenearley"
},
{
"name": "Koen Punt",
"url": "https://github.com/koenpunt"
}
],
"license": "MIT",
"homepage": "https://jjj.github.io/chosen/",
"bugs": "https://github.com/jjj/chosen/issues",
"_extra": {
"title": "Chosen",
"license": {
"type": "MIT",
"url": "https://github.com/JJJ/chosen/blob/master/LICENSE.md"
},
"links": {
"download": "https://github.com/JJJ/chosen/releases",
"docs": "https://jjj.github.io/chosen/"
},
"main": [
"dist/js/chosen.jquery.js",
"dist/css/chosen.css"
]
}
}