This repository has been archived by the owner on Jun 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
84 lines (84 loc) · 2.18 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
{
"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.1.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.2.2",
"typescript": ">=3.0"
},
"dependencies": {
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"babel-plugin-flow-to-typescript": "git+https://github.com/rgoldfinger-quizlet/babel-plugin-flow-to-typescript.git#facfeb4f65e270d3635891b870886b971946ebb8",
"@babel/traverse": "7.2.3",
"@babel/types": "7.2.2",
"lodash": "^4.17.11",
"prettier": "^1.16.4",
"recast": "^0.17.5",
"simple-git": "^1.110.0",
"tsutils": "^3.10.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@types/babel__core": "7.1.0",
"@types/babel-core": "^6.25.3",
"@types/babel-types": "^7.0.1",
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.123",
"@types/node": "^10.12.18",
"@types/prettier": "^1.16.1",
"@types/react": "^16.8.17",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-tester": "^5.0.0",
"jest": "^23.6.0",
"react": "^16.8.6",
"regenerator-runtime": "^0.13.1",
"ts-jest": "^23.10.5",
"ts-node": "^8.0.3",
"tslint": "^5.9.1",
"typescript": "^3.4.5"
},
"jest": {
"testURL": "http://localhost/",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}