UNPKG

grunt-run-grunt

Version:

Grunt task to run Gruntfiles in a child process. Gruntception!

73 lines (72 loc) 1.69 kB
{ "name": "grunt-run-grunt", "description": "Grunt task to run Gruntfiles in a child process. Gruntception!", "version": "1.0.1", "main": "tasks/run_grunt.js", "engines": { "node": ">= 4", "npm": ">= 2.14.3" }, "license": "MIT", "author": { "name": "Bart van der Schoor", "url": "https://github.com/Bartvds" }, "homepage": "https://github.com/Bartvds/grunt-run-grunt", "repository": { "type": "git", "url": "https://github.com/Bartvds/grunt-run-grunt" }, "bugs": { "url": "https://github.com/Bartvds/grunt-run-grunt/issues" }, "keywords": [ "gruntplugin", "gruntfile", "grunt-cli", "spawn", "grunt", "run" ], "nyc": { "all": true, "include": [ "lib/*.js", "tasks/*.js" ], "exclude": [ "test/**/*.js", "Gruntfile.js" ] }, "scripts": { "lint": "jshint lib tasks test Gruntfile.js", "test": "grunt test", "cover": "nyc --reporter=html --reporter=text grunt test", "coveralls": "npm run cover && nyc report --reporter=text-lcov | coveralls" }, "dependencies": { "async": "^2.6.1", "grunt-known-options": "^1.1.1", "lodash": "^4.17.11" }, "devDependencies": { "chai": "^4.1.2", "chai-fs": "^2.0.0", "coveralls": "^3.0.2", "grunt": "^1.0.3", "grunt-bump": "^0.8.0", "grunt-cli": "^1.3.1", "grunt-contrib-clean": "^2.0.0", "grunt-contrib-jshint": "^1.1.0", "grunt-mocha-test": "^0.13.3", "jshint-path-reporter": "^0.1.3", "mkdirp": "^0.5.1", "mocha": "^5.2.0", "mocha-unfunk-reporter": "^0.4.0", "nyc": "^13.0.1" }, "peerDependencies": { "grunt": ">=1.0.0" } }