-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.16 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.16 KB
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
{
"name": "@suites/codemod",
"version": "1.0.0",
"description": "Code transformation tool for the Suites testing framework",
"author": "Omer Morad",
"license": "MIT",
"homepage": "https://suites.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/suites-dev/codemod.git"
},
"bugs": {
"url": "https://github.com/suites-dev/codemod/issues"
},
"bin": {
"suites-codemod": "bin/suites-codemod.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"bin",
"dist",
"README.md"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"test": "jest --coverage --verbose",
"test:fixtures": "jest --testPathPattern=integration",
"test:watch": "jest --watch",
"lint": "eslint '{src,test}/**/*.ts'",
"lint:fix": "eslint '{src,test}/**/*.ts' --fix"
},
"dependencies": {
"jscodeshift": "^17.3.0",
"commander": "^14.0.2",
"inquirer": "^8.2.5",
"chalk": "^4.1.2",
"ora": "^5.4.1",
"glob": "^10.0.0",
"is-git-clean": "^1.1.0",
"typescript": "~5.2.2"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jscodeshift": "^0.11.0",
"@types/inquirer": "^9.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"rimraf": "^5.0.0",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2"
},
"engines": {
"node": "^16.10.0 || ^18.12.0 || >=20.0.0"
},
"keywords": [
"codemod",
"migration",
"automock",
"suites",
"testing",
"ast",
"jscodeshift",
"typescript"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"packageManager": "pnpm@8.15.9"
}