is-or-not
Version:
A Set of `is` and `isNot` functions in JavaScript checking and testing on objects and types
53 lines (52 loc) • 1.43 kB
JSON
{
"name": "is-or-not",
"version": "1.0.4",
"description": "A Set of `is` and `isNot` functions in JavaScript checking and testing on objects and types",
"main": "index.js",
"repository": "git@github.com:AlaeddineMessadi/is-or-not.git",
"author": "Alaeddine Messadi <alaeddine.messadi@gmail.com> (https://almessadi.com)",
"license": "MIT",
"homepage": "https://alaeddinemessadi.github.io/is-or-not/index.html",
"keywords": [
"util",
"type",
"test",
"js-utils",
"utils-lib",
"is",
"type-check"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"commit": "cz",
"eslint": "eslint '**/*.js'",
"eslint:fix": "eslint '**/*.js' --fix",
"jsdoc": "./node_modules/.bin/jsdoc -c ./jsdoc.json"
},
"bugs": {
"url": "https://github.com/AlaeddineMessadi/is-or-not/issues"
},
"devDependencies": {
"cz-conventional-changelog": "3.3.0",
"docdash": "^1.2.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jsdoc": "^3.6.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "yarn test && yarn eslint:fix && yarn jsdoc",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"dependencies": {}
}