-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
package.json
91 lines (91 loc) · 2.68 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@selectize/selectize",
"keywords": [
"select",
"ui",
"form",
"input",
"control",
"autocomplete",
"tagging",
"tag",
"jquery-plugin"
],
"browser": "dist/js/selectize.js",
"description": "Selectize is a jQuery-based custom <select> UI control. Useful for tagging, contact lists, country selectors, etc.",
"version": "0.15.2",
"author": "Brian Reavis <[email protected]>",
"contributors": [
"Ris Adams <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/selectize/selectize.js.git"
},
"files": [
"dist/*"
],
"devDependencies": {
"@risadams/gulp-wrapper": "1.0.0",
"@types/jquery": "^3.5.16",
"bootstrap-sass": "^3.4.3",
"bootstrap2": "npm:[email protected]",
"bootstrap3": "npm:[email protected]",
"bootstrap4": "npm:[email protected]",
"bootstrap5": "npm:[email protected]",
"chai": "4.3.7",
"concurrently": "7.6.0",
"del": "^6.1.1",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-cli": "^2.3.0",
"gulp-concat": "^2.6.1",
"gulp-less": "5.0.0",
"gulp-rename": "2.0.0",
"gulp-replace": "^1.1.4",
"gulp-sass": "5.1.0",
"gulp-strip-comments": "^2.5.2",
"gulp-uglify": "3.0.2",
"gulp-uglifycss": "1.1.0",
"gulp-watch": "5.0.1",
"jquery": "^3.6.3",
"jsdoc-to-markdown": "^8.0.0",
"jshint": "^2.13.6",
"karma": "6.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-safari-launcher": "^1.0.0",
"lazypipe": "^1.0.2",
"less": "4.1.3",
"mocha": "10.2.0",
"popper.js": "1.16.1",
"sass": "1.58.1"
},
"peerDependencies": {
"jquery": "^1.7.0 || ^2 || ^3",
"jquery-ui": "^1.13.2"
},
"peerDependenciesMeta": {
"jquery-ui": {
"optional": true
}
},
"scripts": {
"test": "karma start",
"build": "gulp",
"clean": "rm -rf dist coverage node_modules docs/node_modules && cd docs && npm run clear",
"docs": "gulp docs",
"start": "cd docs && HTTPS=true SSL_CRT_FILE=.ssl/loopback_website.crt SSL_KEY_FILE=.ssl/loopback_website.key npm run start -- --host=loopback.website --port=4000",
"start:windows": "cd docs && SET HTTPS=true && SET SSL_CRT_FILE=.ssl/loopback_website.crt && SET SSL_KEY_FILE=.ssl/loopback_website.key && npm run start -- --host=loopback.website --port=4000",
"watch": "concurrently \"gulp watch\" \"npm run start\"",
"watch:windows": "concurrently \"gulp watch\" \"npm run start:windows\""
},
"engines": {
"node": "*"
}
}