UNPKG

jest-watch-typeahead

Version:
79 lines (78 loc) 2.12 kB
{ "name": "jest-watch-typeahead", "version": "0.6.1", "main": "build/index.js", "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": "jest", "lint": "eslint .", "watch": "babel src -w --ignore **/*.test.js,integration -d build", "prebuild": "rimraf build", "build": "babel src --ignore **/*.test.js,integration -d build", "prepublish": "yarn build", "format": "prettier --write \"**/*.js\" \"**/*.md\"" }, "dependencies": { "ansi-escapes": "^4.3.1", "chalk": "^4.0.0", "jest-regex-util": "^26.0.0", "jest-watcher": "^26.3.0", "slash": "^3.0.0", "string-length": "^4.0.1", "strip-ansi": "^6.0.0" }, "devDependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.9.6", "@babel/preset-env": "^7.9.6", "@babel/preset-flow": "^7.9.0", "babel-eslint": "^10.1.0", "babel-jest": "^26.0.0", "eslint": "^7.8.1", "eslint-config-airbnb-base": "^14.1.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-flowtype": "^5.2.0", "eslint-plugin-import": "^2.20.2", "eslint-plugin-jest": "^24.0.0", "eslint-plugin-prettier": "^3.1.3", "flow-bin": "^0.133.0", "jest": "^26.0.0", "prettier": "^2.1.1", "rimraf": "^3.0.2" }, "peerDependencies": { "jest": "^26.0.0" }, "jest": { "watchPlugins": [ "<rootDir>/filename", "<rootDir>/testname" ], "snapshotSerializers": [ "<rootDir>/node_modules/pretty-format/build/plugins/ConvertAnsi" ], "testPathIgnorePatterns": [ "<rootDir>/build/.*", "<rootDir>/src/__tests__/pluginTester.js" ], "transformIgnorePatterns": [ "/node_modules/", "/__mocks__/" ] }, "engines": { "node": ">=10" } }