Skip to content

Commit e70ad4a

Browse files
Paul LeclercqPaul Leclercq
authored andcommitted
bower components
1 parent 69838cb commit e70ad4a

File tree

255 files changed

+64708
-0
lines changed

Some content is hidden

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

255 files changed

+64708
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "angular-mocks",
3+
"version": "1.3.13",
4+
"description": "AngularJS mocks for testing",
5+
"main": "angular-mocks.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/angular/angular.js.git"
12+
},
13+
"keywords": [
14+
"angular",
15+
"framework",
16+
"browser",
17+
"mocks",
18+
"testing",
19+
"client-side"
20+
],
21+
"author": "Angular Core Team <[email protected]>",
22+
"license": "MIT",
23+
"bugs": {
24+
"url": "https://github.com/angular/angular.js/issues"
25+
},
26+
"homepage": "http://angularjs.org"
27+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "angular-scenario",
3+
"version": "1.3.13",
4+
"description": "AngularJS module for end-to-end testing",
5+
"main": "angular-scenario.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/angular/angular.js.git"
12+
},
13+
"keywords": [
14+
"angular",
15+
"framework",
16+
"browser",
17+
"testing",
18+
"client-side"
19+
],
20+
"author": "Angular Core Team <[email protected]>",
21+
"license": "MIT",
22+
"bugs": {
23+
"url": "https://github.com/angular/angular.js/issues"
24+
},
25+
"homepage": "http://angularjs.org"
26+
}

