UNPKG

2.86 kBJSONView Raw
1{
2 "name": "jest-watch-typeahead",
3 "version": "0.6.4",
4 "main": "build/index.js",
5 "author": "Rogelio Guzman <rogelioguzmanh@gmail.com>",
6 "description": "Jest plugin for filtering by filename or test name",
7 "license": "MIT",
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/jest-community/jest-watch-typeahead.git"
11 },
12 "homepage": "https://github.com/jest-community/jest-watch-typeahead",
13 "files": [
14 "build/",
15 "filename.js",
16 "testname.js"
17 ],
18 "scripts": {
19 "test": "jest",
20 "lint": "eslint .",
21 "prebuild": "rimraf build",
22 "build": "babel --extensions .js,.ts src -d build && rimraf **/*.test.{js,ts},integration",
23 "prepublish": "yarn build",
24 "format": "prettier --write \"**/*.js\" \"**/*.md\" \"**/*.ts\"",
25 "typecheck": "yarn tsc -p ."
26 },
27 "dependencies": {
28 "ansi-escapes": "^4.3.1",
29 "chalk": "^4.0.0",
30 "jest-regex-util": "^27.0.0",
31 "jest-watcher": "^27.0.0",
32 "slash": "^3.0.0",
33 "string-length": "^4.0.1",
34 "strip-ansi": "^6.0.0"
35 },
36 "devDependencies": {
37 "@babel/cli": "^7.8.4",
38 "@babel/core": "^7.9.6",
39 "@babel/preset-env": "^7.9.6",
40 "@babel/preset-typescript": "^7.10.4",
41 "@jest/types": "^27.0.0",
42 "@semantic-release/changelog": "^5.0.1",
43 "@semantic-release/git": "^9.0.0",
44 "@types/jest": "^26.0.13",
45 "@types/node": "^14.6.4",
46 "@typescript-eslint/eslint-plugin": "^4.0.1",
47 "@typescript-eslint/parser": "^4.0.1",
48 "babel-eslint": "^10.1.0",
49 "babel-jest": "^27.0.0",
50 "eslint": "^7.8.1",
51 "eslint-config-airbnb-base": "^14.1.0",
52 "eslint-config-prettier": "^8.0.0",
53 "eslint-plugin-import": "^2.20.2",
54 "eslint-plugin-jest": "^24.0.0",
55 "eslint-plugin-prettier": "^3.1.3",
56 "jest": "^27.0.0",
57 "prettier": "^2.1.1",
58 "rimraf": "^3.0.2",
59 "semantic-release": "^17.4.3",
60 "typescript": "^4.0.2"
61 },
62 "peerDependencies": {
63 "jest": "^26.0.0 || ^27.0.0"
64 },
65 "jest": {
66 "watchPlugins": [
67 "<rootDir>/filename",
68 "<rootDir>/testname"
69 ],
70 "snapshotSerializers": [
71 "<rootDir>/node_modules/pretty-format/build/plugins/ConvertAnsi"
72 ],
73 "testPathIgnorePatterns": [
74 "<rootDir>/build/.*",
75 "<rootDir>/src/__tests__/pluginTester.js"
76 ],
77 "transformIgnorePatterns": [
78 "/node_modules/",
79 "/__mocks__/"
80 ]
81 },
82 "engines": {
83 "node": ">=10"
84 },
85 "resolutions": {
86 "semantic-release/@semantic-release/github/fs-extra": "^9.0.0",
87 "semantic-release/@semantic-release/npm/fs-extra": "^9.0.0"
88 },
89 "release": {
90 "branches": [
91 "main"
92 ],
93 "plugins": [
94 "@semantic-release/commit-analyzer",
95 "@semantic-release/release-notes-generator",
96 "@semantic-release/changelog",
97 "@semantic-release/npm",
98 "@semantic-release/git",
99 "@semantic-release/github"
100 ]
101 }
102}