ksmithut/gulp-task-master

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "gulp-task-master",
  "version": "1.1.1",
  "description": "Offers a way to modularize your tasks",
  "main": "index.js",
  "files": [
    "index.js"
  ],
  "scripts": {
    "jshint": "jshint --reporter node_modules/jshint-stylish index.js",
    "check-cov": "istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
    "test": "istanbul cover _mocha",
    "posttest": " npm run check-cov; npm run jshint;",
    "codeclimate": "cat ./coverage/lcov.info | codeclimate-test-reporter"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:ksmithut/gulp-task-master.git"
  },
  "keywords": [
    "gulp",
    "tasks"
  ],
  "author": "ksmithut",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ksmithut/gulp-task-master/issues"
  },
  "homepage": "https://github.com/ksmithut/gulp-task-master",
  "devDependencies": {
    "chai": "^3.5.0",
    "codeclimate-test-reporter": "^0.3.1",
    "gulp": "^3.9.1",
    "istanbul": "^0.4.3",
    "jshint": "^2.9.1",
    "jshint-stylish": "^2.1.0",
    "mocha": "^2.4.5",
    "mocha-lcov-reporter": "^1.2.0"
  },
  "dependencies": {
    "glob": "^7.0.3",
    "object-assign": "^4.0.1"
  }
}