print-cachedir
Version:
Prints cache dir for a given project that uses [cachedir](https://github.com/LinusU/node-cachedir)
105 lines (104 loc) • 2.64 kB
JSON
{
"name": "print-cachedir",
"description": "Prints cache dir for a given project that uses [cachedir](https://github.com/LinusU/node-cachedir)",
"version": "1.0.2",
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"bugs": "https://github.com/bahmutov/print-cachedir/issues",
"bin": {
"print-cachedir": "bin/print-cachedir.js"
},
"config": {
"pre-git": {
"commit-msg": "simple",
"pre-commit": [
"npm prune",
"npm run deps",
"npm test",
"git add src/*.js",
"npm run ban"
],
"pre-push": [
"npm run unused-deps",
"npm run secure",
"npm run license",
"npm run ban -- --all",
"npm run size"
],
"post-commit": [],
"post-merge": []
}
},
"engines": {
"node": ">=6"
},
"files": [
"src/*.js",
"!src/*-spec.js",
"bin"
],
"homepage": "https://github.com/bahmutov/print-cachedir#readme",
"keywords": [
"cache",
"cachedir",
"cli",
"print"
],
"license": "MIT",
"main": "src/",
"private": false,
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"release": {
"analyzeCommits": {
"preset": "angular",
"releaseRules": [
{
"type": "break",
"release": "major"
}
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/print-cachedir.git"
},
"scripts": {
"ban": "ban",
"deps": "deps-ok && dependency-check --no-dev .",
"issues": "git-issues",
"license": "license-checker --production --onlyunknown --csv",
"lint": "standard --verbose --fix src/*.js bin/*.js",
"prelint": "npm run pretty",
"pretest": "npm run lint",
"pretty": "prettier-standard 'src/*.js' 'bin/*.js'",
"secure": "nsp check",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "npm run unit",
"unit": "mocha src/*-spec.js",
"unused-deps": "dependency-check --unused --no-dev .",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"devDependencies": {
"ban-sensitive-files": "1.9.2",
"dependency-check": "3.1.0",
"deps-ok": "1.4.1",
"execa-wrap": "1.4.0",
"git-issues": "1.3.1",
"lazy-ass": "1.6.0",
"license-checker": "20.1.0",
"mocha": "5.2.0",
"nsp": "3.2.1",
"pre-git": "3.17.1",
"prettier-standard": "8.0.1",
"standard": "11.0.1",
"semantic-release": "15.5.2",
"travis-deploy-once": "5.0.0"
},
"dependencies": {
"cachedir": "1.3.0",
"simple-bin-help": "1.7.1"
}
}