forked from trvswgnr/bs5-lightbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.89 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
{
"name": "bs5-lightbox",
"version": "1.8.3",
"author": {
"name": "Travis Aaron Wagner",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/trvswgnr/bs5-lightbox/issues"
},
"description": "A pure JS lightbox gallery plugin for Bootstrap 5 based on the modal and carousel plugins",
"homepage": "https://github.com/trvswgnr/bs5-lightbox",
"keywords": [
"lightbox",
"gallery",
"bootstrap",
"bootstrap 5",
"modal",
"carousel"
],
"license": "MIT",
"main": "dist/index.js",
"module": "src/index.js",
"jsdelivr": "dist/index.bundle.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/trvswgnr/bs5-lightbox.git"
},
"peerDependencies": {
"bootstrap": "^5.0.0"
},
"sideEffects": false,
"scripts": {
"build": "webpack --mode=production --config webpack.module.js && webpack --mode=production --config webpack.cdn.js",
"start": "webpack --watch --mode=production --config webpack.module.js",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint src --ext .js,.ts"
},
"bundleDependencies": false,
"funding": "https://github.com/sponsors/trvswgnr",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-loader": "^8.2.4",
"eslint": "^7.32.0",
"prettier": "^2.4.1",
"terser-webpack-plugin": "^5.2.4",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.56.1",
"webpack-cli": "^4.8.0",
"webpack-merge": "^5.8.0"
},
"browserslist": [
">= 0.5%",
"last 2 major versions",
"not dead",
"Chrome >= 60",
"Firefox >= 60",
"Firefox ESR",
"iOS >= 12",
"Safari >= 12",
"not Explorer <= 11"
],
"files": [
"dist/**/*",
"src/**/*"
],
"dependencies": {}
}