UNPKG

variable-type

Version:

Runtime type checking for variable and similar objects.

56 lines (55 loc) 1.21 kB
{ "name": "variable-type", "version": "1.0.0", "description": "Runtime type checking for variable and similar objects.", "main": "lib/index.js", "files": [ "lib" ], "scripts": { "test": "jest --coverage", "perf": "ts-node perf/benchmark.ts", "build": "tsc" }, "repository": { "type": "git", "url": "git+https://github.com/hustcc/variable-type.git" }, "keywords": [ "variable-type", "var-type", "prop-types", "check-type", "type-checking" ], "author": "hustcc", "license": "MIT", "bugs": { "url": "https://github.com/hustcc/variable-type/issues" }, "homepage": "https://github.com/hustcc/variable-type#readme", "devDependencies": { "@types/benchmark": "^1.0.31", "@types/jest": "^24.0.25", "@types/prop-types": "^15.7.3", "benchmark": "^2.1.4", "jest": "^24.9.0", "prop-types": "^15.5.10", "ts-jest": "^24.3.0", "ts-node": "^8.5.4", "typescript": "^3.7.4" }, "jest": { "roots": [ "tests" ], "preset": "ts-jest", "testEnvironment": "node", "collectCoverageFrom": [ "src/**/*.ts" ], "coveragePathIgnorePatterns": [ "src/*.d.ts" ] } }