@currents/cmd
Version:
Currents CLI tools
127 lines (126 loc) • 3.29 kB
JSON
{
"name": "@currents/cmd",
"version": "1.9.4",
"main": "./dist/index.js",
"author": {
"name": "Currents Software Inc",
"email": "hello@currents.dev"
},
"license": "MIT",
"description": "Currents CLI tools",
"scripts": {
"test": "vitest",
"rm": "rimraf dist",
"lint": "TIMING=1 eslint \"**/*.ts*\"",
"types": "tsc --noEmit",
"build": "tsup-node --minify --dts",
"dev": "tsup-node --watch --dts",
"release": "release-it",
"publish:npm": "npm run rm && npm run build && ./publish.js"
},
"devDependencies": {
"@jest/reporters": "^29.7.0",
"@jest/types": "^29.6.3",
"@release-it/conventional-changelog": "^10.0.1",
"@types/archiver": "^6.0.3",
"@types/async-retry": "^1.4.9",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/getos": "^3.0.4",
"@types/lodash": "^4.17.16",
"@types/node": "^22.13.14",
"@types/proxy-from-env": "^1.0.4",
"@types/semver": "^7.5.8",
"@types/tmp": "^0.2.6",
"@types/unzipper": "^0.10.11",
"@types/uuid": "^10.0.0",
"@types/xml2js": "^0.4.14",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.9"
},
"dependencies": {
"@commander-js/extra-typings": "^12.1.0",
"@currents/commit-info": "1.0.1-beta.0",
"archiver": "^7.0.1",
"async-retry": "^1.3.3",
"axios": "^1.8.4",
"axios-retry": "^4.5.0",
"chalk": "^4.1.2",
"commander": "^13.1.0",
"debug": "^4.4.0",
"dotenv": "^16.5.0",
"execa": "^9.5.1",
"fs-extra": "^11.3.0",
"getos": "^3.2.1",
"globby": "^11.1.0",
"https-proxy-agent": "^7.0.4",
"jest-cli": "^29.7.0",
"jest-config": "^29.7.0",
"lodash": "^4.17.21",
"nanoid": "^3.3.8",
"pretty-ms": "^7.0.1",
"proxy-from-env": "^1.1.0",
"semver": "^7.7.1",
"source-map-support": "^0.5.21",
"tmp": "^0.2.3",
"tmp-promise": "^3.0.3",
"ts-pattern": "^5.7.0",
"unzipper": "^0.12.3",
"uuid": "^11.1.0",
"xml2js": "^0.6.2"
},
"bin": {
"currents": "./dist/bin/index.js",
"currents-cli": "./dist/bin/index.js"
},
"files": [
"dist",
"!**/*.map",
"!**/*/*.map"
],
"keywords": [
"cloud test dashboard",
"test reporter",
"test results",
"currents",
"currents dashboard",
"ci"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./discovery/jest": {
"import": "./dist/services/upload/discovery/jest/reporter.js",
"require": "./dist/services/upload/discovery/jest/reporter.js",
"types": "./dist/services/upload/discovery/jest/reporter.d.ts"
},
"./package.json": "./package.json"
},
"release-it": {
"npm": {
"publish": false
},
"github": {
"release": true,
"releaseName": "${npm.name} v${version}"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"header": "# Changelog",
"ignoreVersion": true,
"infile": "./CHANGELOG.md"
}
},
"git": {
"commitMessage": "chore: release ${npm.name} v${version}",
"tagName": "${npm.name}-v${version}"
}
}
}