UNPKG

jest-watch-typeahead

Version:
115 lines (114 loc) 3.25 kB
{ "name": "jest-watch-typeahead", "version": "3.0.1", "main": "build/index.js", "exports": { ".": "./build/index.js", "./filename": "./build/file_name_plugin/plugin.js", "./testname": "./build/test_name_plugin/plugin.js", "./package.json": "./package.json" }, "type": "module", "author": "Rogelio Guzman <rogelioguzmanh@gmail.com>", "description": "Jest plugin for filtering by filename or test name", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/jest-community/jest-watch-typeahead.git" }, "homepage": "https://github.com/jest-community/jest-watch-typeahead", "files": [ "build/", "filename.js", "testname.js" ], "scripts": { "test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules\" jest", "lint": "eslint .", "prebuild": "rimraf build", "build": "babel --extensions .js,.ts src -d build && rimraf --glob 'build/**/*.test.{js,ts},integration' 'build/**/__tests__' build/test_utils", "prepack": "yarn build", "format": "prettier --write \"**/*.js\" \"**/*.md\" \"**/*.ts\"", "typecheck": "tsc -p ." }, "dependencies": { "ansi-escapes": "^7.0.0", "chalk": "^5.2.0", "jest-regex-util": "^30.0.0", "jest-watcher": "^30.0.0", "slash": "^5.0.0", "string-length": "^6.0.0", "strip-ansi": "^7.0.1" }, "devDependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.9.6", "@babel/preset-env": "^7.9.6", "@babel/preset-typescript": "^7.10.4", "@eslint/js": "^9.29.0", "@jest/globals": "^30.0.0", "@jest/types": "^30.0.0", "@semantic-release/changelog": "^6.0.1", "@semantic-release/git": "^10.0.1", "@types/node": "^18.19.111", "babel-jest": "^30.0.0", "babel-plugin-add-import-extension": "^1.6.0", "cross-env": "^7.0.3", "eslint": "^9.0.0", "eslint-config-prettier": "^10.0.0", "eslint-import-resolver-typescript": "^4.4.3", "eslint-plugin-import-x": "^4.15.2", "eslint-plugin-jest": "^29.0.0", "eslint-plugin-prettier": "^5.0.1", "globals": "^16.2.0", "jest": "^30.0.0", "jest-serializer-ansi-escapes": "^4.0.0", "prettier": "^3.1.0", "rimraf": "^6.0.1", "semantic-release": "^24.0.0", "semver": "^7.3.5", "typescript": "^5.0.4", "typescript-eslint": "^8.0.0" }, "peerDependencies": { "jest": "^30.0.0" }, "jest": { "extensionsToTreatAsEsm": [ ".ts" ], "watchPlugins": [ "<rootDir>/filename", "<rootDir>/testname" ], "injectGlobals": false, "snapshotSerializers": [ "jest-serializer-ansi-escapes" ], "testPathIgnorePatterns": [ "<rootDir>/build/.*", "<rootDir>/src/__tests__/pluginTester.js" ], "transformIgnorePatterns": [ "/node_modules/", "/__mocks__/" ] }, "engines": { "node": ">=18.0.0" }, "release": { "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", "@semantic-release/changelog", "@semantic-release/npm", "@semantic-release/git", "@semantic-release/github" ] }, "packageManager": "yarn@4.9.2", "resolutions": { "ansi-escapes/type-fest": "^4.0.0" } }