forked from microsoft/ts-fix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 950 Bytes
/
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
{
"version": "0.1.0",
"license": "MIT",
"main": "dist/index.js",
"bin": "dist/cli.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsc -p . --watch",
"build": "tsc -p .",
"test": "jest",
"prepare": "tsc -p ."
},
"name": "ts-fix",
"author": "Isabel Duan",
"devDependencies": {
"@types/diff": "^5.0.2",
"@types/inquirer": "^8.2.1",
"@types/jest": "^26.0.24",
"@types/jest-specific-snapshot": "^0.5.5",
"@types/lodash": "^4.14.171",
"@types/yargs": "^15.0.13",
"esbuild": "^0.12.15",
"esbuild-jest": "^0.5.0",
"jest": "^27.0.6",
"jest-specific-snapshot": "^5.0.0"
},
"dependencies": {
"diff": "^5.1.0",
"git-status": "^1.0.10",
"import-cwd": "^3.0.0",
"inquirer": "^8.0.0",
"lodash": "^4.17.21",
"typescript": "4.9.0-dev.20220816",
"yargs": "^16.2.0"
}
}