-
Notifications
You must be signed in to change notification settings - Fork 274
/
package.json
52 lines (52 loc) · 1.21 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
{
"name": "jbox",
"version": "1.3.3",
"description": "jBox is a jQuery plugin that makes it easy to create customizable tooltips, modal windows, image galleries and more.",
"keywords": [
"jquery-plugin",
"ecosystem:jquery",
"tooltip",
"modal",
"window",
"dialog",
"confirm",
"popup",
"notice",
"alert",
"ui",
"images",
"lightbox"
],
"homepage": "https://stephanwagner.me/jBox",
"repository": {
"type": "git",
"url": "https://github.com/StephanWagner/jBox.git"
},
"bugs": {
"url": "https://github.com/StephanWagner/jBox/issues",
"email": "[email protected]"
},
"author": "Stephan Wagner <[email protected]> (https://stephanwagner.me)",
"license": "MIT",
"main": "dist/jBox.all.min.js",
"types": "src/js/jBox.d.ts",
"dependencies": {
"jquery": "^3.6.0"
},
"devDependencies": {
"gulp": "^5.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"jest": "^27.0.4",
"sass": "^1.49.9"
},
"scripts": {
"watch": "gulp watch",
"build": "gulp build",
"test": "jest"
}
}