UNPKG

@carv/is

Version:

Type checking utilities

74 lines (73 loc) 1.59 kB
{ "version": "1.2.0", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist" ], "engines": { "node": ">=10" }, "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "test:coverage": "tsdx test --coverage", "lint": "tsdx lint", "size": "size-limit", "analyze": "size-limit --why", "version": "typedoc && git add docs", "prepare": "tsdx build", "release": "np", "typedoc": "typedoc" }, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": false, "singleQuote": true, "trailingComma": "all" }, "name": "@carv/is", "description": "Type checking utilities", "author": "Sascha Tandel", "homepage": "https://github.com/carvjs/is#readme", "bugs": { "url": "https://github.com/carvjs/is/issues" }, "repository": { "type": "git", "url": "git+https://github.com/carvjs/is.git" }, "module": "dist/is.esm.js", "size-limit": [ { "path": "dist/is.cjs.production.min.js", "limit": "1 KB" }, { "path": "dist/is.esm.js", "limit": "1 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "^4.6.0", "husky": "^4.3.0", "np": "^6.5.0", "size-limit": "^4.6.0", "tsdx": "^0.14.1", "tslib": "^2.0.3", "typedoc": "0.17.0-3", "typedoc-plugin-markdown": "^3.0.11", "typescript": "^4.0.3" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" } }