-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "@expressjs/codemod",
"private": true,
"version": "0.0.1",
"description": "Codemods for updating express servers.",
"main": "index.js",
"contributors": ["Sebastian Beltran <[email protected]>", "Filip Kudla <[email protected]>"],
"license": "MIT",
"bin": "./index.js",
"files": ["transforms/*.js", "commands/*.js", "utils/*.js", "config.js", "index.js"],
"scripts": {
"dev": "tsc -d -w -p tsconfig.json",
"build": "tsc -d -p tsconfig.json",
"lint": "biome check",
"lint:fix": "biome check --fix",
"test": "jest",
"test:ci": "jest --ci"
},
"dependencies": {
"commander": "^12.1.0",
"execa": "^5.1.1",
"fast-glob": "^3.3.2",
"jscodeshift": "^17.1.1",
"picocolors": "^1.1.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/jest": "29.5.14",
"@types/jscodeshift": "^0.12.0",
"@types/node": "^22.8.1",
"@types/prompts": "2.4.9",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"typescript": "5.6.3"
},
"engines": {
"node": ">=18"
}
}