Skip to content

Commit

Permalink
Update flow, and clean up some unneeded stuff for modern node
Browse files Browse the repository at this point in the history
  • Loading branch information
aikar committed Feb 19, 2017
1 parent ab1be03 commit 64d8326
Show file tree
Hide file tree
Showing 4 changed files with 2,422 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: node_js
node_js:
node_js:
- 'iojs'
- '0.12'
- 4
- 6'
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

var Q = require('q');
var fs = require('fs');
require('babel-polyfill');
var path = require('path');
var gutil = require('gulp-util');
var through = require('through2');
Expand Down
24 changes: 11 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gulp-flowtype",
"version": "1.0.0",
"version": "1.1.0",
"description": "Run Facebook's Flow in your gulp pipeline",
"keywords": [
"gulp",
Expand All @@ -11,7 +11,7 @@
"name": "Charlie Dowler",
"url": "https://github.com/charliedowler"
},
"repository": "charliedowler/gulp-flowtype",
"repository": "aikar/gulp-flowtype",
"scripts": {
"lint": "npm run lint:js && npm run lint:flow",
"lint:js": "jshint **.js",
Expand All @@ -21,32 +21,30 @@
"prepublish": "babel -d lib index.js"
},
"dependencies": {
"babel-cli": "^6.3.15",
"babel-polyfill": "^6.3.14",
"babel-types": "^6.3.14",
"chalk": "^1.1.3",
"event-stream": "~3.3.0",
"flow-bin": "^0.30.0",
"flow-to-jshint": "~0.2.0",
"flow-reporter": "~0.1.0",
"gulp-util": "~3.0.1",
"jshint": "^2.8.0",
"log-symbols": "^1.0.1",
"q": "^1.1.2",
"through2": "~2.0.0",
"flow-reporter": "~0.1.0"
"through2": "~2.0.0"
},
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"coveralls": "~2.11.5",
"istanbul": "~0.4.1",
"jshint": "^2.8.0",
"mocha": "~3.0.1",
"mocha-lcov-reporter": "~1.2.0",
"should": "~10.0.0"
},
"peerDependencies": {
"flow-bin": "^0.39.0"
},
"engines": {
"node": ">=0.8.0",
"npm": ">=1.2.10"
"node": ">=4.0",
"npm": ">=3.0.10"
},
"babel": {
"presets": [
Expand Down
Loading

0 comments on commit 64d8326

Please sign in to comment.