UNPKG

tdpw

Version:

CLI tool for uploading Playwright test reports to TestDino platform with TestDino storage support

80 lines (79 loc) 2.4 kB
{ "name": "tdpw", "version": "1.0.27", "description": "CLI tool for uploading Playwright test reports to TestDino platform with TestDino storage support", "keywords": [ "playwright", "testing", "ci-cd", "test-reports", "testdino", "storage", "cli", "typescript" ], "author": "TestDino Team <support@testdino.com>", "license": "MIT", "homepage": "https://github.com/testdino-inc/testdino-cli#readme", "repository": { "type": "git", "url": "git+https://github.com/testdino-inc/testdino-cli.git" }, "bugs": { "url": "https://github.com/testdino-inc/testdino-cli/issues" }, "main": "dist/cli/index.js", "types": "dist/cli/index.d.ts", "bin": { "tdpw": "./bin/tdpw.js" }, "files": [ "dist/**/*", "bin/**/*", "README.md", "CHANGELOG.md", "LICENSE" ], "engines": { "node": ">=18.0.0", "npm": ">=9.0.0" }, "scripts": { "build": "npm run clean && npm run update-version && tsc && tsc-alias", "update-version": "node -e \"const pkg = require('./package.json'); const fs = require('fs'); const path = require('path'); const dir = path.dirname('src/version.ts'); if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true }); fs.writeFileSync('src/version.ts', 'export const VERSION = \\'' + pkg.version + '\\';', 'utf8'); console.log('Generated version file with version:', pkg.version);\"", "dev": "tsx src/cli/index.ts", "clean": "rimraf dist", "lint": "eslint", "lint:fix": "eslint --fix", "format": "prettier --write .", "format:check": "prettier --check .", "types": "tsc --noEmit", "prepublishOnly": "npm run clean && npm run build && npm run lint" }, "dependencies": { "commander": "^14.0.1", "dotenv-expand": "^12.0.3", "simple-git": "^3.28.0", "tslib": "^2.8.1", "zod": "^4.1.9" }, "devDependencies": { "@eslint/js": "^9.35.0", "@types/node": "^24.5.1", "@typescript-eslint/eslint-plugin": "^8.34.0", "@typescript-eslint/parser": "^8.34.0", "eslint": "^9.35.0", "eslint-config-prettier": "^9.1.0", "globals": "^15.14.0", "prettier": "^3.4.2", "rimraf": "^6.0.1", "tsc-alias": "^1.8.16", "tsx": "^4.19.2", "typescript": "^5.8.3", "typescript-eslint": "^8.34.0" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" } }