package.json
{
"name": "minibase-assert",
"version": "1.0.2",
"description": "Plugin for [minibase][] and [base][], that adds assertion methods - most of [assert-kindof][] methods and built-ins assert module.",
"repository": "node-minibase/minibase-assert",
"author": "Charlike Mike Reagent <@tunnckoCore> (http://www.tunnckocore.tk)",
"precommit.silent": true,
"main": "index.js",
"license": "MIT",
"scripts": {
"lint": "standard --verbose",
"pretest": "npm run lint",
"test": "npm run coverage",
"posttest": "npm run lint:coverage",
"coverage": "nyc node test.js",
"lint:coverage": "nyc check-coverage --lines 100 --branches 100 --statements 100 --functions 100",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"prerelease": "npm test",
"release": "standard-version --sign --no-verify",
"precommit": "git add --all",
"commit": "git-cz"
},
"dependencies": {
"assert-kindof": "^2.0.0",
"core-assert": "^0.2.1",
"extend-shallow": "^2.0.1",
"lazy-cache": "^2.0.1",
"minibase-create-plugin": "^1.0.2"
},
"devDependencies": {
"commitizen": "~2.7.0",
"coveralls": "^2.11.15",
"cz-conventional-changelog": "1.1.5",
"minibase": "^1.0.0",
"mukla": "^0.4.8",
"nyc": "^10.2.0",
"pre-commit": "^1.1.3",
"standard": "^8.5.0",
"standard-version": "^3.0.0"
},
"files": [
"index.js",
"utils.js"
],
"keywords": [
"assert",
"assertion",
"base",
"baseplugin",
"check",
"core",
"is",
"kind",
"kindof",
"lib",
"minibase",
"minibaseplugin",
"plugin",
"type",
"typecheck",
"typeof",
"validate",
"validation"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"verb": {
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 3,
"footer": ""
},
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"highlight": "is-kindof",
"list": [
"minibase",
"minibase-create-plugin",
"minibase-visit",
"minibase-better-define",
"minibase-is-registered",
"minibase-results",
"always-done",
"minibase-tests"
]
},
"reflinks": [
"assert-kindof",
"async-done",
"base",
"collection-visit",
"is-kindof",
"kind-of",
"minibase",
"commitizen",
"standard-version",
"verb",
"verb-generate-readme"
],
"lint": {
"reflinks": true
}
}
}