UNPKG

junit2json

Version:
69 lines (68 loc) 2.1 kB
{ "name": "junit2json", "version": "3.1.14", "description": "Convert JUnit XML format to JSON", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts", "type": "module", "exports": { ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.ts", "default": "./dist/cjs/index.js" }, "default": "./dist/cjs/index.js" }, "./package.json": "./package.json" }, "files": [ "dist/", "src/", "LICENSE" ], "bin": { "junit2json": "dist/cjs/cli.js" }, "scripts": { "clean": "rm -rf dist", "build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json && tsconfig-to-dual-package", "test": "node --test --experimental-strip-types --experimental-test-snapshots tests/**/*.test.ts", "test:watch": "node --test --experimental-strip-types --experimental-test-snapshots --watch tests/**/*.test.ts", "doc": "deno doc --unstable-byonm --unstable-sloppy-imports --html --name=junit2json src", "doc:lint": "deno doc --unstable-byonm --unstable-sloppy-imports --lint src", "integrate_test": "node --test integrate_tests/*.test.*", "release:prepublish": "earthly +prepublish", "release": "earthly +publish", "jsr:version": "jq -r '.version' package.json | xargs -I {} jq '.version = \"{}\"' jsr.json > temp.json && mv temp.json jsr.json" }, "repository": { "type": "git", "url": "git+https://github.com/Kesin11/ts-junit2json.git" }, "keywords": [ "junit", "parser" ], "author": "kesin1202000@gmail.com", "license": "MIT", "bugs": { "url": "https://github.com/Kesin11/ts-junit2json/issues" }, "homepage": "https://github.com/Kesin11/ts-junit2json#readme", "dependencies": { "@types/xml2js": "0.4.14", "xml2js": "0.6.2", "yargs": "17.7.2" }, "devDependencies": { "@types/node": "22.13.5", "@types/yargs": "17.0.33", "tsconfig-to-dual-package": "^1.2.0", "typescript": "5.7.3" } }