1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-09 23:26:40 +02:00

package.json: add GitHub Sponsors and reorder properties (#35451)

This commit is contained in:
XhmikosR
2022-02-07 10:15:17 +02:00
committed by GitHub
parent 96c67a7ff7
commit 77e02a07c7

View File

@@ -19,6 +19,28 @@
"contributors": [ "contributors": [
"Twitter, Inc." "Twitter, Inc."
], ],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/twbs/bootstrap.git"
},
"bugs": {
"url": "https://github.com/twbs/bootstrap/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/twbs"
},
{
"type": "opencollective",
"url": "https://opencollective.com/bootstrap"
}
],
"main": "dist/js/bootstrap.js",
"module": "dist/js/bootstrap.esm.js",
"sass": "scss/bootstrap.scss",
"style": "dist/css/bootstrap.css",
"scripts": { "scripts": {
"start": "npm-run-all --parallel watch docs-serve", "start": "npm-run-all --parallel watch docs-serve",
"bundlewatch": "bundlewatch --config .bundlewatch.config.json", "bundlewatch": "bundlewatch --config .bundlewatch.config.json",
@@ -78,22 +100,6 @@
"watch-js-main": "nodemon --watch js/src/ --ext js --exec \"npm-run-all js-lint js-compile\"", "watch-js-main": "nodemon --watch js/src/ --ext js --exec \"npm-run-all js-lint js-compile\"",
"watch-js-docs": "nodemon --watch site/assets/js/ --ext js --exec \"npm run js-lint\"" "watch-js-docs": "nodemon --watch site/assets/js/ --ext js --exec \"npm run js-lint\""
}, },
"style": "dist/css/bootstrap.css",
"sass": "scss/bootstrap.scss",
"main": "dist/js/bootstrap.js",
"module": "dist/js/bootstrap.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/twbs/bootstrap.git"
},
"bugs": {
"url": "https://github.com/twbs/bootstrap/issues"
},
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/bootstrap"
},
"peerDependencies": { "peerDependencies": {
"@popperjs/core": "^2.11.2" "@popperjs/core": "^2.11.2"
}, },