-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
113 lines (113 loc) · 3.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "jest-watch-typeahead",
"version": "2.2.2",
"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": "yarn tsc -p ."
},
"dependencies": {
"ansi-escapes": "^6.0.0",
"chalk": "^5.2.0",
"jest-regex-util": "^29.0.0",
"jest-watcher": "^29.0.0",
"slash": "^5.0.0",
"string-length": "^5.0.1",
"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",
"@jest/globals": "^29.0.0",
"@jest/types": "^29.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-jest": "^29.0.0",
"babel-plugin-add-import-extension": "^1.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^27.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.0.0",
"jest-serializer-ansi-escapes": "^3.0.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.0",
"semantic-release": "^24.0.0",
"semver": "^7.3.5",
"typescript": "^5.0.4"
},
"peerDependencies": {
"jest": "^27.0.0 || ^28.0.0 || ^29.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": "^14.17.0 || ^16.10.0 || >=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@3.8.7",
"resolutions": {
"ansi-escapes/type-fest": "^3.0.0"
}
}