Initial commit

This commit is contained in:
Avi Ginsberg
2015-01-23 14:05:12 -05:00
commit 835b7b3f0d
26 changed files with 17821 additions and 0 deletions

3
js/jquery/.gitignore vendored Executable file
View File

@@ -0,0 +1,3 @@
build
jquery-migrate.js
jquery-migrate.min.js

4
js/jquery/README.md Executable file
View File

@@ -0,0 +1,4 @@
jQuery Component
================
Shim repository for jQuery.

13
js/jquery/bower.json Executable file
View File

@@ -0,0 +1,13 @@
{
"name": "jquery",
"version": "2.0.0",
"description": "jQuery component",
"keywords": [
"jquery",
"component"
],
"scripts": [
"jquery.js"
],
"license": "MIT"
}

21
js/jquery/component.json Executable file
View File

@@ -0,0 +1,21 @@
{
"name": "jquery",
"version": "2.0.0",
"description": "jQuery component",
"keywords": [
"jquery",
"component"
],
"scripts": [
"jquery.js"
],
"license": "MIT",
"gitHead": "46f8412bd1bb9b1b30b5b0eb88560e2d4196509c",
"readme": "jQuery Component\n================\n\nShim repository for jQuery.\n",
"readmeFilename": "README.md",
"_id": "jquery@2.0.0",
"repository": {
"type": "git",
"url": "git://github.com/components/jquery.git"
}
}

30
js/jquery/composer.json Executable file
View File

@@ -0,0 +1,30 @@
{
"name": "components/jquery",
"description": "jQuery JavaScript Library",
"type": "component",
"homepage": "http://jquery.com",
"license": "MIT",
"support": {
"irc": "irc://irc.freenode.org/jquery",
"issues": "http://bugs.jquery.com",
"forum": "http://forum.jquery.com",
"wiki": "http://docs.jquery.com/",
"source": "https://github.com/jquery/jquery"
},
"authors": [
{
"name": "John Resig",
"email": "jeresig@gmail.com"
}
],
"require": {
"robloach/component-installer": "*"
},
"extra": {
"component": {
"scripts": [
"jquery.js"
]
}
}
}

8755
js/jquery/jquery.js vendored Executable file

File diff suppressed because it is too large Load Diff

6
js/jquery/jquery.min.js vendored Executable file

File diff suppressed because one or more lines are too long

7
js/jquery/package.json Executable file
View File

@@ -0,0 +1,7 @@
{
"name": "components-jquery",
"version": "2.0.0",
"description": "jQuery component",
"keywords": ["jquery"],
"main": "./jquery.js"
}