Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2022-02-07 11:15:17 +0300
committerGitHub <noreply@github.com>2022-02-07 11:15:17 +0300
commit77e02a07c750ca14705399160e8760d6a554e41f (patch)
tree8add648f0cded08353d0674741c13681e9bca608 /package.json
parent96c67a7ff7acc590bc4b1aced56ee0290cc1b589 (diff)
package.json: add GitHub Sponsors and reorder properties (#35451)
Diffstat (limited to 'package.json')
-rw-r--r--package.json38
1 files changed, 22 insertions, 16 deletions
diff --git a/package.json b/package.json
index a21e21b72f..4d890cbd6c 100644
--- a/package.json
+++ b/package.json
@@ -19,6 +19,28 @@
"contributors": [
"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": {
"start": "npm-run-all --parallel watch docs-serve",
"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-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": {
"@popperjs/core": "^2.11.2"
},