UNPKG

loose-ts-check

Version:

Run TS type-check and ignore certain errors in some files

59 lines (58 loc) 1.53 kB
{ "name": "loose-ts-check", "version": "2.0.0", "description": "Run TS type-check and ignore certain errors in some files", "bin": "bin/loose-ts-check", "scripts": { "build": "tsc -p tsconfig.build.json", "type-check": "tsc", "test": "jest", "test:unit": "jest src/", "test:integration": "jest test/", "test:integration:only-latest": "ONLY_LATEST_VERSION=1 jest test/", "test:watch": "npm run test -- --watch", "lint:formatting": "prettier --check src *.md", "fix:formatting": "prettier --write src *.md", "prepublishOnly": "rm -rf dist && npm run build", "prepare": "husky install" }, "repository": { "type": "git", "url": "git+https://github.com/Gelio/loose-ts-check.git" }, "keywords": [ "typescript", "type-check", "loose", "config" ], "files": [ "dist", "bin" ], "author": "Grzegorz Rozdzialik <voreny.gelio@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/Gelio/loose-ts-check/issues" }, "homepage": "https://github.com/Gelio/loose-ts-check#readme", "devDependencies": { "@types/jest": "^29.2.5", "@types/minimatch": "^5.1.2", "husky": "^8.0.3", "jest": "^29.3.1", "lint-staged": "^13.1.0", "prettier": "^2.8.2", "ts-jest": "^29.0.3", "typescript": "^4.9.4" }, "lint-staged": { "*.{ts,md}": "prettier --write" }, "dependencies": { "chalk": "^4.1.0", "minimatch": "^5.1.2", "ts-invariant": "^0.10.3", "yargs": "^17.6.2" } }