cli/package.json

109 lines
3.7 KiB
JSON
Raw Permalink Normal View History

2024-06-21 17:48:43 +00:00
{
"name": "@git.zone/cli",
"private": false,
2024-06-23 22:03:54 +00:00
"version": "1.9.122",
2024-06-21 17:48:43 +00:00
"description": "A CLI toolbelt to streamline local development cycles by using various gitzone utilities.",
"main": "dist_ts/index.ts",
"typings": "dist_ts/index.d.ts",
"type": "module",
"bin": {
"gitzone": "./cli.js",
"gzone": "./cli.js"
},
"scripts": {
2024-06-23 11:26:51 +00:00
"test": "(npm run clean && npm run prepareTest && npm run testCli && npm run testFormat && npm run testCommit && npm run testDeprecate && npm run testVersion && npm run testReadme && npm run testUpdate && npm run testTemplateNpm && npm run testTemplateLit) && rm -rf test",
2024-06-21 17:48:43 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"clean": "(rm -rf test/)",
"prepareTest": "(git clone https://gitlab.com/sandboxzone/sandbox-npmts.git test/)",
"testBuild": "npm run build && rm -r dist/",
"testCli": "(cd test && node ../cli.ts.js)",
"testCommit": "(cd test && node ../cli.ts.js commit)",
"testDeprecate": "(cd test && node ../cli.ts.js deprecate)",
"testOpen": "(cd test && node ../cli.ts.js open ci)",
"testReadme": "(cd test && node ../cli.ts.js readme)",
"testFormat": "(cd test && node ../cli.ts.js format)",
"testTemplateNpm": "(rm -rf test/testtemplate_npm/ && mkdir test/testtemplate_npm && cd test/testtemplate_npm && node ../../cli.ts.js template npm)",
"testTemplateLit": "(rm -rf test/testtemplate_lit/ && mkdir test/testtemplate_lit && cd test/testtemplate_lit && node ../../cli.ts.js template lit)",
"testUpdate": "(cd test && node ../cli.ts.js update)",
"testVersion": "(cd test && node ../cli.ts.js -v)",
"buildDocs": "tsdoc"
},
"repository": {
"type": "git",
2024-06-23 07:25:27 +00:00
"url": "https://code.foss.global/git.zone/cli.git"
2024-06-21 17:48:43 +00:00
},
"keywords": [
"CLI",
"development",
"git",
"npm",
"TypeScript",
"automation",
"project setup",
"code formatting",
"template creation",
"logging",
"meta project management"
],
"author": "Task Venture Capital GmbH",
"license": "MIT",
"bugs": {
2024-06-23 11:26:51 +00:00
"url": "https://code.foss.global/git.zone/cli/issues"
2024-06-21 17:48:43 +00:00
},
2024-06-23 07:22:42 +00:00
"homepage": "https://pages.foss.global/git.zone/cli",
2024-06-21 17:48:43 +00:00
"devDependencies": {
"@git.zone/tsbuild": "^2.1.80",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.90",
2024-06-23 11:26:51 +00:00
"@types/node": "^20.14.8"
2024-06-21 17:48:43 +00:00
},
"dependencies": {
"@git.zone/tsdoc": "^1.3.12",
2024-06-23 11:26:51 +00:00
"@push.rocks/commitinfo": "^1.0.12",
2024-06-21 17:48:43 +00:00
"@push.rocks/early": "^4.0.4",
"@push.rocks/gulp-function": "^3.0.7",
"@push.rocks/lik": "^6.0.15",
"@push.rocks/npmextra": "^5.0.23",
"@push.rocks/projectinfo": "^5.0.2",
"@push.rocks/smartchok": "^1.0.34",
"@push.rocks/smartcli": "^4.0.11",
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartfile": "^11.0.21",
2024-06-21 17:48:43 +00:00
"@push.rocks/smartgulp": "^3.0.4",
"@push.rocks/smartinteract": "^2.0.15",
"@push.rocks/smartjson": "^5.0.20",
"@push.rocks/smartlegal": "^1.0.27",
"@push.rocks/smartlog": "^3.0.7",
"@push.rocks/smartlog-destination-local": "^9.0.2",
"@push.rocks/smartmustache": "^3.0.2",
"@push.rocks/smartnpm": "^2.0.4",
"@push.rocks/smartobject": "^1.0.12",
"@push.rocks/smartopen": "^2.0.0",
"@push.rocks/smartpath": "^5.0.18",
"@push.rocks/smartpromise": "^4.0.4",
2024-06-21 17:48:43 +00:00
"@push.rocks/smartscaf": "^4.0.15",
"@push.rocks/smartshell": "^3.0.5",
"@push.rocks/smartstream": "^3.0.44",
"@push.rocks/smartunique": "^3.0.9",
"@push.rocks/smartupdate": "^2.0.6",
"@types/through2": "^2.0.41",
"prettier": "^3.3.2",
"through2": "^4.0.2"
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
]
2024-06-22 11:11:31 +00:00
}