forked from erobertson42/bootstrap-modbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "bootstrap-modbox",
"version": "1.6.2",
"description": "Native JavaScript wrapper for simple Bootstrap 5 modals. Provides support for alert, confirm, and prompt modals, as well as advanced custom dialogs.",
"author": "Eric Robertson",
"license": "MIT",
"homepage": "https://erobertson42.github.io/bootstrap-modbox/",
"bugs": "https://github.com/erobertson42/bootstrap-modbox/issues",
"keywords": ["javascript", "bootstrap", "bootstrap5", "modal", "dialog"],
"repository": {
"type": "git",
"url": "https://github.com/erobertson42/bootstrap-modbox.git"
},
"browser": "dist/bootstrap-modbox.min.js",
"files": [
"dist/*"
],
"scripts": {
"dist": "grunt default",
"prepare": "npm run dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"grunt": "^1.4.1",
"grunt-babel": "^8.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-uglify": "^5.0.1",
"uglify-js": "^3.14.2"
},
"peerDependencies": {
"bootstrap": "^5.0.1"
}
}