bower_components/angular/README.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# packaged angular
2+
3+
This repo is for distribution on `npm` and `bower`. The source for this module is in the
4+
[main AngularJS repo](https://github.com/angular/angular.js).
5+
Please file issues and pull requests against that repo.
6+
7+
## Install
8+
9+
You can install this package either with `npm` or with `bower`.
10+
11+
### npm
12+
13+
```shell
14+
npm install angular
15+
```
16+
17+
Then add a `<script>` to your `index.html`:
18+
19+
```html
20+
<script src="/node_modules/angular/angular.js"></script>
21+
```
22+
23+
Note that this package is not in CommonJS format, so doing `require('angular')` will return `undefined`.
24+
If you're using [Browserify](https://github.com/substack/node-browserify), you can use
25+
[exposify](https://github.com/thlorenz/exposify) to have `require('angular')` return the `angular`
26+
global.
27+
28+
### bower
29+
30+
```shell
31+
bower install angular
32+
```
33+
34+
Then add a `<script>` to your `index.html`:
35+
36+
```html
37+
<script src="/bower_components/angular/angular.js"></script>
38+
```
39+
40+
## Documentation
41+
42+
Documentation is available on the
43+
[AngularJS docs site](http://docs.angularjs.org/).
44+
45+
## License
46+
47+
The MIT License
48+
49+
Copyright (c) 2010-2012 Google, Inc. http://angularjs.org
50+
51+
Permission is hereby granted, free of charge, to any person obtaining a copy
52+
of this software and associated documentation files (the "Software"), to deal
53+
in the Software without restriction, including without limitation the rights
54+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
55+
copies of the Software, and to permit persons to whom the Software is
56+
furnished to do so, subject to the following conditions:
57+
58+
The above copyright notice and this permission notice shall be included in
59+
all copies or substantial portions of the Software.
60+
61+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
62+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
63+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
64+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
65+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
66+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
67+
THE SOFTWARE.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/* Include this file in your html if you are using the CSP mode. */
2+
3+
@charset "UTF-8";
4+
5+
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak],
6+
.ng-cloak, .x-ng-cloak,
7+
.ng-hide:not(.ng-hide-animate) {
8+
display: none !important;
9+
}
10+
11+
ng\:form {
12+
display: block;
13+
}
48.8 KB
Binary file not shown.

bower_components/angular/package.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "angular",
3+
"version": "1.3.13",
4+
"description": "HTML enhanced for web apps",
5+
"main": "angular.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/angular/angular.js.git"
12+
},
13+
"keywords": [
14+
"angular",
15+
"framework",
16+
"browser",
17+
"client-side"
18+
],
19+
"author": "Angular Core Team <[email protected]>",
20+
"license": "MIT",
21+
"bugs": {
22+
"url": "https://github.com/angular/angular.js/issues"
23+
},
24+
"homepage": "http://angularjs.org"
25+
}
Lines changed: 151 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>{{title}}</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta name="description" content="">
8+
<meta name="author" content="">
9+
10+
<!-- Le styles -->
11+
<link href="assets/css/bootstrap.css" rel="stylesheet">
12+
<link href="assets/css/bootstrap-responsive.css" rel="stylesheet">
13+
<link href="assets/css/docs.css" rel="stylesheet">
14+
<link href="assets/js/google-code-prettify/prettify.css" rel="stylesheet">
15+
16+
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
17+
<!--[if lt IE 9]>
18+
<script src="assets/js/html5shiv.js"></script>
19+
<![endif]-->
20+
21+
<!-- Le fav and touch icons -->
22+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/ico/apple-touch-icon-144-precomposed.png">
23+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png">
24+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png">
25+
<link rel="apple-touch-icon-precomposed" href="assets/ico/apple-touch-icon-57-precomposed.png">
26+
<link rel="shortcut icon" href="assets/ico/favicon.png">
27+
28+
{{#production}}
29+
<script type="text/javascript">
30+
var _gaq = _gaq || [];
31+
_gaq.push(['_setAccount', 'UA-146052-10']);
32+
_gaq.push(['_trackPageview']);
33+
(function() {
34+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
35+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
36+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
37+
})();
38+
</script>
39+
{{/production}}
40+
</head>
41+
42+
<body data-spy="scroll" data-target=".bs-docs-sidebar">
43+
44+
<!-- Navbar
45+
================================================== -->
46+
<div class="navbar navbar-inverse navbar-fixed-top">
47+
<div class="navbar-inner">
48+
<div class="container">
49+
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
50+
<span class="icon-bar"></span>
51+
<span class="icon-bar"></span>
52+
<span class="icon-bar"></span>
53+
</button>
54+
<a class="brand" href="./index.html">Bootstrap</a>
55+
<div class="nav-collapse collapse">
56+
<ul class="nav">
57+
<li class="{{index}}">
58+
<a href="./index.html">{{_i}}Home{{/i}}</a>
59+
</li>
60+
<li class="{{getting-started}}">
61+
<a href="./getting-started.html">{{_i}}Get started{{/i}}</a>
62+
</li>
63+
<li class="{{scaffolding}}">
64+
<a href="./scaffolding.html">{{_i}}Scaffolding{{/i}}</a>
65+
</li>
66+
<li class="{{base-css}}">
67+
<a href="./base-css.html">{{_i}}Base CSS{{/i}}</a>
68+
</li>
69+
<li class="{{components}}">
70+
<a href="./components.html">{{_i}}Components{{/i}}</a>
71+
</li>
72+
<li class="{{javascript}}">
73+
<a href="./javascript.html">{{_i}}JavaScript{{/i}}</a>
74+
</li>
75+
<li class="{{customize}}">
76+
<a href="./customize.html">{{_i}}Customize{{/i}}</a>
77+
</li>
78+
</ul>
79+
</div>
80+
</div>
81+
</div>
82+
</div>
83+
84+
{{>body}}
85+
86+
87+
88+
<!-- Footer
89+
================================================== -->
90+
<footer class="footer">
91+
<div class="container">
92+
<p>{{_i}}Designed and built with all the love in the world by <a href="http://twitter.com/mdo" target="_blank">@mdo</a> and <a href="http://twitter.com/fat" target="_blank">@fat</a>.{{/i}}</p>
93+
<p>{{_i}}Code licensed under <a href="http://www.apache.org/licenses/LICENSE-2.0" target="_blank">Apache License v2.0</a>, documentation under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.{{/i}}</p>
94+
<p>{{_i}}<a href="http://glyphicons.com">Glyphicons Free</a> licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.{{/i}}</p>
95+
<ul class="footer-links">
96+
<li><a href="http://blog.getbootstrap.com">{{_i}}Blog{{/i}}</a></li>
97+
<li class="muted">&middot;</li>
98+
<li><a href="https://github.com/twbs/bootstrap/issues?state=open">{{_i}}Issues{{/i}}</a></li>
99+
<li class="muted">&middot;</li>
100+
<li><a href="https://github.com/twbs/bootstrap/releases">{{_i}}Changelog{{/i}}</a></li>
101+
</ul>
102+
</div>
103+
</footer>
104+
105+
106+
107+
<!-- Le javascript
108+
================================================== -->
109+
<!-- Placed at the end of the document so the pages load faster -->
110+
<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
111+
<script src="assets/js/jquery.js"></script>
112+
<script src="assets/js/bootstrap-transition.js"></script>
113+
<script src="assets/js/bootstrap-alert.js"></script>
114+
<script src="assets/js/bootstrap-modal.js"></script>
115+
<script src="assets/js/bootstrap-dropdown.js"></script>
116+
<script src="assets/js/bootstrap-scrollspy.js"></script>
117+
<script src="assets/js/bootstrap-tab.js"></script>
118+
<script src="assets/js/bootstrap-tooltip.js"></script>
119+
<script src="assets/js/bootstrap-popover.js"></script>
120+
<script src="assets/js/bootstrap-button.js"></script>
121+
<script src="assets/js/bootstrap-collapse.js"></script>
122+
<script src="assets/js/bootstrap-carousel.js"></script>
123+
<script src="assets/js/bootstrap-typeahead.js"></script>
124+
<script src="assets/js/bootstrap-affix.js"></script>
125+
126+
<script src="assets/js/holder/holder.js"></script>
127+
<script src="assets/js/google-code-prettify/prettify.js"></script>
128+
129+
<script src="assets/js/application.js"></script>
130+
131+
132+
{{#production}}
133+
<!-- Analytics
134+
================================================== -->
135+
<script>
136+
var _gauges = _gauges || [];
137+
(function() {
138+
var t = document.createElement('script');
139+
t.type = 'text/javascript';
140+
t.async = true;
141+
t.id = 'gauges-tracker';
142+
t.setAttribute('data-site-id', '4f0dc9fef5a1f55508000013');
143+
t.src = '//secure.gaug.es/track.js';
144+
var s = document.getElementsByTagName('script')[0];
145+
s.parentNode.insertBefore(t, s);
146+
})();
147+
</script>
148+
{{/production}}
149+
150+
</body>
151+
</html>
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{
2+
"name": "humanize-duration",
3+
"authors": [
4+
"Evan Hahn <[email protected]> (http://evanhahn.com)",
5+
"Martin Prins (https://github.com/magarcia)",
6+
"Filipi Siqueira (https://github.com/filipi777)",
7+
"Peter Rekdal Sunde (https://github.com/peters)",
8+
"Michał Janiec (https://github.com/mjjaniec)",
9+
"Eileen Li (https://github.com/eileen3)"
10+
],
11+
"version": "2.4.0",
12+
"description": "Convert millisecond durations to English and many other languages.",
13+
"main": "humanize-duration.js",
14+
"homepage": "https://github.com/EvanHahn/HumanizeDuration.js",
15+
"keywords": [
16+
"humanize",
17+
"duration",
18+
"time",
19+
"hours",
20+
"minutes",
21+
"seconds",
22+
"days",
23+
"years",
24+
"months",
25+
"english",
26+
"spanish",
27+
"french",
28+
"catalan",
29+
"portuguese",
30+
"korean",
31+
"norwegian",
32+
"german",
33+
"danish",
34+
"russian",
35+
"turkish"
36+
],
37+
"license": "WTFPL",
38+
"ignore": [
39+
"**/.*",
40+
"node_modules",
41+
"bower_components",
42+
"test",
43+
"tests"
44+
],
45+
"repository": {
46+
"type": "git",
47+
"url": "git://github.com/EvanHahn/HumanizeDuration.js.git"
48+
},
49+
"_release": "2.4.0",
50+
"_resolution": {
51+
"type": "version",
52+
"tag": "v2.4.0",
53+
"commit": "b6bdee5c060155258a66219dbe45bd7e689a98ce"
54+
},
55+
"_source": "git://github.com/EvanHahn/HumanizeDuration.js.git",
56+
"_target": "~2.4.0",
57+
"_originalSource": "humanize-duration",
58+
"_direct": true
59+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
How to contribute
2+
=================
3+
4+
1. Fork the repo.
5+
1. Clone the repo.
6+
1. Run `npm install`.
7+
1. Make your changes. Please add tests! If adding a new language, define some tests in *test/definitions*.
8+
1. Make sure `npm test` doesn't have any errors.
9+
1. Make sure `npm run hint` doesn't give any JSHint errors.
10+
1. Submit your pull request!
11+
12+
Thanks so much.

0 commit comments

Comments
 (0)