ghinfo
Version:
CLI util for generating a GitHub project information file
65 lines (64 loc) • 1.92 kB
JSON
{
"name": "ghinfo",
"version": "4.0.1",
"description": "CLI util for generating a GitHub project information file",
"license": "MIT",
"homepage": "https://github.com/keindev/ghinfo#readme",
"author": "Daniil Ryazanov <kein@tagproject.ru>",
"keywords": [
"automated",
"cli",
"github",
"info",
"repo",
"util"
],
"bugs": "https://github.com/keindev/ghinfo/issues",
"types": "./lib/index.d.ts",
"type": "module",
"exports": {
".": "./lib/index.js",
"./lib/types": "./lib/types.js"
},
"bin": {
"ghinfo": "bin/ghinfo.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keindev/ghinfo.git"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "run-s build:*",
"build:ts": "rimraf lib && tsc --extendedDiagnostics",
"generate": "run-s generate:*",
"generate:changelog": "changelog generate --bump",
"generate:ghinfo": "node --loader ts-node/esm src/cli/bin.ts generate -d media -t utils",
"lint": "run-s lint:*",
"lint:eslint": "rimraf coverage && eslint src --ext .ts",
"lint:spell": "cspell -c .vscode/cspell.json --no-summary \"**/*.{js,ts,tsx,md,yml,json}\"",
"prepare": "run-s prepare:*",
"prepare:config": "ts-package-shared-config",
"prepare:docs": "docs-shared-config",
"prepare:husky": "husky install",
"prepare:vscode": "vscode-shared-config",
"release": "run-s prepare lint test build generate",
"test": "run-s test:*",
"test:jest": "node --experimental-vm-modules node_modules/.bin/jest"
},
"dependencies": {
"figures": "^6.0.1",
"glob": "^10.3.10",
"package-json-helper": "^6.0.0",
"parse-github-url": "^1.0.2",
"stdout-update": "^4.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@tagproject/ts-package-shared-config": "^11.0.4",
"@types/parse-github-url": "^1.0.3",
"ts-node": "^10.9.2"
}
}