{"maintainers":[{"name":"zensh","email":"admin@zensh.com"}],"keywords":["gulpplugin","sequence","sync","thunk","thunks","flow"],"dist-tags":{"latest":"1.0.0"},"description":"Run a series of gulp tasks in order.","readme":"gulp-sequence\n====\nRun a series of gulp tasks in order.\n\n[![NPM version][npm-image]][npm-url]\n[![Build Status][travis-image]][travis-url]\n[![Downloads][downloads-image]][downloads-url]\n\n## Install\n\nInstall with [npm](https://npmjs.org/package/gulp-sequence)\n\n```\nnpm install --save-dev gulp-sequence\n```\n\n\n## Usage\n\n```js\nvar gulp = require('gulp')\nvar gulpSequence = require('gulp-sequence')\n\ngulp.task('a', function (cb) {\n  //... cb()\n})\n\ngulp.task('b', function (cb) {\n  //... cb()\n})\n\ngulp.task('c', function (cb) {\n  //... cb()\n})\n\ngulp.task('d', function (cb) {\n  //... cb()\n})\n\ngulp.task('e', function (cb) {\n  //... cb()\n})\n\ngulp.task('f', function () {\n  // return stream\n  return gulp.src('*.js')\n})\n\n// usage 1, recommend\n// 1. run 'a', 'b' in parallel;\n// 2. run 'c' after 'a' and 'b';\n// 3. run 'd', 'e' in parallel after 'c';\n// 3. run 'f' after 'd' and 'e'.\ngulp.task('sequence-1', gulpSequence(['a', 'b'], 'c', ['d', 'e'], 'f'))\n\n// usage 2\ngulp.task('sequence-2', function (cb) {\n  gulpSequence(['a', 'b'], 'c', ['d', 'e'], 'f', cb)\n})\n\n// usage 3\ngulp.task('sequence-3', function (cb) {\n  gulpSequence(['a', 'b'], 'c', ['d', 'e'], 'f')(cb)\n})\n\ngulp.task('gulp-sequence', gulpSequence('sequence-1', 'sequence-2', 'sequence-3'))\n```\n\n**with `gulp.watch`**:\n```js\ngulp.watch('src/**/*.js', function (event) {\n  gulpSequence('a', 'b')(function (err) {\n    if (err) console.log(err)\n  })\n})\n```\n\n## API\n\n```js\nvar gulpSequence = require('gulp-sequence')\n```\n\n### gulpSequence('subtask1', 'subtask2',...[, callback])\nreturn a [thunk](https://github.com/teambition/thunks) function.\n\n```js\nvar gulp = require('gulp')\nvar gulpSequence = require('gulp-sequence')\n\ngulp.task('test', gulpSequence(['a', 'b'], 'c', ['d', 'e'], 'f'))\n```\n\n### gulpSequence.use(gulp)\nreturn a new gulpSequence function with the gulp. If you have some errors such as \"task xxx is not defined\", this will resolve it.\n\n```js\nvar gulp = require('gulp')\nvar gulpSequence = require('gulp-sequence').use(gulp)\n\ngulp.task('test', gulpSequence(['a', 'b'], 'c', ['d', 'e'], 'f'))\n```\n\n## License\n\nMIT © [Teambition](https://www.teambition.com)\n\n[npm-url]: https://npmjs.org/package/gulp-sequence\n[npm-image]: http://img.shields.io/npm/v/gulp-sequence.svg\n\n[travis-url]: https://travis-ci.org/teambition/gulp-sequence\n[travis-image]: http://img.shields.io/travis/teambition/gulp-sequence.svg\n\n[downloads-url]: https://npmjs.org/package/gulp-sequence\n[downloads-image]: http://img.shields.io/npm/dm/gulp-sequence.svg?style=flat-square\n","repository":{"url":"git+ssh://git@github.com/teambition/gulp-sequence.git","type":"git"},"users":{"caijf":true,"guxun":true,"jacks":true,"muroc":true,"raojs":true,"yikuo":true,"itcaso":true,"monjer":true,"muzhen":true,"narven":true,"porreh":true,"tedyhy":true,"yangzw":true,"cjmyles":true,"ckopnio":true,"jyounce":true,"karjala":true,"maxwang":true,"seaniap":true,"sej20xx":true,"smithua":true,"sparrow":true,"janet-lu":true,"jedchang":true,"kbradl16":true,"lelivero":true,"stephn_r":true,"landy2014":true,"langylang":true,"mr-smiley":true,"nmccready":true,"sternelee":true,"wukaidong":true,"zhaojiami":true,"alexdevero":true,"cognivator":true,"isaacvitor":true,"okraciunas":true,"rain-again":true,"shadowlong":true,"icognivator":true,"joshukraine":true,"yanlaichang":true,"amandavianna":true,"iori20091101":true,"lostandfownd":true,"nicholasgame":true,"taylorpzreal":true,"zhenguo.zhao":true,"crazyjingling":true,"helloncanella":true,"ivan403704409":true,"tobiasalthoff":true,"andrey.shatilov":true,"fabian.moron.zirfas":true,"alanev":true,"neefrankie":true,"deneboulton":true,"thomas.li":true,"brofox":true},"bugs":{"url":"https://github.com/teambition/gulp-sequence/issues"},"versions":{"0.1.0":{"name":"gulp-sequence","description":"Run a series of gulp tasks in order.","authors":["Yan Qing <admin@zensh.com>"],"version":"0.1.0","main":"index.js","repository":{"type":"git","url":"git@github.com:teambition/gulp-sequence.git"},"homepage":"https://github.com/teambition/gulp-sequence","keywords":["gulpplugin","sequence","sync","thunk","thunks","flow"],"dependencies":{"gulp":"^3.8.8","gulp-util":"^3.0.0","thunks":"^1.3.0"},"devDependencies":{"gulp-jshint":"^1.8.4"},"scripts":{"test":"gulp test"},"ignore":["**/.*","node_modules","test","gulpfile.js"],"gitHead":"ac609b669a7a013dd9a897b734bdc2278c95c461","bugs":{"url":"https://github.com/teambition/gulp-sequence/issues"},"_id":"gulp-sequence@0.1.0","_shasum":"367806c390d16826c8a82a27a1e41b4fe5db76ba","_from":".","_npmVersion":"2.1.2","_nodeVersion":"0.11.14","_npmUser":{"name":"zensh","email":"admin@zensh.com"},"maintainers":[{"name":"zensh","email":"admin@zensh.com"}],"dist":{"shasum":"367806c390d16826c8a82a27a1e41b4fe5db76ba","size":3194,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/gulp-sequence/-/gulp-sequence-0.1.0.tgz"},"directories":{},"publish_time":1413198277011,"_cnpm_publish_time":1413198277011,"_hasShrinkwrap":false},"0.1.1":{"name":"gulp-sequence","description":"Run a series of gulp tasks in order.","authors":["Yan Qing <admin@zensh.com>"],"version":"0.1.1","main":"index.js","repository":{"type":"git","url":"git@github.com:teambition/gulp-sequence.git"},"homepage":"https://github.com/teambition/gulp-sequence","keywords":["gulpplugin","sequence","sync","thunk","thunks","flow"],"dependencies":{"gulp":"^3.8.8","gulp-util":"^3.0.0","thunks":"^1.3.0"},"devDependencies":{"gulp-jshint":"^1.8.4"},"scripts":{"test":"gulp test"},"ignore":["**/.*","node_modules","test","gulpfile.js"],"gitHead":"542eeccf9bd8a54a1b5e316082437e7697b44cf1","bugs":{"url":"https://github.com/teambition/gulp-sequence/issues"},"_id":"gulp-sequence@0.1.1","_shasum":"d5d39018c28aa43cfec682b8af615aefd13236d7","_from":".","_npmVersion":"2.1.2","_nodeVersion":"0.11.14","_npmUser":{"name":"zensh","email":"admin@zensh.com"},"maintainers":[{"name":"zensh","email":"admin@zensh.com"}],"dist":{"shasum":"d5d39018c28aa43cfec682b8af615aefd13236d7","size":3196,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/gulp-sequence/-/gulp-sequence-0.1.1.tgz"},"directories":{},"publish_time":1413199199195,"_cnpm_publish_time":1413199199195,"_hasShrinkwrap":false},"0.1.2":{"name":"gulp-sequence","description":"Run a series of gulp tasks in order.","authors":["Yan Qing <admin@zensh.com>"],"version":"0.1.2","main":"index.js","repository":{"type":"git","url":"git@github.com:teambition/gulp-sequence.git"},"homepage":"https://github.com/teambition/gulp-sequence","keywords":["gulpplugin","sequence","sync","thunk","thunks","flow"],"dependencies":{"gulp":"^3.8.8","gulp-util":"^3.0.0","thunks":"^1.3.0"},"devDependencies":{"gulp-jshint":"^1.8.4"},"scripts":{"test":"gulp test"},"ignore":["**/.*","node_modules","test","gulpfile.js"],"gitHead":"356ca0722548c514d3911879c899872d3d9b8d00","bugs":{"url":"https://github.com/teambition/gulp-sequence/issues"},"_id":"gulp-sequence@0.1.2","_shasum":"fa52a3267b8e07a953527e3c61eab0da199a0d6a","_from":".","_npmVersion":"2.1.2","_nodeVersion":"0.11.14","_npmUser":{"name":"zensh","email":"admin@zensh.com"},"maintainers":[{"name":"zensh","email":"admin@zensh.com"}],"dist":{"shasum":"fa52a3267b8e07a953527e3c61eab0da199a0d6a","size":3237,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/gulp-sequence/-/gulp-sequence-0.1.2.tgz"},"directories":{},"publish_time":1413249420132,"_cnpm_publish_time":1413249420132,"_hasShrinkwrap":false},"0.2.0":{"name":"gulp-sequence","description":"Run a series of gulp tasks in order.","authors":["Yan Qing <admin@zensh.com>"],"version":"0.2.0","main":"index.js","repository":{"type":"git","url":"git@github.com:teambition/gulp-sequence.git"},"homepage":"https://github.com/teambition/gulp-sequence","keywords":["gulpplugin","sequence","sync","thunk","thunks","flow"],"dependencies":{"gulp":"^3.8.0","gulp-util":"^3.0.0","thunks":"^1.3.0"},"devDependencies":{"gulp-jshint":"^1.8.4"},"scripts":{"test":"gulp test"},"ignore":["**/.*","node_modules","test","gulpfile.js"],"gitHead":"d7bfa94ffd7b1a9458d623b0e1730c92f53dacc9","bugs":{"url":"https://github.com/teambition/gulp-sequence/issues"},"_id":"gulp-sequence@0.2.0","_shasum":"4752ecb08bb7bb9405f29dd3b7a0b2250dcc0675","_from":".","_npmVersion":"2.1.2","_nodeVersion":"0.11.14","_npmUser":{"name":"zensh","email":"admin@zensh.com"},"maintainers":[{"name":"zensh","email":"admin@zensh.com"}],"dist":{"shasum":"4752ecb08bb7bb9405f29dd3b7a0b2250dcc0675","size":3326,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/gulp-sequence/-/gulp-sequence-0.2.0.tgz"},"directories":{},"publish_time":1413284423243,"_cnpm_publish_time":1413284423243,"_hasShrinkwrap":false},"0.2.1":{"name":"gulp-sequence","description":"Run a series of gulp tasks in order.","authors":["Yan Qing <admin@zensh.com>"],"version":"0.2.1","main":"index.js","repository":{"type":"git","url":"git@github.com:teambition/gulp-sequence.git"},"homepage":"https://github.com/teambition/gulp-sequence","keywords":["gulpplugin","sequence","sync","thunk","thunks","flow"],"dependencies":{"gulp":"^3.8.0","gulp-util":"^3.0.0","thunks":"^1.3.0"},"devDependencies":{"gulp-jshint":"^1.8.4"},"scripts":{"test":"gulp test"},"ignore":["**/.*","node_modules","test","gulpfile.js"],"gitHead":"69136cf6c6baf9a5ff978e8321bda2e4d111f463","bugs":{"url":"https://github.com/teambition/gulp-sequence/issues"},"_id":"gulp-sequence@0.2.1","_shasum":"5ee223fd4b3bb7167806f694cb7fd1dc7250f77c","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zensh","email":"admin@zensh.com"},"maintainers":[{"name":"zensh","email":"admin@zensh.com"}],"dist":{"shasum":"5ee223fd4b3bb7167806f694cb7fd1dc7250f77c","size":3405,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/gulp-sequence/-/gulp-sequence-0.2.1.tgz"},"directories":{},"publish_time":1413339212806,"_cnpm_publish_time":1413339212806,"_hasShrinkwrap":false},"0.3.0":{"name":"gulp-sequence","description":"Run a series of gulp tasks in order.","authors":["Yan Qing <admin@zensh.com>"],"version":"0.3.0","main":"index.js","repository":{"type":"git","url":"git@github.com:teambition/gulp-sequence.git"},"homepage":"https://github.com/teambition/gulp-sequence","keywords":["gulpplugin","sequence","sync","thunk","thunks","flow"],"dependencies":{"gulp":"^3.8.0","gulp-util":"^3.0.0","thunks":"^1.5.0"},"devDependencies":{"gulp-jshint":"^1.8.4"},"scripts":{"test":"gulp test"},"ignore":["**/.*","node_modules","test","gulpfile.js"],"gitHead":"eede4f55a6df3498868c2aef4f2231a57a3c9a4b","bugs":{"url":"https://github.com/teambition/gulp-sequence/issues"},"_id":"gulp-sequence@0.3.0","_shasum":"8bd68ce1833b7363d2bb01363918a8e4f150bb9e","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"zensh","email":"admin@zensh.com"},"maintainers":[{"name":"zensh","email":"admin@zensh.com"}],"dist":{"shasum":"8bd68ce1833b7363d2bb01363918a8e4f150bb9e","size":3350,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/gulp-sequence/-/gulp-sequence-0.3.0.tgz"},"directories":{},"publish_time":1415874631051,"_cnpm_publish_time":1415874631051,"_hasShrinkwrap":false},"0.3.1":{"name":"gulp-sequence","description":"Run a series of gulp tasks in order.","authors":["Yan Qing <admin@zensh.com>"],"version":"0.3.1","main":"index.js","repository":{"type":"git","url":"git@github.com:teambition/gulp-sequence.git"},"homepage":"https://github.com/teambition/gulp-sequence","keywords":["gulpplugin","sequence","sync","thunk","thunks","flow"],"dependencies":{"gulp":"^3.8.0","gulp-util":"^3.0.0","thunks":"^2.1.0"},"devDependencies":{"gulp-jshint":"^1.8.4"},"scripts":{"test":"gulp test"},"ignore":["**/.*","node_modules","test","gulpfile.js"],"gitHead":"513554d2427e61cca8ed04e9ae56e1fcbdb9c609","bugs":{"url":"https://github.com/teambition/gulp-sequence/issues"},"_id":"gulp-sequence@0.3.1","_shasum":"9d809c8e50482ade03e2904505998ac0ad01e18f","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"zensh","email":"admin@zensh.com"},"maintainers":[{"name":"zensh","email":"admin@zensh.com"}],"dist":{"shasum":"9d809c8e50482ade03e2904505998ac0ad01e18f","size":3353,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/gulp-sequence/-/gulp-sequence-0.3.1.tgz"},"directories":{},"publish_time":1416654432680,"_cnpm_publish_time":1416654432680,"_hasShrinkwrap":false},"0.3.2":{"name":"gulp-sequence","description":"Run a series of gulp tasks in order.","authors":["Yan Qing <admin@zensh.com>"],"version":"0.3.2","main":"index.js","repository":{"type":"git","url":"git@github.com:teambition/gulp-sequence.git"},"homepage":"https://github.com/teambition/gulp-sequence","keywords":["gulpplugin","sequence","sync","thunk","thunks","flow"],"dependencies":{"gulp":"^3.8.0","gulp-util":"^3.0.0","thunks":"^2.7.2"},"devDependencies":{"gulp-jshint":"^1.8.4"},"scripts":{"test":"gulp test"},"ignore":["**/.*","node_modules","test","gulpfile.js"],"gitHead":"1203349a39accd3b26eae16261f524cc9b30af9a","bugs":{"url":"https://github.com/teambition/gulp-sequence/issues"},"_id":"gulp-sequence@0.3.2","_shasum":"899630babc0266f036366ac33e4e679eeeddab3d","_from":".","_npmVersion":"2.4.1","_nodeVersion":"1.1.0","_npmUser":{"name":"zensh","email":"admin@zensh.com"},"maintainers":[{"name":"zensh","email":"admin@zensh.com"}],"dist":{"shasum":"899630babc0266f036366ac33e4e679eeeddab3d","size":3358,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/gulp-sequence/-/gulp-sequence-0.3.2.tgz"},"directories":{},"publish_time":1423443642524,"_cnpm_publish_time":1423443642524,"_hasShrinkwrap":false},"0.4.0":{"name":"gulp-sequence","description":"Run a series of gulp tasks in order.","authors":["Yan Qing <admin@zensh.com>"],"version":"0.4.0","main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/teambition/gulp-sequence.git"},"homepage":"https://github.com/teambition/gulp-sequence","keywords":["gulpplugin","sequence","sync","thunk","thunks","flow"],"dependencies":{"gulp-util":">=2.0.0","thunks":"^3.4.3"},"devDependencies":{"gulp":"^3.9.0","standard":"^4.5.2"},"scripts":{"test":"gulp test"},"ignore":["**/.*","node_modules","test","gulpfile.js"],"gitHead":"2f5ca14f89d01a77ad1b0fe60c75add98f1fafee","bugs":{"url":"https://github.com/teambition/gulp-sequence/issues"},"_id":"gulp-sequence@0.4.0","_shasum":"6c77f31afaba4951bf4c5765ec6b66bad98f98d9","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"zensh","email":"admin@zensh.com"},"maintainers":[{"name":"zensh","email":"admin@zensh.com"}],"dist":{"shasum":"6c77f31afaba4951bf4c5765ec6b66bad98f98d9","size":3077,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/gulp-sequence/-/gulp-sequence-0.4.0.tgz"},"directories":{},"publish_time":1436491905883,"_cnpm_publish_time":1436491905883,"_hasShrinkwrap":false},"0.4.1":{"name":"gulp-sequence","description":"Run a series of gulp tasks in order.","authors":["Yan Qing <admin@zensh.com>"],"version":"0.4.1","main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/teambition/gulp-sequence.git"},"homepage":"https://github.com/teambition/gulp-sequence","keywords":["gulpplugin","sequence","sync","thunk","thunks","flow"],"dependencies":{"gulp-util":">=3.0.6","thunks":"^3.5.0"},"devDependencies":{"gulp":"^3.9.0","standard":"^5.1.0"},"scripts":{"test":"gulp test"},"ignore":["**/.*","node_modules","test","gulpfile.js"],"gitHead":"f303f9bf1c33a9e923546598d87aed8d1cc7f751","bugs":{"url":"https://github.com/teambition/gulp-sequence/issues"},"_id":"gulp-sequence@0.4.1","_shasum":"985edfb6d62c576f6d49e633d2c75c2c90112a50","_from":".","_npmVersion":"2.13.3","_nodeVersion":"3.0.0","_npmUser":{"name":"zensh","email":"admin@zensh.com"},"maintainers":[{"name":"zensh","email":"admin@zensh.com"}],"dist":{"shasum":"985edfb6d62c576f6d49e633d2c75c2c90112a50","size":3081,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/gulp-sequence/-/gulp-sequence-0.4.1.tgz"},"directories":{},"publish_time":1440082297806,"_cnpm_publish_time":1440082297806,"_hasShrinkwrap":false},"0.4.2":{"name":"gulp-sequence","description":"Run a series of gulp tasks in order.","authors":["Yan Qing <admin@zensh.com>"],"version":"0.4.2","main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/teambition/gulp-sequence.git"},"homepage":"https://github.com/teambition/gulp-sequence","keywords":["gulpplugin","sequence","sync","thunk","thunks","flow"],"dependencies":{"gulp-util":">=3.0.0","thunks":"^4.1.0"},"devDependencies":{"gulp":"^3.9.0","standard":"^5.4.1"},"scripts":{"test":"gulp test"},"files":["index.js"],"gitHead":"1560154955c99c09a39e7525a23110c714bd9ea4","bugs":{"url":"https://github.com/teambition/gulp-sequence/issues"},"_id":"gulp-sequence@0.4.2","_shasum":"d4a722675645a536a842452a20b1cb7a34fd76c1","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"zensh","email":"admin@zensh.com"},"maintainers":[{"name":"zensh","email":"admin@zensh.com"}],"dist":{"shasum":"d4a722675645a536a842452a20b1cb7a34fd76c1","size":2452,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/gulp-sequence/-/gulp-sequence-0.4.2.tgz"},"directories":{},"publish_time":1450488367605,"_cnpm_publish_time":1450488367605,"_hasShrinkwrap":false},"0.4.3":{"name":"gulp-sequence","description":"Run a series of gulp tasks in order.","authors":["Yan Qing <admin@zensh.com>"],"version":"0.4.3","main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/teambition/gulp-sequence.git"},"homepage":"https://github.com/teambition/gulp-sequence","keywords":["gulpplugin","sequence","sync","thunk","thunks","flow"],"dependencies":{"gulp-util":">=3.0.0","thunks":"^4.1.0"},"devDependencies":{"gulp":"^3.9.0","standard":"^5.4.1"},"scripts":{"test":"gulp test"},"files":["index.js"],"gitHead":"5c78ea505bd3cd01dac68e790c30c6a3a08995c8","bugs":{"url":"https://github.com/teambition/gulp-sequence/issues"},"_id":"gulp-sequence@0.4.3","_shasum":"2dbbcf6684ebb15af0327ac56f323cd6937b2678","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"zensh","email":"admin@zensh.com"},"maintainers":[{"name":"zensh","email":"admin@zensh.com"}],"dist":{"shasum":"2dbbcf6684ebb15af0327ac56f323cd6937b2678","size":2435,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/gulp-sequence/-/gulp-sequence-0.4.3.tgz"},"directories":{},"publish_time":1450504221966,"_cnpm_publish_time":1450504221966,"_hasShrinkwrap":false},"0.4.4":{"name":"gulp-sequence","description":"Run a series of gulp tasks in order.","authors":["Yan Qing <admin@zensh.com>"],"version":"0.4.4","main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/teambition/gulp-sequence.git"},"homepage":"https://github.com/teambition/gulp-sequence","keywords":["gulpplugin","sequence","sync","thunk","thunks","flow"],"dependencies":{"gulp-util":">=3.0.0","thunks":"^4.1.0"},"devDependencies":{"gulp":"^3.9.0","standard":"^5.4.1"},"scripts":{"test":"gulp test"},"files":["index.js"],"gitHead":"6c03ddebca4a8dc7c2e89cf4e5de557d981d06cf","bugs":{"url":"https://github.com/teambition/gulp-sequence/issues"},"_id":"gulp-sequence@0.4.4","_shasum":"bf917beec4eebd0b3a2d0ba9afb63f2c03e361d7","_from":".","_npmVersion":"2.14.15","_nodeVersion":"4.2.3","_npmUser":{"name":"zensh","email":"admin@zensh.com"},"maintainers":[{"name":"zensh","email":"admin@zensh.com"}],"dist":{"shasum":"bf917beec4eebd0b3a2d0ba9afb63f2c03e361d7","size":2431,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/gulp-sequence/-/gulp-sequence-0.4.4.tgz"},"directories":{},"publish_time":1451039250658,"_cnpm_publish_time":1451039250658,"_hasShrinkwrap":false},"0.4.5":{"name":"gulp-sequence","description":"Run a series of gulp tasks in order.","authors":["Yan Qing <admin@zensh.com>"],"version":"0.4.5","main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/teambition/gulp-sequence.git"},"homepage":"https://github.com/teambition/gulp-sequence","keywords":["gulpplugin","sequence","sync","thunk","thunks","flow"],"dependencies":{"gulp-util":">=3.0.0","thunks":"^4.1.3"},"devDependencies":{"gulp":"^3.9.1","standard":"^5.4.1"},"scripts":{"test":"gulp test"},"files":["index.js"],"gitHead":"b108ca8fff3b2abfed1b3ebcb4363416e0d039b3","bugs":{"url":"https://github.com/teambition/gulp-sequence/issues"},"_id":"gulp-sequence@0.4.5","_shasum":"70f2f65010c05252327f2857dcd22fd365a9a612","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.0","_npmUser":{"name":"zensh","email":"admin@zensh.com"},"maintainers":[{"name":"zensh","email":"admin@zensh.com"}],"dist":{"shasum":"70f2f65010c05252327f2857dcd22fd365a9a612","size":2462,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/gulp-sequence/-/gulp-sequence-0.4.5.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/gulp-sequence-0.4.5.tgz_1455550790865_0.2743189353495836"},"directories":{},"publish_time":1455550793035,"_cnpm_publish_time":1455550793035,"_hasShrinkwrap":false},"0.4.6":{"name":"gulp-sequence","description":"Run a series of gulp tasks in order.","authors":["Yan Qing <admin@zensh.com>"],"version":"0.4.6","main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/teambition/gulp-sequence.git"},"homepage":"https://github.com/teambition/gulp-sequence","keywords":["gulpplugin","sequence","sync","thunk","thunks","flow"],"dependencies":{"gulp-util":">=3.0.0","thunks":"^4.5.1"},"devDependencies":{"gulp":"^3.9.1","standard":"^8.0.0"},"scripts":{"test":"gulp test"},"files":["index.js"],"gitHead":"484d711883102320166c452960cdfcc0309b961a","bugs":{"url":"https://github.com/teambition/gulp-sequence/issues"},"_id":"gulp-sequence@0.4.6","_shasum":"e388d64311046e05547af43035352d9495501c50","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.5.0","_npmUser":{"name":"zensh","email":"admin@zensh.com"},"maintainers":[{"name":"zensh","email":"admin@zensh.com"}],"dist":{"shasum":"e388d64311046e05547af43035352d9495501c50","size":2565,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/gulp-sequence/-/gulp-sequence-0.4.6.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gulp-sequence-0.4.6.tgz_1472483744309_0.08616900607012212"},"directories":{},"publish_time":1472483746793,"_cnpm_publish_time":1472483746793,"_hasShrinkwrap":false},"1.0.0":{"name":"gulp-sequence","description":"Run a series of gulp tasks in order.","authors":["Yan Qing <admin@zensh.com>"],"version":"1.0.0","main":"index.js","repository":{"type":"git","url":"git+ssh://git@github.com/teambition/gulp-sequence.git"},"homepage":"https://github.com/teambition/gulp-sequence","keywords":["gulpplugin","sequence","sync","thunk","thunks","flow"],"dependencies":{"thunks":"^4.9.0"},"devDependencies":{"gulp":"^3.9.1","standard":"^10.0.3"},"scripts":{"test":"gulp test"},"files":["index.js"],"gitHead":"c2067a8d143bc218f7958317908a22ac0a32a9f2","bugs":{"url":"https://github.com/teambition/gulp-sequence/issues"},"_id":"gulp-sequence@1.0.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"zensh","email":"admin@zensh.com"},"maintainers":[{"name":"zensh","email":"admin@zensh.com"}],"dist":{"shasum":"862f93e6503e67c350a42948fa666953cf88ba67","size":2527,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/gulp-sequence/-/gulp-sequence-1.0.0.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gulp-sequence-1.0.0.tgz_1514607726596_0.5896145331207663"},"directories":{},"publish_time":1514607726698,"_hasShrinkwrap":false,"_cnpm_publish_time":1514607726698}},"name":"gulp-sequence","time":{"created":"2014-10-13T11:04:37.011Z","modified":"2018-07-04T01:22:24.866Z","0.1.0":"2014-10-13T11:04:37.011Z","0.1.1":"2014-10-13T11:19:59.195Z","0.1.2":"2014-10-14T01:17:00.132Z","0.2.0":"2014-10-14T11:00:23.243Z","0.2.1":"2014-10-15T02:13:32.806Z","0.3.0":"2014-11-13T10:30:31.051Z","0.3.1":"2014-11-22T11:07:12.680Z","0.3.2":"2015-02-09T01:00:42.524Z","0.4.0":"2015-07-10T01:31:45.883Z","0.4.1":"2015-08-20T14:51:37.806Z","0.4.2":"2015-12-19T01:26:07.605Z","0.4.3":"2015-12-19T05:50:21.966Z","0.4.4":"2015-12-25T10:27:30.658Z","0.4.5":"2016-02-15T15:39:53.035Z","0.4.6":"2016-08-29T15:15:46.793Z","1.0.0":"2017-12-30T04:22:06.698Z"},"readmeFilename":"README.md","homepage":"https://github.com/teambition/gulp-sequence"}