Skip to content

Commit 6d69300

Browse files
committed
renamed and moved
1 parent 76591ec commit 6d69300

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+19268
-52
lines changed

.bowerrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{ "directory" : "components" }

.gitignore

-28
This file was deleted.

LICENSE

-22
This file was deleted.

README.md

-2
This file was deleted.

bower.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "voltron",
3+
"version": "0.0.0",
4+
"authors": [
5+
"Jason Strimpel <[email protected]>"
6+
],
7+
"description": "component base class",
8+
"main": "./voltron.js",
9+
"moduleType": [
10+
"globals"
11+
],
12+
"keywords": [
13+
"dialog"
14+
],
15+
"license": "MIT",
16+
"homepage": "https://github.com/WebComponentsBook/chapter-2_base_component",
17+
"ignore": [
18+
"**/.*",
19+
"node_modules",
20+
"bower_components",
21+
"vendor",
22+
"test",
23+
"tests"
24+
],
25+
"dependencies": {
26+
"jquery": "~2.1.1"
27+
}
28+
}

components/jquery/.bower.json

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "jquery",
3+
"version": "2.1.1",
4+
"main": "dist/jquery.js",
5+
"license": "MIT",
6+
"ignore": [
7+
"**/.*",
8+
"build",
9+
"speed",
10+
"test",
11+
"*.md",
12+
"AUTHORS.txt",
13+
"Gruntfile.js",
14+
"package.json"
15+
],
16+
"devDependencies": {
17+
"sizzle": "1.10.19",
18+
"requirejs": "2.1.10",
19+
"qunit": "1.14.0",
20+
"sinon": "1.8.1"
21+
},
22+
"keywords": [
23+
"jquery",
24+
"javascript",
25+
"library"
26+
],
27+
"homepage": "https://github.com/jquery/jquery",
28+
"_release": "2.1.1",
29+
"_resolution": {
30+
"type": "version",
31+
"tag": "2.1.1",
32+
"commit": "4dec426aa2a6cbabb1b064319ba7c272d594a688"
33+
},
34+
"_source": "git://github.com/jquery/jquery.git",
35+
"_target": "~2.1.1",
36+
"_originalSource": "jquery"
37+
}

components/jquery/MIT-LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Copyright 2014 jQuery Foundation and other contributors
2+
http://jquery.com/
3+
4+
Permission is hereby granted, free of charge, to any person obtaining
5+
a copy of this software and associated documentation files (the
6+
"Software"), to deal in the Software without restriction, including
7+
without limitation the rights to use, copy, modify, merge, publish,
8+
distribute, sublicense, and/or sell copies of the Software, and to
9+
permit persons to whom the Software is furnished to do so, subject to
10+
the following conditions:
11+
12+
The above copyright notice and this permission notice shall be
13+
included in all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

components/jquery/bower.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "jquery",
3+
"version": "2.1.1",
4+
"main": "dist/jquery.js",
5+
"license": "MIT",
6+
"ignore": [
7+
"**/.*",
8+
"build",
9+
"speed",
10+
"test",
11+
"*.md",
12+
"AUTHORS.txt",
13+
"Gruntfile.js",
14+
"package.json"
15+
],
16+
"devDependencies": {
17+
"sizzle": "1.10.19",
18+
"requirejs": "2.1.10",
19+
"qunit": "1.14.0",
20+
"sinon": "1.8.1"
21+
},
22+
"keywords": [
23+
"jquery",
24+
"javascript",
25+
"library"
26+
]
27+
}

0 commit comments

Comments
 (0)