UNPKG

tdpw

Version:

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

79 lines (78 loc) 1.96 kB
{ "name": "tdpw", "version": "1.0.7", "description": "CLI tool for uploading Playwright test reports to TestDino platform with Azure storage support", "keywords": [ "playwright", "testing", "ci-cd", "test-reports", "testdino", "azure", "cli", "typescript" ], "author": "TestDino Team <support@testdino.com>", "license": "MIT", "homepage": "https://github.com/alphabin-01/testdino-cli#readme", "repository": { "type": "git", "url": "git+https://github.com/alphabin-01/testdino-cli.git" }, "bugs": { "url": "https://github.com/alphabin-01/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 && tsc && tsc-alias", "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.0", "dotenv-expand": "^12.0.2", "simple-git": "^3.28.0", "tslib": "^2.8.1", "zod": "^3.25.58" }, "devDependencies": { "@eslint/js": "^9.29.0", "@types/node": "^22.10.5", "@typescript-eslint/eslint-plugin": "^8.34.0", "@typescript-eslint/parser": "^8.34.0", "eslint": "^9.29.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/" } }