-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
45 lines (45 loc) · 1.05 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
{
"version": "0.1.0",
"license": "MIT",
"main": "dist/index.js",
"bin": "dist/cli.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14.17"
},
"scripts": {
"start": "tsc -p . --watch",
"build": "tsc -p . && tsc -p test",
"test": "jest",
"prepare": "tsc -p ."
},
"name": "ts-fix",
"private": true,
"author": "Isabel Duan",
"devDependencies": {
"@types/diff": "^5.2.1",
"@types/inquirer": "^8.2.1",
"@types/jest": "^29.5.12",
"@types/jest-specific-snapshot": "^0.5.9",
"@types/lodash": "^4.17.1",
"@types/yargs": "^15.0.13",
"esbuild": "^0.20.2",
"esbuild-jest": "^0.5.0",
"jest": "^29.7.0",
"jest-specific-snapshot": "^8.0.0"
},
"dependencies": {
"diff": "^5.2.0",
"git-status": "^1.0.10",
"import-cwd": "^3.0.0",
"inquirer": "^8.0.0",
"lodash": "^4.17.21",
"typescript": "^5.5.3",
"yargs": "^16.2.0"
},
"packageManager": "npm@8.19.4+sha256.2667a1b8300f315d223e43c307fbe946eb8b97792af399424ef67ea9cb0a72f6"
}