Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ which completes it's tween in a given amount of frames (stretched over the
duration of the animation) and `Khan.Loop` which executes a given amount of frames
over and over.

## Contributing
1. Fork the Repo
2. Install everything with `npm install`
3. Run `grunt test` to run the test suite
4. Make a new branch, test, pull request, you know the drill

## Contributors

[Stephen Prater](https://github.com/stephenprater)
Expand Down
14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,21 @@
"test": "test"
},
"devDependencies": {
"bower": "~1.3.12",
"chai": "~1.9.1",
"coffee-script": "*",
"grunt": "*",
"grunt-cli": "*",
"grunt-contrib-coffee": "*",
"grunt-contrib-uglify": "*",
"grunt-contrib-copy": "*",
"jsdom": "*",
"coffee-script": "*",
"grunt-contrib-uglify": "*",
"grunt-mocha-test": "~0.10.2",
"sinon": "~1.9.1",
"chai": "~1.9.1"
"jsdom": "*",
"sinon": "~1.9.1"
},
"scripts": {
"test": "grunt test"
"test": "grunt test",
"postinstall": "./node_modules/bower/bin/bower install"
},
"repository": {
"type": "git",
Expand Down