Merge branch 'master' of github.com:leonidas/gulp-project-template

This commit is contained in:
Riku Rouvila
2015-11-27 13:52:06 +02:00
19 changed files with 423 additions and 152 deletions

View File

@@ -6,10 +6,10 @@
"license": "MIT",
"main": "gulpfile.js",
"scripts": {
"prepublish": "bower install",
"start": "gulp",
"build": "gulp build",
"test": "karma start test/karma.conf.js"
"start": "rm -rf public && gulp",
"build": "rm -rf public && gulp build",
"lint": "eslint src",
"test": "mocha src/**/__tests__/*.js --compilers js:babel-core/register --require test/test-helper"
},
"keywords": [
"gulp",
@@ -17,53 +17,55 @@
],
"dependencies": {
"axios": "^0.4.2",
"lodash": "^2.4.1",
"font-awesome": "^4.4.0",
"http-server": "^0.8.0",
"lodash": "^3.9.1",
"parse-github-event": "^0.2.0",
"react": "^0.12.2",
"timeago": "^0.2.0",
"twitter-text": "^1.11.0",
"http-server": "^0.8.0"
"twitter-text": "^1.11.0"
},
"devDependencies": {
"6to5ify": "^3.1.2",
"bower": "~1.3.5",
"browserify": "~6.1.0",
"coffee-script": "~1.8.0",
"deamdify": "^0.1.1",
"debowerify": "~0.9.1",
"ecstatic": "~0.5.3",
"babel": "^6.1.18",
"babel-core": "^6.2.1",
"babel-eslint": "^4.1.3",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babelify": "^7.2.0",
"browser-sync": "^2.9.4",
"browserify": "^10.2.1",
"chai": "^3.0.0",
"envify": "^3.4.0",
"event-stream": "^3.2.1",
"faker": "^2.1.2",
"gulp": "~3.8.1",
"eslint": "^1.5.1",
"eslint-config-airbnb": "0.0.9",
"eslint-plugin-react": "^3.4.2",
"event-stream": "^3.3.2",
"exorcist": "^0.4.0",
"gulp": "3.9.0",
"gulp-autoprefixer": "1.0.1",
"gulp-concat": "^2.4.3",
"gulp-duration": "0.0.0",
"gulp-inject": "^3.0.0",
"gulp-jade": "~0.9.0",
"gulp-less": "3.0.0",
"gulp-livereload": "~2.1.0",
"gulp-minify-css": "~0.3.5",
"gulp-less": "^3.0.5",
"gulp-replace": "^0.5.3",
"gulp-rev": "^4.0.0",
"gulp-sourcemaps": "^1.3.0",
"gulp-streamify": "0.0.5",
"gulp-stylus": "1.3.3",
"gulp-stylus": "~2.0.0",
"gulp-uglify": "~1.0.1",
"gulp-util": "~3.0.1",
"http-proxy": "^1.8.1",
"jsx-transform": "^0.10.1",
"karma": "~0.12.21",
"karma-chrome-launcher": "~0.1.4",
"karma-cli": "0.0.4",
"karma-coffee-preprocessor": "~0.2.1",
"karma-jasmine": "~0.2.2",
"reactify": "^1.0.0",
"through2": "^0.6.3",
"gulp-watch": "^4.3.4",
"jsdom": "^5.6.0",
"mocha": "^2.2.5",
"node-notifier": "^4.2.1",
"rimraf": "^2.3.4",
"vinyl-source-stream": "~1.0.0",
"watchify": "~2.3.0"
"vinyl-transform": "^1.0.0",
"watchify": "^3.2.1"
},
"browserify": {
"transform": [
"reactify",
"6to5ify",
"debowerify",
"deamdify",
"babelify",
"envify"
]
}