|
| 1 | +{ |
| 2 | + "name": "allure-bun", |
| 3 | + "version": "3.7.1", |
| 4 | + "description": "Allure Bun integration", |
| 5 | + "keywords": [ |
| 6 | + "allure", |
| 7 | + "bun", |
| 8 | + "html", |
| 9 | + "report", |
| 10 | + "reporter", |
| 11 | + "test", |
| 12 | + "testing", |
| 13 | + "testops" |
| 14 | + ], |
| 15 | + "homepage": "https://allurereport.org/", |
| 16 | + "license": "Apache-2.0", |
| 17 | + "author": { |
| 18 | + "name": "Qameta Software", |
| 19 | + "email": "allure@qameta.io", |
| 20 | + "url": "https://qameta.io/" |
| 21 | + }, |
| 22 | + "repository": { |
| 23 | + "type": "git", |
| 24 | + "url": "https://github.com/allure-framework/allure-js.git", |
| 25 | + "directory": "packages/allure-bun" |
| 26 | + }, |
| 27 | + "files": [ |
| 28 | + "dist" |
| 29 | + ], |
| 30 | + "exports": { |
| 31 | + "./setup": { |
| 32 | + "types": "./dist/types/setup.d.ts", |
| 33 | + "import": "./dist/esm/setup.js", |
| 34 | + "require": "./dist/cjs/setup.js" |
| 35 | + } |
| 36 | + }, |
| 37 | + "scripts": { |
| 38 | + "allure-report": "allure serve ./out/allure-results", |
| 39 | + "clean": "rimraf ./dist ./out", |
| 40 | + "compile": "run-s 'compile:*'", |
| 41 | + "compile:esm-babel": "babel --config-file ./babel.esm.json ./src --out-dir ./dist/esm --extensions '.ts' --source-maps", |
| 42 | + "compile:cjs-babel": "babel --config-file ./babel.cjs.json ./src --out-dir ./dist/cjs --extensions '.ts' --source-maps", |
| 43 | + "compile:types": "tsc", |
| 44 | + "compile:fixup": "node ./scripts/fixup.mjs", |
| 45 | + "generate-report": "allure generate ./out/allure-results -o ./out/allure-report --clean", |
| 46 | + "lint": "oxlint --import-plugin src test", |
| 47 | + "lint:fix": "oxlint --import-plugin --fix src test", |
| 48 | + "pretest": "yarn workspace allure-js-commons compile && yarn run compile", |
| 49 | + "test": "vitest run" |
| 50 | + }, |
| 51 | + "dependencies": { |
| 52 | + "allure-js-commons": "workspace:*" |
| 53 | + }, |
| 54 | + "devDependencies": { |
| 55 | + "@babel/cli": "^7.28.0", |
| 56 | + "@babel/core": "^7.28.0", |
| 57 | + "@babel/preset-env": "^7.28.0", |
| 58 | + "@babel/preset-typescript": "^7.27.1", |
| 59 | + "@types/babel__core": "^7.20.5", |
| 60 | + "@types/babel__preset-env": "^7.10.0", |
| 61 | + "@types/node": "^20.19.0", |
| 62 | + "allure-commandline": "^2.29.0", |
| 63 | + "allure-vitest": "workspace:*", |
| 64 | + "babel-plugin-add-module-exports": "^1.0.4", |
| 65 | + "npm-run-all2": "^8.0.0", |
| 66 | + "rimraf": "^6.0.0", |
| 67 | + "typescript": "^5.2.2", |
| 68 | + "vitest": "^4.0.18" |
| 69 | + } |
| 70 | +} |
0 commit comments