vanilla-type-check
Version:
54 lines (53 loc) • 1.25 kB
JSON
{
"name": "vanilla-type-check",
"version": "2.0.3",
"description": "Basic type checker",
"main": "index.js",
"scripts": {
"build": "npm run build:ts && npm run build:docs",
"build:ts": "rimraf lib && tsc",
"build:docs": "rimraf docs && typedoc ./src",
"clean": "rimraf lib docs",
"test": "nyc mocha -r ts-node/register test/index.ts"
},
"keywords": [
"type",
"check",
"typecheck",
"vanilla",
"javascript",
"typescript",
"isArray",
"isBoolean",
"isDom",
"isEmpty",
"isFunction",
"isInt",
"isNumber",
"isNumeric",
"isObject",
"isPlainObject",
"isString"
],
"repository": {
"type": "git",
"url": "https://github.com/danikaze/npm-vanilla-type-check.git"
},
"homepage": "https://github.com/danikaze/npm-vanilla-type-check",
"bugs": "https://github.com/danikaze/npm-vanilla-type-check/issues",
"author": {
"name": "danikaze",
"email": "danikaze@gmail.com"
},
"license": "ISC",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.0.2",
"nyc": "^13.2.0",
"rimraf": "^2.6.3",
"ts-node": "^7.0.1",
"typedoc": "^0.12.0",
"typedoc-plugin-markdown": "^1.1.26",
"typescript": "^3.3.3"
}
}