-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "select2-customselectionadapter",
"version": "1.0.0",
"description": "An implementation of a custom selection adapter for the Select2 plugin (multiple mode). Displays the selected tags into a separate section, leaving the search box empty.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"author": {
"name": "Andrei Victor Bulearca",
"url": "https://andreivictor.ro/"
},
"homepage": "https://github.com/andreivictor/select2-customSelectionAdapter#readme",
"keywords": [
"select",
"autocomplete",
"typeahead",
"dropdown",
"multiselect",
"tag",
"tagging",
"select2"
],
"repository": {
"type": "git",
"url": "git://github.com/andreivictor/select2-customSelectionAdapter.git"
},
"license": "MIT",
"dependencies": {
"jquery": "^3.5.0",
"select2": "^4.0.7-rc.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"grunt": "^1.4.1",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^5.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-sass": "^3.1.0",
"husky": "^7.0.0",
"node-sass": "^4.14.1"
}
}