UNPKG

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