exiguus/js.node.grunt.config.helper

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "js.node.grunt.config.helper",
  "version": "1.0.1",
  "description": "Node.js Grunt Config Helper Class to Help with Grunt configs and tasks",
  "devDependencies": {
    "chai": "^4.1.2",
    "eslint": "^4.19.1",
    "eslint-config-google": "^0.9.1",
    "eslint-plugin-import": "^2.12.0",
    "eslint-plugin-node": "^6.0.1",
    "eslint-plugin-promise": "^3.7.0",
    "istanbul": "^0.4.5",
    "jsdoc": "^3.5.5",
    "mocha": "^5.2.0"
  },
  "scripts": {
    "start": "npm install",
    "dist": "npm run doc && npm run test-cover",
    "doc": "node_modules/jsdoc/jsdoc.js --readme ./README.md --configure ./jsdoc.json --destination ./docs ./lib/*",
    "test": "npm run lint && npm run dist",
    "test-unit": "NODE_ENV=test mocha './lib/*.spec.js'",
    "test-cover": "istanbul cover _mocha $(find ./lib -name \"*.spec.js\" -not -path \"./node_modules/*\")",
    "lint": "node_modules/eslint/bin/eslint.js index.js && node_modules/eslint/bin/eslint.js ./lib/*.js"
  },
  "keywords": [
    "grunt",
    "helper",
    "config",
    "node",
    "node.js"
  ],
  "main": "index.js",
  "author": "Simon Gattner <npm@0x38.de>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/exiguus/js.node.grunt.config.helper.git"
  },
  "engines": {
    "node": ">= 6.0.0",
    "npm": ">= 6.0.1"
  }
}