UNPKG

typescanner

Version:

A simple library for implementing type guard in TypeScript.

58 lines (57 loc) 1.52 kB
{ "name": "typescanner", "version": "0.5.3", "description": "A simple library for implementing type guard in TypeScript.", "author": "yona3", "repository": { "type": "git", "url": "git+https://github.com/yona3/typescanner" }, "keywords": [ "typescript", "type-guard" ], "bugs": { "url": "https://github.com/yona3/typescanner/issues" }, "homepage": "https://github.com/yona3/typescanner#readme", "license": "MIT", "main": "dist/index.js", "typeing": "dist/index.d.ts", "engines": { "node": ">=14" }, "scripts": { "prepare": "husky install", "lint": "eslint src/**/*.ts", "format": "prettier --write . && yarn lint -- --fix", "start": "node ./dist", "dev": "ts-node-dev --respawn src/index.ts", "build": "tsc -p tsconfig.production.json", "test": "jest" }, "lint-staged": { "*.ts": [ "yarn format" ] }, "devDependencies": { "@types/jest": "^27.0.2", "@types/node": "^17.0.23", "@typescript-eslint/eslint-plugin": "^5.17.0", "@typescript-eslint/parser": "^5.17.0", "eslint": "8.12.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "^2.24.2", "eslint-plugin-import-access": "^1.0.0", "eslint-plugin-simple-import-sort": "^7.0.0", "eslint-plugin-unused-imports": "^2.0.0", "husky": "^7.0.2", "jest": "^27.2.5", "lint-staged": "^12.3.7", "prettier": "^2.4.1", "ts-jest": "^27.0.5", "ts-node-dev": "^1.1.8", "typescript": "^4.6.3" } }