UNPKG

gulp-dotnet-cli

Version:
74 lines (73 loc) 1.94 kB
{ "name": "gulp-dotnet-cli", "version": "1.1.0", "description": "A dotnet command line interface for gulp", "main": "./dist/index.js", "scripts": { "test": "mocha --require ts-node/register --require source-map-support/register test/js/**/*.ts", "cover": "npm run compile && nyc npm test && nyc report --reporter=text-lcov | coveralls", "cover-html": "nyc npm test && nyc report --reporter=html", "clean": "rimraf ./dist", "compile": "npm run clean && tslint -c tslint.json src/** test/js/** && tsc", "compile-tests": "tsc --project test", "docs": "rimraf ./docs && typedoc --mode file --out docs src/" }, "repository": { "type": "git", "url": "git+https://github.com/Janus-vistaprint/gulp-dotnet-cli.git" }, "keywords": [ "dotnet", "dotnet-core", "dotnet-cli", "gulpplugin" ], "author": "Tommy Parnell", "license": "Apache-2.0", "bugs": { "url": "https://github.com/Janus-vistaprint/gulp-dotnet-cli/issues" }, "homepage": "https://github.com/Janus-vistaprint/gulp-dotnet-cli", "dependencies": { "child-process-promise": "^2.2.0", "plugin-error": "^0.1.2", "through2": "^2.0.3" }, "devDependencies": { "@types/gulp": "^4.0.5", "@types/mocha": "^2.2.45", "@types/node": "^8.5.2", "@types/plugin-error": "^0.1.0", "@types/sinon": "^4.1.2", "@types/through2": "^2.0.33", "coveralls": "^2.13.0", "del": "^3.0.0", "istanbul": "^0.4.5", "jshint": "^2.9.4", "mocha": "^3.2.0", "mocha-lcov-reporter": "^1.3.0", "nyc": "^10.2.0", "rimraf": "^2.6.1", "sinon": "^4.1.3", "source-map-support": "^0.5.0", "ts-node": "^4.1.0", "tslint": "^5.8.0", "typedoc": "^0.9.0", "typescript": "^2.6.2" }, "files": [ "src", "dist", "docs" ], "nyc": { "exclude": [ "test/**", "dist/**" ], "extension": [ ".ts", ".tsx" ] } }