Skip to content

Commit

Permalink
Prepared for open source:
Browse files Browse the repository at this point in the history
- updated dependencies
- added readme
  • Loading branch information
Jonathan Raoult committed Sep 27, 2015
1 parent 11f3b82 commit 7eadc46
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 19 deletions.
3 changes: 2 additions & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"nonew": true,
"forin": true,
"devel": true,
"indent": 2
"indent": 2,
"esnext": true
}
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# mixtube-playback
`mixtube-playback` is the main library behind [Mixtube](https://github.com/jraoult/mixtube). It handles the content
sequencing and the mixing.

## Getting started
Unit tests are run by Karma when executing `npm test`. Integration tests can be run by visiting the page
served when executing `npm serve`.
39 changes: 21 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,29 @@
"version": "1.0.0-alpha.8",
"main": "./src/main/playback",
"dependencies": {
"lodash": "^3.0.1",
"shifty": "^1.3.5"
"lodash": "^3.10.1",
"shifty": "^1.5.1"
},
"devDependencies": {
"browser-sync": "^2.2.1",
"browserify": "^9.0.3",
"gulp": "^3.8.10",
"gulp-jshint": "^1.9.0",
"gulp-util": "^3.0.1",
"gulp-watch": "^4.1.0",
"jasmine-core": "^2.1.3",
"jshint-stylish": "^1.0.0",
"karma": "^0.12.28",
"karma-browserify": "^4.0.0",
"karma-chrome-launcher": "^0.1.7",
"karma-firefox-launcher": "^0.1.4",
"karma-jasmine": "^0.3.3",
"lodash": "^3.0.1",
"vinyl-source-stream": "^1.0.0",
"watchify": "^2.1.1"
"browser-sync": "^2.9.6",
"browserify": "^11.2.0",
"gulp": "^3.9.0",
"gulp-jshint": "^1.11.2",
"gulp-util": "^3.0.6",
"gulp-watch": "^4.3.5",
"jasmine-core": "^2.3.4",
"jshint-stylish": "^2.0.1",
"karma": "^0.13.10",
"karma-browserify": "^4.3.0",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^0.3.6",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.4.0"
},
"scripts": {
"test": "./node_modules/karma/bin/karma start",
"serve": "gulp serve"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 7eadc46

Please sign in to comment.