diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 12:38:42 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 12:38:42 +0000 |
commit | c3ca98e1b35123f226c7f4c596b5dee78caa4223 (patch) | |
tree | 9b6eb109283da55e7d9064baa9fac795a40264cb /vendor/components/jquery | |
parent | Initial commit. (diff) | |
download | icinga-php-thirdparty-c3ca98e1b35123f226c7f4c596b5dee78caa4223.tar.xz icinga-php-thirdparty-c3ca98e1b35123f226c7f4c596b5dee78caa4223.zip |
Adding upstream version 0.11.0.upstream/0.11.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | vendor/components/jquery/bower.json | 16 | ||||
-rw-r--r-- | vendor/components/jquery/component.json | 22 | ||||
-rw-r--r-- | vendor/components/jquery/composer.json | 34 | ||||
-rw-r--r-- | vendor/components/jquery/package.json | 33 |
4 files changed, 105 insertions, 0 deletions
diff --git a/vendor/components/jquery/bower.json b/vendor/components/jquery/bower.json new file mode 100644 index 0000000..2f0e2e1 --- /dev/null +++ b/vendor/components/jquery/bower.json @@ -0,0 +1,16 @@ +{ + "name": "jquery", + "version": "3.5.1", + "description": "jQuery component", + "license": "MIT", + "keywords": [ + "jquery", + "component" + ], + "main": "jquery.js", + "ignore": [ + "component.json", + "package.json", + "composer.json" + ] +} diff --git a/vendor/components/jquery/component.json b/vendor/components/jquery/component.json new file mode 100644 index 0000000..0fa35fd --- /dev/null +++ b/vendor/components/jquery/component.json @@ -0,0 +1,22 @@ +{ + "name": "jquery", + "repo": "components/jquery", + "version": "3.5.1", + "description": "jQuery component", + "license": "MIT", + "keywords": [ + "jquery", + "component" + ], + "main": "jquery.js", + "scripts": [ + "jquery.js", + "jquery.min.js", + "jquery.slim.js", + "jquery.slim.min.js" + ], + "files": [ + "jquery.min.map", + "jquery.slim.min.map" + ] +} diff --git a/vendor/components/jquery/composer.json b/vendor/components/jquery/composer.json new file mode 100644 index 0000000..8a779ad --- /dev/null +++ b/vendor/components/jquery/composer.json @@ -0,0 +1,34 @@ +{ + "name": "components/jquery", + "description": "jQuery JavaScript Library", + "type": "component", + "homepage": "http://jquery.com", + "license": "MIT", + "support": { + "irc": "irc://irc.freenode.org/jquery", + "issues": "https://github.com/jquery/jquery/issues", + "forum": "http://forum.jquery.com", + "wiki": "http://docs.jquery.com/", + "source": "https://github.com/jquery/jquery" + }, + "authors": [ + { + "name": "JS Foundation and other contributors", + "url": "https://github.com/jquery/jquery/blob/master/AUTHORS.txt" + } + ], + "extra": { + "component": { + "scripts": [ + "jquery.js" + ], + "files": [ + "jquery.min.js", + "jquery.min.map", + "jquery.slim.js", + "jquery.slim.min.js", + "jquery.slim.min.map" + ] + } + } +} diff --git a/vendor/components/jquery/package.json b/vendor/components/jquery/package.json new file mode 100644 index 0000000..f9385dc --- /dev/null +++ b/vendor/components/jquery/package.json @@ -0,0 +1,33 @@ +{ + "name": "jquery", + "description": "JavaScript library for DOM operations", + "version": "3.5.1", + "homepage": "http://jquery.com", + "author": { + "name": "jQuery Foundation and other contributors", + "url": "https://github.com/jquery/jquery/blob/master/AUTHORS.txt" + }, + "repository": { + "type": "git", + "url": "https://github.com/jquery/jquery.git" + }, + "keywords": [ + "jquery", + "javascript", + "browser", + "library" + ], + "bugs": { + "url": "https://github.com/jquery/jquery/issues" + }, + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/jquery/jquery/blob/master/LICENSE.txt" + } + ], + "spm": { + "main": "jquery.js" + } +} + |