forked from quizlet/ts-migration
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.09 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
{
"name": "ts-migration",
"description": "Tools to convert a codebase from Flow to Typescript",
"license": "MIT",
"author": {
"name": "Roger Goldfinger",
"email": "[email protected]",
"url": "https://github.com/rgoldfinger-quizlet/babel-plugin-flow-to-typescript"
},
"bin": "index.js",
"main": "index.js",
"files": [
"dist",
"README.md"
],
"version": "0.6.0",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"build": "rm -rf dist && tsc",
"watch": "tsc --watch",
"dev-cli": "node -r ts-node/register --inspect src/cli.ts"
},
"keywords": [
"babel",
"flow",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/rgoldfinger-quizlet/babel-plugin-flow-to-typescript.git"
},
"peerDependencies": {
"@babel/core": "7.5.5",
"typescript": "4.9.5"
},
"dependencies": {
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/traverse": "7.26.4",
"@babel/types": "7.17.0",
"commander": "2.20.0",
"lodash": "4.17.21",
"prettier": "3.4.2",
"recast": "0.17.6",
"simple-git": "3.27.0",
"tsutils": "3.17.1"
},
"devDependencies": {
"@babel/core": "7.8.0",
"@types/babel__core": "7.1.0",
"@types/babel-core": "6.25.6",
"@types/babel-types": "7.0.7",
"@types/jest": "24.9.1",
"@types/lodash": "4.14.150",
"@types/node": "10.17.20",
"@types/prettier": "1.19.1",
"@types/react": "16.14.52",
"@types/scheduler": "0.16.8",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "28.0.0",
"babel-plugin-tester": "5.5.2",
"jest": "28.0.0",
"react": "16.14.0",
"regenerator-runtime": "0.13.5",
"ts-jest": "28.0.8",
"ts-node": "8.8.2",
"tslint": "5.20.1",
"typescript": "4.9.5"
},
"jest": {
"testEnvironmentOptions": {
"url": "http://localhost/"
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}