UNPKG

@xray-app/xray-automation

Version:

Library for uploading test results to Xray Test Management

77 lines (76 loc) 2.6 kB
{ "name": "@xray-app/xray-automation", "version": "0.3.1", "description": "Library for uploading test results to Xray Test Management", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "umd:main": "dist/umd/index.js", "types": "dist/types/index.d.js", "scripts": { "test": "jest --forceExit", "format": "prettier --write \"src/**/*.ts\" \"types/**/*.ts\" \"__tests__/**/*.ts\"", "lint": "tslint -p tsconfig.json", "cov": "jest --coverage", "coverage": "jest --json --coverage --testLocationInResults --outputFile=report.json --forceExit", "test:badges": "npm run coverage && jest-coverage-badges", "build": "npm run build:cjs && npm run build:esm && npm run build:types", "build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json", "build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json", "build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js", "build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json", "clean": "node tools/cleanup", "package": "npm run build && npm pack", "prepare": "husky install && npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src types", "postversion": "git push && git push --tags" }, "files": [ "dist" ], "repository": { "type": "git", "url": "https://github.com/Xray-App/xray-automation-js.git" }, "bugs": { "url": "https://github.com/Xray-App/xray-automation-js/issues" }, "keywords": [ "xray", "testing", "test-automation", "jira" ], "author": "Sergio Freire <sergio.freire@getxray.app>", "license": "BSD-3-Clause", "dependencies": { "axios": "^0.26.1", "form-data": "^4.0.0", "graphql": "^16.6.0", "graphql-request": "^5.1.0", "promise-retry": "^2.0.1" }, "devDependencies": { "@jest/globals": "^29.3.1", "@typescript-eslint/eslint-plugin": "^4.31.1", "@typescript-eslint/parser": "^4.31.1", "axios-mock-adapter": "^1.21.2", "eslint": "^7.32.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^4.0.0", "husky": "^8.0.2", "jest": "^29.3.1", "jest-coverage-badges": "^1.1.2", "nock": "^13.2.9", "parse-multipart-data": "^1.5.0", "prettier": "^2.4.0", "ts-jest": "^29.0.3", "ts-loader": "^9.2.5", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^4.4.3", "webpack": "^5.52.1", "webpack-cli": "^4.8.0" } }