{ "name": "@japa/runner", "version": "2.5.1", "description": "Runner for Japa testing framework", "main": "build/index.js", "files": [ "build/src", "build/index.d.ts", "build/index.js" ], "exports": { ".": "./build/index.js" }, "scripts": { "mrm": "mrm --preset=@adonisjs/mrm-preset", "pretest": "npm run lint", "test": "cross-env NODE_DEBUG=japa:runner node .bin/test.js", "clean": "del-cli build", "compile": "npm run lint && npm run clean && tsc", "build": "npm run compile", "prepublishOnly": "npm run build", "lint": "eslint . --ext=.ts", "format": "prettier --write .", "commit": "git-cz", "release": "np --message=\"chore(release): %s\"", "version": "npm run build", "sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json japa/runner" }, "keywords": [ "japa", "tests", "test-runner" ], "author": "virk,japa", "license": "MIT", "devDependencies": { "@adonisjs/mrm-preset": "^5.0.3", "@adonisjs/require-ts": "^2.0.13", "@types/node": "^18.14.0", "commitizen": "^4.3.0", "cross-env": "^7.0.3", "cz-conventional-changelog": "^3.3.0", "del-cli": "^5.0.0", "eslint": "^8.33.0", "eslint-config-prettier": "^8.6.0", "eslint-plugin-adonis": "^2.1.1", "eslint-plugin-prettier": "^4.2.1", "github-label-sync": "^2.2.0", "husky": "^8.0.3", "japa": "^4.0.0", "mrm": "^4.1.13", "np": "^7.6.3", "prettier": "^2.8.4", "typescript": "^4.9.5" }, "mrmConfig": { "core": false, "license": "MIT", "services": [ "github-actions" ], "minNodeVersion": "16.13.1", "probotApps": [ "stale", "lock" ], "runGhActionsOnWindows": true }, "eslintConfig": { "extends": [ "plugin:adonis/typescriptPackage", "prettier" ], "plugins": [ "prettier" ], "rules": { "prettier/prettier": [ "error", { "endOfLine": "auto" } ] } }, "eslintIgnore": [ "build" ], "prettier": { "trailingComma": "es5", "semi": false, "singleQuote": true, "useTabs": false, "quoteProps": "consistent", "bracketSpacing": true, "arrowParens": "always", "printWidth": 100 }, "config": { "commitizen": { "path": "cz-conventional-changelog" } }, "np": { "contents": ".", "anyBranch": false }, "dependencies": { "@japa/core": "^7.3.2", "@japa/errors-printer": "^2.1.0", "@poppinss/cliui": "^3.0.5", "@poppinss/hooks": "^6.0.2-0", "fast-glob": "^3.2.12", "getopts": "^2.3.0", "inclusion": "^1.0.1" }, "publishConfig": { "access": "public", "tag": "latest" }, "directories": { "test": "test" }, "repository": { "type": "git", "url": "git+https://github.com/japa/runner.git" }, "bugs": { "url": "https://github.com/japa/runner/issues" }, "homepage": "https://github.com/japa/runner#readme" }