Ignore:
Timestamp:
01/21/25 03:08:24 (3 days ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
0c6b92a
Message:

F4 Finalna Verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/bootstrap/package.json

    r0c6b92a r79a0317  
    11{
    2   "name": "bootstrap",
    3   "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
    4   "version": "5.3.3",
     2  "_from": "bootstrap@5.3.3",
     3  "_id": "bootstrap@5.3.3",
     4  "_inBundle": false,
     5  "_integrity": "sha512-8HLCdWgyoMguSO9o+aH+iuZ+aht+mzW0u3HIMzVu7Srrpv7EBBxTnrFlSCskwdY1+EOFQSm7uMJhNQHkdPcmjg==",
     6  "_location": "/bootstrap",
     7  "_phantomChildren": {},
     8  "_requested": {
     9    "type": "version",
     10    "registry": true,
     11    "raw": "bootstrap@5.3.3",
     12    "name": "bootstrap",
     13    "escapedName": "bootstrap",
     14    "rawSpec": "5.3.3",
     15    "saveSpec": null,
     16    "fetchSpec": "5.3.3"
     17  },
     18  "_requiredBy": [
     19    "/"
     20  ],
     21  "_resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.3.tgz",
     22  "_shasum": "de35e1a765c897ac940021900fcbb831602bac38",
     23  "_spec": "bootstrap@5.3.3",
     24  "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend",
     25  "author": {
     26    "name": "The Bootstrap Authors",
     27    "url": "https://github.com/twbs/bootstrap/graphs/contributors"
     28  },
     29  "bugs": {
     30    "url": "https://github.com/twbs/bootstrap/issues"
     31  },
     32  "bundleDependencies": false,
    533  "config": {
    634    "version_short": "5.3"
    735  },
    8   "keywords": [
    9     "css",
    10     "sass",
    11     "mobile-first",
    12     "responsive",
    13     "front-end",
    14     "framework",
    15     "web"
    16   ],
    17   "homepage": "https://getbootstrap.com/",
    18   "author": "The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)",
    19   "license": "MIT",
    20   "repository": {
    21     "type": "git",
    22     "url": "git+https://github.com/twbs/bootstrap.git"
    23   },
    24   "bugs": {
    25     "url": "https://github.com/twbs/bootstrap/issues"
    26   },
    27   "funding": [
    28     {
    29       "type": "github",
    30       "url": "https://github.com/sponsors/twbs"
    31     },
    32     {
    33       "type": "opencollective",
    34       "url": "https://opencollective.com/bootstrap"
    35     }
    36   ],
    37   "main": "dist/js/bootstrap.js",
    38   "module": "dist/js/bootstrap.esm.js",
    39   "sass": "scss/bootstrap.scss",
    40   "style": "dist/css/bootstrap.css",
    41   "scripts": {
    42     "start": "npm-run-all --parallel watch docs-serve",
    43     "bundlewatch": "bundlewatch --config .bundlewatch.config.json",
    44     "css": "npm-run-all css-compile css-prefix css-rtl css-minify",
    45     "css-compile": "sass --style expanded --source-map --embed-sources --no-error-css scss/:dist/css/",
    46     "css-rtl": "cross-env NODE_ENV=RTL postcss --config build/postcss.config.mjs --dir \"dist/css\" --ext \".rtl.css\" \"dist/css/*.css\" \"!dist/css/*.min.css\" \"!dist/css/*.rtl.css\"",
    47     "css-lint": "npm-run-all --aggregate-output --continue-on-error --parallel css-lint-*",
    48     "css-lint-stylelint": "stylelint \"**/*.{css,scss}\" --cache --cache-location .cache/.stylelintcache",
    49     "css-lint-vars": "fusv scss/ site/assets/scss/",
    50     "css-minify": "npm-run-all --aggregate-output --parallel css-minify-*",
    51     "css-minify-main": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*.css\" \"!dist/css/*.min.css\" \"!dist/css/*rtl*.css\"",
    52     "css-minify-rtl": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*rtl.css\" \"!dist/css/*.min.css\"",
    53     "css-prefix": "npm-run-all --aggregate-output --parallel css-prefix-*",
    54     "css-prefix-main": "postcss --config build/postcss.config.mjs --replace \"dist/css/*.css\" \"!dist/css/*.rtl*.css\" \"!dist/css/*.min.css\"",
    55     "css-prefix-examples": "postcss --config build/postcss.config.mjs --replace \"site/content/**/*.css\"",
    56     "css-prefix-examples-rtl": "cross-env-shell NODE_ENV=RTL postcss --config build/postcss.config.mjs --dir \"site/content/docs/$npm_package_config_version_short/examples/\" --ext \".rtl.css\" --base \"site/content/docs/$npm_package_config_version_short/examples/\" \"site/content/docs/$npm_package_config_version_short/examples/{blog,carousel,dashboard,cheatsheet}/*.css\" \"!site/content/docs/$npm_package_config_version_short/examples/{blog,carousel,dashboard,cheatsheet}/*.rtl.css\"",
    57     "css-test": "jasmine --config=scss/tests/jasmine.js",
    58     "js": "npm-run-all js-compile js-minify",
    59     "js-compile": "npm-run-all --aggregate-output --parallel js-compile-*",
    60     "js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.mjs --sourcemap",
    61     "js-compile-standalone-esm": "rollup --environment ESM:true,BUNDLE:false --config build/rollup.config.mjs --sourcemap",
    62     "js-compile-bundle": "rollup --environment BUNDLE:true --config build/rollup.config.mjs --sourcemap",
    63     "js-compile-plugins": "node build/build-plugins.mjs",
    64     "js-lint": "eslint --cache --cache-location .cache/.eslintcache --report-unused-disable-directives --ext .html,.js,.mjs,.md .",
    65     "js-minify": "npm-run-all --aggregate-output --parallel js-minify-*",
    66     "js-minify-standalone": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.js.map,includeSources,url=bootstrap.min.js.map\" --output dist/js/bootstrap.min.js dist/js/bootstrap.js",
    67     "js-minify-standalone-esm": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.esm.js.map,includeSources,url=bootstrap.esm.min.js.map\" --output dist/js/bootstrap.esm.min.js dist/js/bootstrap.esm.js",
    68     "js-minify-bundle": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.bundle.js.map,includeSources,url=bootstrap.bundle.min.js.map\" --output dist/js/bootstrap.bundle.min.js dist/js/bootstrap.bundle.js",
    69     "js-test": "npm-run-all --aggregate-output --parallel js-test-karma js-test-jquery js-test-integration-*",
    70     "js-debug": "cross-env DEBUG=true npm run js-test-karma",
    71     "js-test-karma": "karma start js/tests/karma.conf.js",
    72     "js-test-integration-bundle": "rollup --config js/tests/integration/rollup.bundle.js",
    73     "js-test-integration-modularity": "rollup --config js/tests/integration/rollup.bundle-modularity.js",
    74     "js-test-cloud": "cross-env BROWSERSTACK=true npm run js-test-karma",
    75     "js-test-jquery": "cross-env JQUERY=true npm run js-test-karma",
    76     "lint": "npm-run-all --aggregate-output --continue-on-error --parallel js-lint css-lint lockfile-lint",
    77     "docs": "npm-run-all docs-build docs-lint",
    78     "docs-build": "hugo --cleanDestinationDir --printUnusedTemplates",
    79     "docs-compile": "npm run docs-build",
    80     "docs-vnu": "node build/vnu-jar.mjs",
    81     "docs-lint": "npm run docs-vnu",
    82     "docs-serve": "hugo server --port 9001 --disableFastRender --printUnusedTemplates",
    83     "docs-serve-only": "npx sirv-cli _site --port 9001",
    84     "lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
    85     "update-deps": "ncu -u -x globby,jasmine,karma-browserstack-launcher,karma-rollup-preprocessor && echo Manually update site/assets/js/vendor",
    86     "release": "npm-run-all dist release-sri docs-build release-zip*",
    87     "release-sri": "node build/generate-sri.mjs",
    88     "release-version": "node build/change-version.mjs",
    89     "release-zip": "cross-env-shell \"rm -rf bootstrap-$npm_package_version-dist bootstrap-$npm_package_version-dist.zip && cp -r dist/ bootstrap-$npm_package_version-dist && zip -qr9 bootstrap-$npm_package_version-dist.zip bootstrap-$npm_package_version-dist && rm -rf bootstrap-$npm_package_version-dist\"",
    90     "release-zip-examples": "node build/zip-examples.mjs",
    91     "dist": "npm-run-all --aggregate-output --parallel css js",
    92     "test": "npm-run-all lint dist js-test docs-build docs-lint",
    93     "netlify": "cross-env-shell HUGO_BASEURL=$DEPLOY_PRIME_URL npm-run-all dist release-sri docs-build",
    94     "watch": "npm-run-all --parallel watch-*",
    95     "watch-css-main": "nodemon --watch scss/ --ext scss --exec \"npm-run-all css-lint css-compile css-prefix\"",
    96     "watch-css-dist": "nodemon --watch dist/css/ --ext css --ignore \"dist/css/*.rtl.*\" --exec \"npm run css-rtl\"",
    97     "watch-css-docs": "nodemon --watch site/assets/scss/ --ext scss --exec \"npm run css-lint\"",
    98     "watch-css-test": "nodemon --watch scss/ --ext scss,js --exec \"npm run css-test\"",
    99     "watch-js-main": "nodemon --watch js/src/ --ext js --exec \"npm-run-all js-lint js-compile\"",
    100     "watch-js-docs": "nodemon --watch site/assets/js/ --ext js --exec \"npm run js-lint\""
    101   },
    102   "peerDependencies": {
    103     "@popperjs/core": "^2.11.8"
    104   },
     36  "deprecated": false,
     37  "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
    10538  "devDependencies": {
    10639    "@babel/cli": "^7.23.9",
     
    16194    "!scss/tests/**"
    16295  ],
     96  "funding": [
     97    {
     98      "type": "github",
     99      "url": "https://github.com/sponsors/twbs"
     100    },
     101    {
     102      "type": "opencollective",
     103      "url": "https://opencollective.com/bootstrap"
     104    }
     105  ],
     106  "homepage": "https://getbootstrap.com/",
    163107  "hugo-bin": {
    164108    "buildTags": "extended"
     
    181125      "@popperjs/core": "^2.11.8"
    182126    }
    183   }
     127  },
     128  "keywords": [
     129    "css",
     130    "sass",
     131    "mobile-first",
     132    "responsive",
     133    "front-end",
     134    "framework",
     135    "web"
     136  ],
     137  "license": "MIT",
     138  "main": "dist/js/bootstrap.js",
     139  "module": "dist/js/bootstrap.esm.js",
     140  "name": "bootstrap",
     141  "peerDependencies": {
     142    "@popperjs/core": "^2.11.8"
     143  },
     144  "repository": {
     145    "type": "git",
     146    "url": "git+https://github.com/twbs/bootstrap.git"
     147  },
     148  "sass": "scss/bootstrap.scss",
     149  "scripts": {
     150    "bundlewatch": "bundlewatch --config .bundlewatch.config.json",
     151    "css": "npm-run-all css-compile css-prefix css-rtl css-minify",
     152    "css-compile": "sass --style expanded --source-map --embed-sources --no-error-css scss/:dist/css/",
     153    "css-lint": "npm-run-all --aggregate-output --continue-on-error --parallel css-lint-*",
     154    "css-lint-stylelint": "stylelint \"**/*.{css,scss}\" --cache --cache-location .cache/.stylelintcache",
     155    "css-lint-vars": "fusv scss/ site/assets/scss/",
     156    "css-minify": "npm-run-all --aggregate-output --parallel css-minify-*",
     157    "css-minify-main": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*.css\" \"!dist/css/*.min.css\" \"!dist/css/*rtl*.css\"",
     158    "css-minify-rtl": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*rtl.css\" \"!dist/css/*.min.css\"",
     159    "css-prefix": "npm-run-all --aggregate-output --parallel css-prefix-*",
     160    "css-prefix-examples": "postcss --config build/postcss.config.mjs --replace \"site/content/**/*.css\"",
     161    "css-prefix-examples-rtl": "cross-env-shell NODE_ENV=RTL postcss --config build/postcss.config.mjs --dir \"site/content/docs/$npm_package_config_version_short/examples/\" --ext \".rtl.css\" --base \"site/content/docs/$npm_package_config_version_short/examples/\" \"site/content/docs/$npm_package_config_version_short/examples/{blog,carousel,dashboard,cheatsheet}/*.css\" \"!site/content/docs/$npm_package_config_version_short/examples/{blog,carousel,dashboard,cheatsheet}/*.rtl.css\"",
     162    "css-prefix-main": "postcss --config build/postcss.config.mjs --replace \"dist/css/*.css\" \"!dist/css/*.rtl*.css\" \"!dist/css/*.min.css\"",
     163    "css-rtl": "cross-env NODE_ENV=RTL postcss --config build/postcss.config.mjs --dir \"dist/css\" --ext \".rtl.css\" \"dist/css/*.css\" \"!dist/css/*.min.css\" \"!dist/css/*.rtl.css\"",
     164    "css-test": "jasmine --config=scss/tests/jasmine.js",
     165    "dist": "npm-run-all --aggregate-output --parallel css js",
     166    "docs": "npm-run-all docs-build docs-lint",
     167    "docs-build": "hugo --cleanDestinationDir --printUnusedTemplates",
     168    "docs-compile": "npm run docs-build",
     169    "docs-lint": "npm run docs-vnu",
     170    "docs-serve": "hugo server --port 9001 --disableFastRender --printUnusedTemplates",
     171    "docs-serve-only": "npx sirv-cli _site --port 9001",
     172    "docs-vnu": "node build/vnu-jar.mjs",
     173    "js": "npm-run-all js-compile js-minify",
     174    "js-compile": "npm-run-all --aggregate-output --parallel js-compile-*",
     175    "js-compile-bundle": "rollup --environment BUNDLE:true --config build/rollup.config.mjs --sourcemap",
     176    "js-compile-plugins": "node build/build-plugins.mjs",
     177    "js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.mjs --sourcemap",
     178    "js-compile-standalone-esm": "rollup --environment ESM:true,BUNDLE:false --config build/rollup.config.mjs --sourcemap",
     179    "js-debug": "cross-env DEBUG=true npm run js-test-karma",
     180    "js-lint": "eslint --cache --cache-location .cache/.eslintcache --report-unused-disable-directives --ext .html,.js,.mjs,.md .",
     181    "js-minify": "npm-run-all --aggregate-output --parallel js-minify-*",
     182    "js-minify-bundle": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.bundle.js.map,includeSources,url=bootstrap.bundle.min.js.map\" --output dist/js/bootstrap.bundle.min.js dist/js/bootstrap.bundle.js",
     183    "js-minify-standalone": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.js.map,includeSources,url=bootstrap.min.js.map\" --output dist/js/bootstrap.min.js dist/js/bootstrap.js",
     184    "js-minify-standalone-esm": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.esm.js.map,includeSources,url=bootstrap.esm.min.js.map\" --output dist/js/bootstrap.esm.min.js dist/js/bootstrap.esm.js",
     185    "js-test": "npm-run-all --aggregate-output --parallel js-test-karma js-test-jquery js-test-integration-*",
     186    "js-test-cloud": "cross-env BROWSERSTACK=true npm run js-test-karma",
     187    "js-test-integration-bundle": "rollup --config js/tests/integration/rollup.bundle.js",
     188    "js-test-integration-modularity": "rollup --config js/tests/integration/rollup.bundle-modularity.js",
     189    "js-test-jquery": "cross-env JQUERY=true npm run js-test-karma",
     190    "js-test-karma": "karma start js/tests/karma.conf.js",
     191    "lint": "npm-run-all --aggregate-output --continue-on-error --parallel js-lint css-lint lockfile-lint",
     192    "lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
     193    "netlify": "cross-env-shell HUGO_BASEURL=$DEPLOY_PRIME_URL npm-run-all dist release-sri docs-build",
     194    "release": "npm-run-all dist release-sri docs-build release-zip*",
     195    "release-sri": "node build/generate-sri.mjs",
     196    "release-version": "node build/change-version.mjs",
     197    "release-zip": "cross-env-shell \"rm -rf bootstrap-$npm_package_version-dist bootstrap-$npm_package_version-dist.zip && cp -r dist/ bootstrap-$npm_package_version-dist && zip -qr9 bootstrap-$npm_package_version-dist.zip bootstrap-$npm_package_version-dist && rm -rf bootstrap-$npm_package_version-dist\"",
     198    "release-zip-examples": "node build/zip-examples.mjs",
     199    "start": "npm-run-all --parallel watch docs-serve",
     200    "test": "npm-run-all lint dist js-test docs-build docs-lint",
     201    "update-deps": "ncu -u -x globby,jasmine,karma-browserstack-launcher,karma-rollup-preprocessor && echo Manually update site/assets/js/vendor",
     202    "watch": "npm-run-all --parallel watch-*",
     203    "watch-css-dist": "nodemon --watch dist/css/ --ext css --ignore \"dist/css/*.rtl.*\" --exec \"npm run css-rtl\"",
     204    "watch-css-docs": "nodemon --watch site/assets/scss/ --ext scss --exec \"npm run css-lint\"",
     205    "watch-css-main": "nodemon --watch scss/ --ext scss --exec \"npm-run-all css-lint css-compile css-prefix\"",
     206    "watch-css-test": "nodemon --watch scss/ --ext scss,js --exec \"npm run css-test\"",
     207    "watch-js-docs": "nodemon --watch site/assets/js/ --ext js --exec \"npm run js-lint\"",
     208    "watch-js-main": "nodemon --watch js/src/ --ext js --exec \"npm-run-all js-lint js-compile\""
     209  },
     210  "style": "dist/css/bootstrap.css",
     211  "version": "5.3.3"
    184212}
Note: See TracChangeset for help on using the changeset viewer.