Skip to content

Commit

Permalink
Add Bower Support
Browse files Browse the repository at this point in the history
  • Loading branch information
tjdavey committed Oct 15, 2015
1 parent d7e6d2c commit 9df5084
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 1 deletion.
Binary file modified .DS_Store
Binary file not shown.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,31 @@
A lightweight library of for easing based on Penner's easing equations.

[![npm version](https://badge.fury.io/js/easement.js.svg)](https://www.npmjs.com/package/easement.js)
[![Build Status](https://travis-ci.org/tjdavey/easement.js.svg)](https://travis-ci.org/tjdavey/easement.js)
[![Coverage Status](https://coveralls.io/repos/tjdavey/easement.js/badge.svg?branch=master&service=github)](https://coveralls.io/github/tjdavey/easement.js?branch=master)

## Installation

### NPM

npm install easement.js

### Bower

bower install easement.js

## Documentation

For information on using easement.js, the included easing functions and writing custom easing functions see [the documentation page!](http://tjdavey.github.io/easement.js/)

## Basic Usage

Easement.ease('easeInCirc', 100, {startTime: 75, endTime: 130, startValue: 21, endValue: 32});
Easement.ease('easeInCirc', 100, {
startTime: 75,
endTime: 130,
startValue: 21,
endValue: 32
});

## Contributions

Expand Down
27 changes: 27 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "easement.js",
"main": "easement.js",
"version": "1.0.0",
"homepage": "http://tjdavey.github.io/easement.js/",
"authors": [
"Tristan Davey <tristan@tristandavey.com>"
],
"description": "A lightweight library of for easing based on Penner's easing equations.",
"keywords": [
"easement",
"easing",
"ease",
"easeIn",
"easeOut",
"penner",
"animation"
],
"license": "BSD",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}

0 comments on commit 9df5084

Please sign in to comment.