angular-motion
Advanced tools
Comparing version 0.3.4 to 0.4.0
{ | ||
"name": "angular-motion", | ||
"description": "AngularMotion - Fancy CSS3 animations for AngularJS 1.2+", | ||
"version": "0.3.2", | ||
"version": "0.4.0", | ||
"keywords": [ | ||
@@ -22,3 +22,4 @@ "angular", | ||
{ | ||
"type": "MIT" | ||
"type": "MIT", | ||
"url": "https://github.com/mgcrea/bootstrap-additions/blob/master/LICENSE.md" | ||
} | ||
@@ -34,12 +35,7 @@ ], | ||
], | ||
"dependencies": { | ||
"angular": "^1.2", | ||
"angular-animate": "^1.2" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"bootstrap": "^3.0", | ||
"angular-mocks": "^1.2", | ||
"angular-strap": "^2.0", | ||
"fastclick": "~1.0.3" | ||
"angular-animate": "^1.2", | ||
"bootstrap": "^3.3.4" | ||
} | ||
} |
{ | ||
"name": "angular-motion", | ||
"description": "AngularMotion - Fancy CSS3 animations for AngularJS 1.2+", | ||
"version": "0.3.4", | ||
"version": "0.4.0", | ||
"keywords": [ | ||
@@ -22,3 +22,4 @@ "angular", | ||
{ | ||
"type": "MIT" | ||
"type": "MIT", | ||
"url": "https://github.com/mgcrea/bootstrap-additions/blob/master/LICENSE.md" | ||
} | ||
@@ -28,32 +29,14 @@ ], | ||
"devDependencies": { | ||
"grunt": "~0.4.5", | ||
"grunt-angular-templates": "~0.5.5", | ||
"grunt-autoprefixer": "~0.7.6", | ||
"grunt-concurrent": "~0.5.0", | ||
"grunt-contrib-clean": "~0.5.0", | ||
"grunt-contrib-concat": "~0.4.0", | ||
"grunt-contrib-connect": "~0.8.0", | ||
"grunt-contrib-copy": "~0.5.0", | ||
"grunt-contrib-cssmin": "~0.10.0", | ||
"grunt-contrib-htmlmin": "~0.3.0", | ||
"grunt-contrib-jshint": "~0.10.0", | ||
"grunt-contrib-less": "~0.11.3", | ||
"grunt-contrib-uglify": "~0.5.0", | ||
"grunt-contrib-watch": "~0.6.1", | ||
"grunt-karma": "~0.8.3", | ||
"grunt-newer": "~0.7.0", | ||
"grunt-nginclude": "~0.4.1", | ||
"grunt-ngmin": "0.0.3", | ||
"grunt-rev": "~0.1.0", | ||
"grunt-usemin": "~2.2.0", | ||
"jshint-stylish": "~0.2.0", | ||
"karma-coverage": "~0.2.4", | ||
"load-grunt-tasks": "~0.6.0" | ||
"del": "^1.2.0", | ||
"factory-angular-channels": "^0.7.1", | ||
"gulp": "gulpjs/gulp#4.0", | ||
"ng-factory": "^1.0", | ||
"undertaker-lib-tasks": "^0.3.1" | ||
}, | ||
"engines": { | ||
"node": ">=0.8.0" | ||
"node": "^0.10" | ||
}, | ||
"scripts": { | ||
"test": "grunt test" | ||
"test": "gulp build" | ||
} | ||
} |
@@ -1,3 +0,5 @@ | ||
# [AngularMotion](http://mgcrea.github.io/angular-motion) [![Build Status](https://secure.travis-ci.org/mgcrea/angular-motion.svg?branch=master)](http://travis-ci.org/#!/mgcrea/angular-motion) [![devDependency Status](https://david-dm.org/mgcrea/angular-motion/dev-status.svg)](https://david-dm.org/mgcrea/angular-motion#info=devDependencies) | ||
# [AngularMotion](http://mgcrea.github.io/angular-motion) | ||
[![Bower Version](http://img.shields.io/bower/v/angular-motion.svg?style=flat)](https://github.com/mgcrea/angular-motion/releases) [![Build Status](http://img.shields.io/travis/mgcrea/angular-motion/master.svg?style=flat)](http://travis-ci.org/mgcrea/angular-motion) [![devDependency Status](http://img.shields.io/david/dev/mgcrea/angular-motion.svg?style=flat)](https://david-dm.org/mgcrea/angular-motion#info=devDependencies) | ||
[![Banner](http://mgcrea.github.io/angular-motion/images/snippet.png)](http://mgcrea.github.io/angular-motion) | ||
@@ -15,12 +17,25 @@ | ||
## Communication | ||
- If you **need help**, use [Stack Overflow](http://stackoverflow.com/questions/tagged/angular-strap). | ||
- If you'd like to **ask a general question**, use [Stack Overflow](http://stackoverflow.com/questions/tagged/angular-strap). | ||
- If you **found a bug**, open an issue. | ||
- If you **have a feature request**, open an issue. | ||
- If you **want to contribute**, submit a pull request. | ||
## Quick start | ||
+ Include the required libraries (cdn/local) | ||
+ Install AngularMotion with [Bower](https://github.com/bower/bower). | ||
> | ||
```bash | ||
$ bower install angular-motion --save | ||
``` | ||
+ Include the required libraries is your `index.html`: | ||
> | ||
``` html | ||
<link rel="stylesheet" href="//rawgithub.com/mgcrea/angular-motion/master/dist/angular-motion.min.css"> | ||
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.9/angular.min.js"></script> | ||
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.9/angular-animate.min.js"></script> | ||
<link rel="stylesheet" href="bower_components/angular-motion/dist/angular-motion.min.css"> | ||
``` | ||
@@ -31,3 +46,3 @@ | ||
> | ||
``` javascript | ||
``` js | ||
angular.module('myApp', ['ngAnimate']); | ||
@@ -41,21 +56,17 @@ ``` | ||
AngularMotion is tested with `karma` against the latest stable release of AngularJS. | ||
You can build the latest version using `gulp`. | ||
> | ||
$ npm install grunt-cli --global | ||
$ npm install --dev | ||
$ grunt test | ||
```bash | ||
$ gulp build | ||
``` | ||
You can build the latest version using `grunt`. | ||
> | ||
$ grunt build | ||
You can quickly hack around (the docs) with: | ||
> | ||
$ grunt serve | ||
```bash | ||
$ gulp serve | ||
``` | ||
## Contributing | ||
@@ -66,3 +77,2 @@ | ||
## Authors | ||
@@ -76,25 +86,26 @@ | ||
## Copyright and license | ||
The MIT License | ||
``` | ||
The MIT License | ||
Copyright (c) 2012 Olivier Louvignes | ||
Copyright (c) 2014 - 2015 Olivier Louvignes | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
``` |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
182219
5
47
107
2450