forked from michalsnik/aos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Michał Sajnóg
committed
Jun 18, 2016
1 parent
3999568
commit 3cfb8bc
Showing
29 changed files
with
686 additions
and
877 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"presets": ["es2015"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,53 +5,44 @@ | |
"homepage": "http://michalsnik.github.io/aos/", | ||
"author": "Michał Sajnóg <[email protected]>", | ||
"license": "MIT", | ||
|
||
"main": "dist/aos.js", | ||
|
||
"repository": { | ||
"type" : "git", | ||
"url" : "https://github.com/michalsnik/aos.git" | ||
"type": "git", | ||
"url": "https://github.com/michalsnik/aos.git" | ||
}, | ||
|
||
"bugs": { | ||
"url": "https://github.com/michalsnik/aos/issues" | ||
}, | ||
|
||
"devDependencies": { | ||
"browser-sync": "~2.0.1", | ||
"browserify": "^13.0.1", | ||
"gulp": "^3.8.11", | ||
"gulp-autoprefixer": "^2.3.1", | ||
"gulp-concat": "~2.4.3", | ||
"gulp-imagemin": "~2.2.0", | ||
"gulp-minify-css": "^1.2.0", | ||
"gulp-sass": "^2.0.4", | ||
"gulp-sourcemaps": "^1.6.0", | ||
"gulp-uglify": "~1.1.0", | ||
"gulp-util": "^3.0.6", | ||
"webpack": "^1.13.1", | ||
"webpack-dev-server": "^1.14.1", | ||
"babel-core": "^6.9.1", | ||
"babel-loader": "^6.2.4", | ||
"babel-preset-es2015": "^6.9.0", | ||
"css-loader": "^0.23.1", | ||
"sass-loader": "^3.2.0", | ||
"style-loader": "^0.13.1", | ||
"extract-text-webpack-plugin": "^1.0.1", | ||
"node-sass": "^3.7.0", | ||
"jasmine": "^2.4.1", | ||
"jasmine-core": "^2.3.4", | ||
"jasmine-fixture": "^1.3.3", | ||
"jasmine-jquery": "^2.1.1", | ||
"jquery": "^2.1.4", | ||
"karma": "^0.13.11", | ||
"karma-browserify": "^4.4.0", | ||
"karma-chrome-launcher": "^0.2.1", | ||
"karma-jasmine-jquery": "^0.1.1", | ||
"karma-jasmine": "^0.3.6", | ||
"lodash.assign": "^3.2.0", | ||
"phantomjs": "^1.9.18", | ||
"vinyl-buffer": "^1.0.0", | ||
"vinyl-source-stream": "^1.1.0", | ||
"watchify": "^3.4.0" | ||
"karma-webpack": "^1.7.0", | ||
"phantomjs": "^1.9.18" | ||
}, | ||
|
||
"dependencies": { | ||
"lodash.assign": "^3.2.0", | ||
"lodash.debounce": "^3.1.1", | ||
"lodash.foreach": "^3.0.3", | ||
"lodash.throttle": "^3.0.4" | ||
"lodash.debounce": "^4.0.6", | ||
"lodash.throttle": "^4.0.1" | ||
}, | ||
|
||
"scripts": { | ||
"test": "gulp test" | ||
"test": "node ./node_modules/karma/bin/karma start karma.conf.js", | ||
"build": "webpack", | ||
"dev": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js" | ||
} | ||
} |
Oops, something went wrong.