talos

Форк
0
174 строки · 7.8 Кб
1
{
2
  "name": "bootstrap",
3
  "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
4
  "version": "4.6.1",
5
  "config": {
6
    "version_short": "4.6"
7
  },
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
  "contributors": [
20
    "Twitter, Inc."
21
  ],
22
  "scripts": {
23
    "start": "npm-run-all --parallel watch docs-serve",
24
    "bundlewatch": "bundlewatch --config .bundlewatch.config.json",
25
    "css": "npm-run-all css-compile css-prefix css-minify",
26
    "css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/ -o dist/css/",
27
    "css-lint": "npm-run-all --aggregate-output --continue-on-error --parallel css-lint-*",
28
    "css-lint-stylelint": "stylelint \"**/*.{css,scss}\" --cache --cache-location .cache/.stylelintcache --rd",
29
    "css-lint-vars": "fusv scss/ site/assets/scss/",
30
    "css-minify": "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\"",
31
    "css-prefix": "npm-run-all --aggregate-output --parallel css-prefix-*",
32
    "css-prefix-main": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
33
    "css-prefix-examples": "postcss --config build/postcss.config.js --replace \"site/content/**/*.css\"",
34
    "js": "npm-run-all js-compile js-minify",
35
    "js-compile": "npm-run-all --aggregate-output --parallel js-compile-*",
36
    "js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.js --sourcemap",
37
    "js-compile-bundle": "rollup --environment BUNDLE:true --config build/rollup.config.js --sourcemap",
38
    "js-compile-plugins": "node build/build-plugins.js",
39
    "js-compile-plugins-coverage": "cross-env NODE_ENV=test node build/build-plugins.js",
40
    "js-lint": "eslint --cache --cache-location .cache/.eslintcache --report-unused-disable-directives .",
41
    "js-minify": "npm-run-all --aggregate-output --parallel js-minify-*",
42
    "js-minify-standalone": "terser --compress passes=2,typeofs=false --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",
43
    "js-minify-bundle": "terser --compress passes=2,typeofs=false --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",
44
    "js-test": "npm-run-all --aggregate-output --parallel js-test-karma* --serial js-test-integration",
45
    "js-test-karma": "karma start js/tests/karma.conf.js",
46
    "js-test-karma-old": "cross-env USE_OLD_JQUERY=true npm run js-test-karma",
47
    "js-test-karma-bundle": "cross-env BUNDLE=true npm run js-test-karma",
48
    "js-test-karma-bundle-old": "cross-env BUNDLE=true USE_OLD_JQUERY=true npm run js-test-karma",
49
    "js-test-integration": "rollup --config js/tests/integration/rollup.bundle.js",
50
    "js-test-cloud": "cross-env BROWSERSTACK=true npm run js-test-karma",
51
    "lint": "npm-run-all --aggregate-output --continue-on-error --parallel js-lint css-lint lockfile-lint",
52
    "docs": "npm-run-all docs-build docs-lint",
53
    "docs-build": "hugo --cleanDestinationDir",
54
    "docs-compile": "npm run docs-build",
55
    "docs-linkinator": "linkinator _site --recurse --skip \"^(?!http://localhost)\" --verbosity error",
56
    "docs-vnu": "node build/vnu-jar.js",
57
    "docs-lint": "npm-run-all --aggregate-output --parallel docs-vnu docs-linkinator",
58
    "docs-serve": "hugo server --port 9001 --disableFastRender",
59
    "docs-serve-only": "npx sirv-cli _site --port 9001",
60
    "lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
61
    "update-deps": "ncu -u -x \"globby,jquery,karma-browserstack-launcher,sinon,stylelint\" && echo Manually update site/assets/js/vendor",
62
    "release": "npm-run-all dist release-sri docs-build release-zip*",
63
    "release-sri": "node build/generate-sri.js",
64
    "release-version": "node build/change-version.js",
65
    "release-zip": "cross-env-shell \"rm -rf bootstrap-$npm_package_version-dist && cp -r dist/ bootstrap-$npm_package_version-dist && zip -r9 bootstrap-$npm_package_version-dist.zip bootstrap-$npm_package_version-dist && rm -rf bootstrap-$npm_package_version-dist\"",
66
    "release-zip-examples": "node build/zip-examples.js",
67
    "dist": "npm-run-all --aggregate-output --parallel css js",
68
    "test": "npm-run-all lint dist js-test docs-build docs-lint",
69
    "netlify": "cross-env-shell HUGO_BASEURL=$DEPLOY_PRIME_URL npm-run-all dist release-sri docs-build",
70
    "watch": "npm-run-all --parallel watch-*",
71
    "watch-css-main": "nodemon --watch scss/ --ext scss --exec \"npm-run-all css-lint css-compile css-prefix\"",
72
    "watch-css-docs": "nodemon --watch site/assets/scss/ --ext scss --exec \"npm run css-lint\"",
73
    "watch-js-main": "nodemon --watch js/src/ --ext js --exec \"npm-run-all js-lint js-compile\"",
74
    "watch-js-docs": "nodemon --watch site/assets/js/ --ext js --exec \"npm run js-lint\""
75
  },
76
  "style": "dist/css/bootstrap.css",
77
  "sass": "scss/bootstrap.scss",
78
  "main": "dist/js/bootstrap.js",
79
  "repository": {
80
    "type": "git",
81
    "url": "git+https://github.com/twbs/bootstrap.git"
82
  },
83
  "bugs": {
84
    "url": "https://github.com/twbs/bootstrap/issues"
85
  },
86
  "license": "MIT",
87
  "funding": {
88
    "type": "opencollective",
89
    "url": "https://opencollective.com/bootstrap"
90
  },
91
  "dependencies": {},
92
  "peerDependencies": {
93
    "jquery": "1.9.1 - 3",
94
    "popper.js": "^1.16.1"
95
  },
96
  "devDependencies": {
97
    "@babel/cli": "^7.15.7",
98
    "@babel/core": "^7.15.8",
99
    "@babel/preset-env": "^7.15.8",
100
    "@rollup/plugin-babel": "^5.3.0",
101
    "@rollup/plugin-commonjs": "^21.0.1",
102
    "@rollup/plugin-node-resolve": "^13.0.6",
103
    "autoprefixer": "^10.4.0",
104
    "babel-plugin-istanbul": "^6.1.1",
105
    "bundlewatch": "^0.3.2",
106
    "clean-css-cli": "^5.4.2",
107
    "cross-env": "^7.0.3",
108
    "eslint": "^8.1.0",
109
    "eslint-config-xo": "^0.39.0",
110
    "eslint-plugin-import": "^2.25.2",
111
    "eslint-plugin-qunit": "^7.0.0",
112
    "eslint-plugin-unicorn": "^37.0.1",
113
    "find-unused-sass-variables": "^3.1.0",
114
    "glob": "^7.2.0",
115
    "globby": "^11.0.4",
116
    "hammer-simulator": "0.0.1",
117
    "hugo-bin": "^0.76.1",
118
    "ip": "^1.1.5",
119
    "jquery": "3.5.1",
120
    "karma": "^6.3.6",
121
    "karma-browserstack-launcher": "1.4.0",
122
    "karma-chrome-launcher": "^3.1.0",
123
    "karma-coverage-istanbul-reporter": "^3.0.3",
124
    "karma-detect-browsers": "^2.3.3",
125
    "karma-firefox-launcher": "^2.1.1",
126
    "karma-qunit": "^4.1.2",
127
    "karma-sinon": "^1.0.5",
128
    "linkinator": "^2.14.4",
129
    "lockfile-lint": "^4.6.2",
130
    "node-sass": "^6.0.1",
131
    "nodemon": "^2.0.14",
132
    "npm-run-all": "^4.1.5",
133
    "popper.js": "^1.16.1",
134
    "postcss": "^8.3.11",
135
    "postcss-cli": "^9.0.1",
136
    "qunit": "^2.17.2",
137
    "rollup": "^2.58.3",
138
    "shelljs": "^0.8.4",
139
    "sinon": "^7.5.0",
140
    "stylelint": "^13.13.1",
141
    "stylelint-config-twbs-bootstrap": "^2.2.4",
142
    "terser": "^5.9.0",
143
    "vnu-jar": "21.10.12"
144
  },
145
  "files": [
146
    "dist/{css,js}/*.{css,js,map}",
147
    "js/{src,dist}/**/*.{js,map}",
148
    "scss/**/*.scss"
149
  ],
150
  "hugo-bin": {
151
    "buildTags": "extended"
152
  },
153
  "jspm": {
154
    "registry": "npm",
155
    "main": "js/bootstrap",
156
    "directories": {
157
      "lib": "dist"
158
    },
159
    "shim": {
160
      "js/bootstrap": {
161
        "deps": [
162
          "jquery",
163
          "popper.js"
164
        ],
165
        "exports": "$"
166
      }
167
    },
168
    "dependencies": {},
169
    "peerDependencies": {
170
      "jquery": "1.9.1 - 3",
171
      "popper.js": "^1.16.1"
172
    }
173
  }
174
}
175

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.