UNPKG

ts-guards

Version:
44 lines (43 loc) 1.05 kB
{ "name": "ts-guards", "version": "0.5.1", "description": "A collection of basic type guards.", "author": "Matthieu Bosquet", "license": "MIT", "keywords": [ "Type Guards", "Asserts", "Runtime Validation", "TypeScript" ], "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "build": "npm run clean && tsc", "clean": "rm -rf dist", "prepublishOnly": "npm install && npm run build", "test": "jest \"test/.*\\.test\\.ts\"" }, "publishConfig": { "registry": "https://registry.npmjs.org" }, "repository": { "type": "git", "url": "git+https://github.com/matthieubosquet/ts-guards.git" }, "bugs": { "url": "https://github.com/matthieubosquet/ts-guards/issues" }, "homepage": "https://github.com/matthieubosquet/ts-guards#readme", "devDependencies": { "@tsconfig/node14": "^1.0.0", "@types/jest": "^26.0.15", "@types/node": "^14.14.7", "jest": "^26.6.3", "ts-jest": "^26.4.4", "typescript": "^4.0.5" } }