UNPKG

typescript-coverage

Version:

A dead-simple criteria to track your Typescript migration

61 lines 1.71 kB
{ "name": "typescript-coverage", "version": "1.0.0", "type": "module", "main": "./dist/es/index.js", "module": "./dist/es/index.js", "types": "./dist/types/index.d.ts", "bin": { "typescript-coverage": "./dist/executable.js" }, "description": "A dead-simple criteria to track your Typescript migration", "keywords": [ "typescript", "ts", "typescript-coverage", "type", "coverage", "type-coverage", "node" ], "author": "Dmitrii Novozhilov <dmitrii.novozhilov@prosehair.com>", "repository": { "type": "git", "url": "https://github.com/prosehair/typescript-coverage.git" }, "bugs": { "url": "https://github.com/prosehair/typescript-coverage/issues" }, "homepage": "https://github.com/prosehair/typescript-coverage", "license": "MIT", "files": [ "dist" ], "devDependencies": { "@rollup/plugin-typescript": "^11.1.6", "@types/jest": "^29.5.12", "@types/node": "^20.14.10", "chalk": "^5.3.0", "glob": "^11.0.0", "jest": "^29.7.0", "prettier": "^3.3.3", "rollup": "^4.18.1", "ts-jest": "^29.2.3", "tslib": "^2.6.3", "typescript": "^5.5.3" }, "peerDependencies": { "chalk": "^5.3.0", "glob": "^11.0.0" }, "scripts": { "e2e": "pnpm build && chmod +x ./dist/executable.js && ./dist/executable.js", "build": "rm -rf dist && pnpm type:generate && rollup -c", "type:generate": "tsc --project tsconfig.declarations.json", "type:check": "tsc --noEmit", "test": "jest", "test:coverage": "pnpm test -- --collectCoverage", "test:watch": "pnpm test -- --watch", "release:patch": "pnpm version patch && pnpm publish && git push --follow-tags" } }