package.json
{
"name": "is-installed",
"version": "2.0.1",
"description": "Checks that given package is installed locally or globally. Useful for robust resolving when you want some package - it will check first if it exists locally, then if it exists globally",
"repository": "tunnckoCore/is-installed",
"author": "Charlike Mike Reagent <@tunnckoCore> (http://i.am.charlike.online)",
"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": {
"detect-installed": "^2.0.4"
},
"devDependencies": {
"commitizen": "^2.8.6",
"coveralls": "^2.11.15",
"cz-conventional-changelog": "^1.2.0",
"mukla": "^0.4.8",
"nyc": "^10.0.0",
"pre-commit": "^1.2.1",
"standard": "^8.6.0",
"standard-version": "^4.0.0"
},
"files": [
"index.js"
],
"keywords": [
"check",
"globally",
"installed",
"locally",
"npm",
"package",
"pkg",
"utils",
"validate"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=4",
"npm": ">=2"
},
"verb": {
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 3,
"footer": ""
},
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"always-done",
"minibase",
"try-catch-core",
"get-installed-path",
"detect-installed",
"global-modules",
"global-prefix",
"global-paths"
],
"highlight": "get-installed-path"
},
"reflinks": [
"always-done",
"async-done",
"base",
"charlike",
"commitizen",
"dezalgo",
"once",
"standard-version",
"verb",
"verb-generate-readme",
"detect-installed",
"global-modules",
"global-prefix"
],
"lint": {
"reflinks": true
}
}
}