16 lines
585 B
JSON
16 lines
585 B
JSON
{
|
|
"name": "ejabberd",
|
|
"version": "1.0.0",
|
|
"dependencies": {
|
|
"bootstrap": "^5.3.8",
|
|
"jquery": "^4.0.0"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "npm run -s clean && npm run -s mkdir-jquery && npm run -s cp-jquery && npm run -s cp-bootstrap",
|
|
"clean": "rm -rf priv/mod_invites/static/{jquery,bootstrap}",
|
|
"mkdir-jquery": "mkdir -p priv/mod_invites/static/jquery",
|
|
"cp-jquery": "cp node_modules/jquery/dist/jquery.min.js priv/mod_invites/static/jquery/jquery.min.js",
|
|
"cp-bootstrap": "cp -r node_modules/bootstrap/dist priv/mod_invites/static/bootstrap"
|
|
}
|
|
}
|