diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 20fd86b..0000000 --- a/.travis.yml +++ /dev/null @@ -1,3 +0,0 @@ -language: node_js -node_js: - - 0.10 diff --git a/Gruntfile.js b/Gruntfile.js deleted file mode 100644 index 3261256..0000000 --- a/Gruntfile.js +++ /dev/null @@ -1,89 +0,0 @@ -/*global module:false*/ -module.exports = function(grunt) { - mainTasks = ['coffee', 'growl:coffee', 'jasmine', 'growl:jasmine', 'uglify'] - - // Project configuration. - grunt.initConfig({ - pkg: grunt.file.readJSON('package.json'), - uglify: { - dist: { - files: { - 'dist/wow.min.js': 'dist/wow.js' - } - }, - options: { - banner : '/*! <%= pkg.title %> - v<%= pkg.version %> - ' + - '<%= grunt.template.today("yyyy-mm-dd") %>\n' + - '<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' + - '* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' + - '*/', - report: 'gzip' - } - }, - coffee : { - plugin : { - files: [{ - expand: true, - cwd: 'src/', - src: '*.coffee', - dest: 'dist/', - ext: '.js' - }] - }, - specs : { - files: [{ - expand: true, - cwd: 'spec/coffeescripts/', - src: '*.coffee', - dest: 'spec/javascripts/', - ext: '.js' - }] - }, - helpers : { - files: [{ - expand: true, - cwd: 'spec/coffeescripts/helpers/', - src: '*.coffee', - dest: 'spec/javascripts/helpers/', - ext: '.js' - }] - } - }, - jasmine : { - src : ['spec/javascripts/libs/*.js', 'dist/wow.js'], - options : { - specs : 'spec/javascripts/**/*.js', - helpers : 'spec/javascripts/helpers/**/*.js' - } - }, - watch : { - files: [ - 'src/*', - 'spec/coffeescripts/**/*.coffee' - ], - tasks: mainTasks - }, - growl : { - coffee : { - title : 'CoffeeScript', - message : 'Compiled successfully' - }, - jasmine : { - title : 'Jasmine', - message : 'Tests passed successfully' - } - } - }); - - // Lib tasks. - grunt.loadNpmTasks('grunt-growl'); - grunt.loadNpmTasks('grunt-contrib-jasmine'); - grunt.loadNpmTasks('grunt-contrib-coffee'); - grunt.loadNpmTasks('grunt-contrib-watch'); - grunt.loadNpmTasks('grunt-contrib-uglify'); - - grunt.registerTask('default', mainTasks); - - // Travis CI task. - grunt.registerTask('travis', ['coffee', 'jasmine']); -}; diff --git a/bower.json b/bower.json deleted file mode 100644 index 3bf153d..0000000 --- a/bower.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "wow", - "homepage": "https://github.com/matthieua/WOW", - "authors": [ - "Matt Delac " - ], - "description": "Reveal CSS animation as you scroll down a page.", - "main": "dist/wow.js", - "keywords": [ - "scroll", - "animation", - "reveal" - ], - "license": "GPLv3", - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ] -} diff --git a/demo.html b/demo.html deleted file mode 100644 index 41eb21f..0000000 --- a/demo.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - WOW - - - - - - - -
-
-

WOW.js

-
-
-
-
-
-
-
- -
-
- - - - diff --git a/package.json b/package.json deleted file mode 100644 index f63ae2c..0000000 --- a/package.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "name" : "wowjs", - "title" : "WOW", - "version" : "1.1.3", - "description" : "", - "keywords": [], - "homepage" : "", - "author" : { - "name" : "Matt Delac", - "email" : "matt@delac.io", - "url" : "https://www.delac.io/" - }, - "main": "./dist/wow.js", - "repository" : { - "type" : "git", - "url" : "git://github.com/matthieua/WOW.git" - }, - "bugs" : { - "url" : "https://github.com/matthieua/WOW/issues" - }, - "licenses": [{ - "type": "GPLv3", - "url": "https://www.delac.io/WOW" - }], - "dependencies": { - "animate.css": "latest" - }, - "devDependencies" : { - "grunt" : "latest", - "grunt-cli" : "latest", - "grunt-contrib-watch" : "latest", - "grunt-contrib-coffee" : "latest", - "grunt-contrib-jasmine": "latest", - "grunt-contrib-uglify" : "latest", - "grunt-growl" : "latest" - }, - "scripts": { - "test": "grunt travis" - } -}