| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 | {  "name": "undertaker",  "version": "1.2.1",  "description": "Task registry that allows composition through series/parallel methods.",  "author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",  "contributors": [    "Blaine Bublitz <blaine.bublitz@gmail.com>",    "Damien Lebrun <dinoboff@hotmail.com>"  ],  "repository": "gulpjs/undertaker",  "license": "MIT",  "engines": {    "node": ">= 0.10"  },  "main": "index.js",  "files": [    "LICENSE",    "index.js",    "lib"  ],  "scripts": {    "lint": "eslint . && jscs index.js lib/ test/",    "pretest": "npm run lint",    "test": "mocha --async-only",    "cover": "istanbul cover _mocha --report lcovonly",    "coveralls": "npm run cover && istanbul-coveralls"  },  "dependencies": {    "arr-flatten": "^1.0.1",    "arr-map": "^2.0.0",    "bach": "^1.0.0",    "collection-map": "^1.0.0",    "es6-weak-map": "^2.0.1",    "last-run": "^1.1.0",    "object.defaults": "^1.0.0",    "object.reduce": "^1.0.0",    "undertaker-registry": "^1.0.0"  },  "devDependencies": {    "async-once": "^1.0.0",    "del": "^2.0.2",    "eslint": "^1.7.3",    "eslint-config-gulp": "^2.0.0",    "expect": "^1.19.0",    "gulp-jshint": "^1.8.4",    "istanbul": "^0.4.3",    "istanbul-coveralls": "^1.0.3",    "jscs": "^2.3.5",    "jscs-preset-gulp": "^1.0.0",    "mocha": "^2.4.5",    "once": "^1.3.1",    "through2": "^2.0.0",    "undertaker-common-tasks": "^1.0.0",    "undertaker-task-metadata": "^1.0.0",    "vinyl-fs": "^2.2.0"  },  "keywords": [    "registry",    "runner",    "task"  ]}
 |