Skip to content

Commit 92b2916

Browse files
committed
adding bower_components and node_modules.
1 parent 7b950c2 commit 92b2916

File tree

12,258 files changed

+1775175
-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.

12,258 files changed

+1775175
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "angular-animate",
3+
"version": "1.7.3",
4+
"license": "MIT",
5+
"main": "./angular-animate.js",
6+
"ignore": [],
7+
"dependencies": {
8+
"angular": "1.7.3"
9+
},
10+
"homepage": "https://github.com/angular/bower-angular-animate",
11+
"_release": "1.7.3",
12+
"_resolution": {
13+
"type": "version",
14+
"tag": "v1.7.3",
15+
"commit": "730f99a93d959771d40f4893d5f7279f4c79b7cc"
16+
},
17+
"_source": "https://github.com/angular/bower-angular-animate.git",
18+
"_target": "^1.7.2",
19+
"_originalSource": "angular-animate"
20+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Angular
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# packaged angular-animate
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/tree/master/src/ngAnimate).
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-animate
15+
```
16+
17+
Then add `ngAnimate` as a dependency for your app:
18+
19+
```javascript
20+
angular.module('myApp', [require('angular-animate')]);
21+
```
22+
23+
### bower
24+
25+
```shell
26+
bower install angular-animate
27+
```
28+
29+
Then add a `<script>` to your `index.html`:
30+
31+
```html
32+
<script src="/bower_components/angular-animate/angular-animate.js"></script>
33+
```
34+
35+
Then add `ngAnimate` as a dependency for your app:
36+
37+
```javascript
38+
angular.module('myApp', ['ngAnimate']);
39+
```
40+
41+
## Documentation
42+
43+
Documentation is available on the
44+
[AngularJS docs site](http://docs.angularjs.org/api/ngAnimate).
45+
46+
## License
47+
48+
The MIT License
49+
50+
Copyright (c) 2010-2015 Google, Inc. http://angularjs.org
51+
52+
Permission is hereby granted, free of charge, to any person obtaining a copy
53+
of this software and associated documentation files (the "Software"), to deal
54+
in the Software without restriction, including without limitation the rights
55+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
56+
copies of the Software, and to permit persons to whom the Software is
57+
furnished to do so, subject to the following conditions:
58+
59+
The above copyright notice and this permission notice shall be included in
60+
all copies or substantial portions of the Software.
61+
62+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
63+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
64+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
65+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
66+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
67+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
68+
THE SOFTWARE.

0 commit comments

Comments
 (0)