UNPKG

@liftr/tscov

Version:

Check the type coverage of any TypeScript project with this easy npm package

57 lines (56 loc) 1.74 kB
{ "name": "@liftr/tscov", "version": "2.0.0", "description": "Check the type coverage of any TypeScript project with this easy npm package", "main": "lib/index.js", "repository": "https://github.com/jeroenouw/liftr-tscov.git", "author": "Jeroen Ouwehand @jeroenouw", "license": "MIT", "scripts": { "start": "npm run build && npm run global", "build": " rm -rf ./lib && tsc -p .", "global": "npm i -g && tscov", "link-upstream": "git remote add upstream https://github.com/jeroenouw/liftr-tscov", "sync": "git fetch origin && git checkout master && git pull && git checkout <your-branch> && git merge master && git push", "reset": "rm -rf ./node_modules ./package-lock.json ./lib && npm install", "publish-package": "npm run build && npm publish" }, "typeCoverage": { "minCoverage": 90 }, "bin": { "tscov": "bin/tscov" }, "keywords": [ "cli", "liftr", "tscov", "typescript", "javascript", "type", "coverage", "nodejs" ], "dependencies": { "commander": "^6.0.0", "figlet": "^1.5.0", "glob": "7.1.6", "minimist": "1.2.5", "prompts": "^2.3.2", "tslib": "2.0.1" }, "devDependencies": { "@types/glob": "7.1.1", "@types/jasmine": "3.5.10", "@types/minimist": "1.2.0", "@types/node": "14.6.0", "jasmine": "3.5.0", "no-unused-export": "1.10.2", "standard": "14.3.3", "ts-node": "^9.0.0", "tslint": "6.1.3", "tslint-config-standard": "9.0.0", "tslint-sonarts": "1.9.0", "typescript": "^4.0.2" } }