-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
40 lines (40 loc) · 1020 Bytes
/
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
{
"name": "bootpopup",
"main": "bootpopup.js",
"homepage": "https://rigon.github.io/bootpopup/",
"repository": "github:rigon/bootpopup",
"authors": [
"rigon <[email protected]>"
],
"description": "Popup dialog boxes for Bootstrap",
"keywords": [
"bootstrap",
"dialog"
],
"license": "MIT",
"version": "1.5.5",
"scripts": {
"dist": "mkdir dist && uglifyjs --compress --mangle -- bootpopup.js > dist/bootpopup.min.js",
"lint": "eslint bootpopup.js",
"prepublish": "npm run dist",
"serve": "static-server",
"start": "nodemon --watch bootpopup.js --exec 'npm run dist && npm run serve'"
},
"files": [
"dist/bootpopup.min.js",
"index.html"
],
"peerDependencies": {
"bootstrap": "^3.4.1",
"jquery": "^3.7.1"
},
"devDependencies": {
"eslint": "^8.56.0",
"highlight.js": "^11.9.0",
"nodemon": "^3.0.3",
"static-server": "^3.0.0",
"uglify-js": "^3.17.4",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4"
}
}