UNPKG

@badeball/cypress-cucumber-preprocessor

Version:

[![Build status](https://github.com/badeball/cypress-cucumber-preprocessor/actions/workflows/build.yml/badge.svg)](https://github.com/badeball/cypress-cucumber-preprocessor/actions/workflows/build.yml) [![Npm package weekly downloads](https://badgen.net/n

165 lines (164 loc) 4.76 kB
{ "name": "@badeball/cypress-cucumber-preprocessor", "version": "19.0.1", "author": "Jonas Amundsen", "license": "MIT", "homepage": "https://github.com/badeball/cypress-cucumber-preprocessor", "repository": { "type": "git", "url": "https://github.com/badeball/cypress-cucumber-preprocessor.git" }, "funding": [ { "type": "github", "url": "https://github.com/sponsors/badeball" } ], "keywords": [ "cypress", "cypress-plugin", "cypress-preprocessor" ], "bin": { "cypress-cucumber-diagnostics": "dist/bin/diagnostics.js", "cucumber-html-formatter": "dist/bin/cucumber-html-formatter.js", "cucumber-json-formatter": "dist/bin/cucumber-json-formatter.js" }, "main": "dist/entrypoint-node.js", "types": "dist/entrypoint-node.d.ts", "browser": "dist/entrypoint-browser.js", "exports": { ".": { "node": "./dist/entrypoint-node.js", "types": "./dist/entrypoint-node.d.ts", "browser": "./dist/entrypoint-browser.js" }, "./*": "./dist/subpath-entrypoints/*.js" }, "files": [ "dist/**/*.js", "dist/**/*.d.ts" ], "scripts": { "clean": "rm -rf dist", "build": "tsc", "watch": "tsc --watch", "fmt": "prettier --ignore-path .gitignore --write '**/*.ts'", "test": "npm run test:fmt && npm run test:lint && npm run test:types && npm run test:unit && npm run test:integration", "test:fmt": "prettier --ignore-path .gitignore --check '**/*.ts'", "test:lint": "eslint --max-warnings=0 .", "test:types": "tsc -p test-d", "test:unit": "mocha", "test:run-all-specs": "mocha --timeout 0 test/run-all-specs.ts", "test:integration": "cucumber-js", "prepublishOnly": "npm run clean && npm run build && npm run test" }, "dependencies": { "@badeball/cypress-configuration": "^6.1.0", "@cucumber/cucumber": "^10.0.0", "@cucumber/cucumber-expressions": "^17.0.0", "@cucumber/gherkin": "^27.0.0", "@cucumber/html-formatter": "^20.4.0", "@cucumber/message-streams": "^4.0.1", "@cucumber/messages": "^22.0.0", "@cucumber/pretty-formatter": "^1.0.0", "@cucumber/tag-expressions": "^6.0.0", "base64-js": "^1.5.1", "chalk": "^4.1.2", "cli-table": "^0.3.11", "common-ancestor-path": "^1.0.1", "cosmiconfig": "^8.3.6", "debug": "^4.3.4", "error-stack-parser": "^2.1.4", "esbuild": "^0.19.4", "glob": "^10.3.10", "is-path-inside": "^3.0.3", "mocha": "^10.2.0", "seedrandom": "^3.0.5", "source-map": "^0.7.4", "split": "^1.0.1", "uuid": "^9.0.1" }, "devDependencies": { "@babel/parser": "^7.23.0", "@babel/types": "^7.23.0", "@bahmutov/cypress-esbuild-preprocessor": "^2.2.0", "@cypress/browserify-preprocessor": "^3.0.2", "@cypress/webpack-preprocessor": "^6.0.0", "@types/cli-table": "^0.3.2", "@types/common-ancestor-path": "^1.0.0", "@types/debug": "^4.1.9", "@types/glob": "^8.1.0", "@types/jsdom": "^21.1.3", "@types/mocha": "^10.0.2", "@types/pngjs": "^6.0.2", "@types/prettier": "^2.7.3", "@types/seedrandom": "^3.0.6", "@types/split": "^1.0.3", "@types/stream-buffers": "^3.0.5", "@typescript-eslint/eslint-plugin": "^6.7.5", "@typescript-eslint/parser": "^6.7.5", "ast-types": "^0.15.2", "cypress": "^13.3.1", "eslint": "^8.51.0", "jsdom": "^22.1.0", "pngjs": "^7.0.0", "prettier": "^2.8.8", "recast": "^0.23.4", "rollup": "^4.1.0", "stream-buffers": "^3.0.2", "strip-ansi": "^6.0.1", "strip-indent": "^3.0.0", "ts-loader": "^9.5.0", "ts-node": "^10.9.1", "tsd": "^0.29.0", "typescript": "^5.2.2", "webpack": "^5.89.0" }, "peerDependencies": { "@cypress/browserify-preprocessor": "^3.0.1", "cypress": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0" }, "peerDependenciesMeta": { "@cypress/browserify-preprocessor": { "optional": true } }, "engines": { "node": ">=18.0.0" }, "eslintConfig": { "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended" ], "rules": { "@typescript-eslint/no-unused-vars": [ "warn", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_", "caughtErrorsIgnorePattern": "^_" } ], "@typescript-eslint/no-explicit-any": 0, "@typescript-eslint/no-floating-promises": "error" }, "parser": "@typescript-eslint/parser", "parserOptions": { "project": [ "tsconfig.eslint.json" ] }, "plugins": [ "@typescript-eslint" ], "ignorePatterns": [ "examples/**/*", "tmp/**/*", "**/*.js", "**/*.d.ts" ], "root": true } }