-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
103 lines (103 loc) · 2.42 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
{
"name": "jest-codemods",
"version": "0.34.2",
"description": "Codemods for migrating test files to Jest",
"license": "MIT",
"repository": "skovhus/jest-codemods",
"author": {
"name": "Kenneth Skovhus",
"email": "[email protected]",
"url": "https://github.com/skovhus"
},
"bin": "bin/jest-codemods.js",
"engines": {
"node": ">=12"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf lib coverage npm-debug.log dist",
"lint": "pnpm lint:bail --fix",
"lint:bail": "eslint src --ext js,ts,tsx",
"prepublishOnly": "pnpm clean && pnpm verify:bail",
"test:cov": "pnpm test -- --coverage",
"test:watch": "pnpm test -- --watch",
"test": "jest --runInBand",
"verify": "pnpm lint && pnpm build && ./bin/jest-codemods.js --version && pnpm test:cov",
"verify:bail": "pnpm lint:bail && pnpm verify",
"ci": "pnpm verify:bail && codecov",
"prepare": "husky install"
},
"lint-staged": {
"*.js": [
"eslint",
"jest --findRelatedTests"
]
},
"keywords": [
"codemod",
"jest",
"ava",
"tape",
"mocha",
"chai",
"proxyquire",
"migrate",
"migrations",
"upgrade",
"transform",
"jscodeshift",
"codemods"
],
"dependencies": {
"chalk": "4.1.2",
"execa": "4.1.0",
"globby": "11.1.0",
"inquirer": "8.2.6",
"is-git-clean": "1.1.0",
"jscodeshift": "0.16.1",
"meow": "7.1.1",
"update-notifier": "5.1.0"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/jest": "29.5.12",
"@types/jscodeshift": "0.11.11",
"@types/update-notifier": "5.1.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"ast-types": "0.14.2",
"codecov": "3.8.3",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-jest": "26.9.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "13.3.0",
"prettier": "2.8.8",
"ts-jest": "29.2.5",
"typescript": "5.5.4"
},
"jest": {
"preset": "ts-jest",
"resetMocks": true,
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageReporters": [
"text",
"lcov",
"html"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"testEnvironment": "node"
}
}