This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
forked from stripe-archive/flow-to-typescript-codemod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.14 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
{
"name": "flow-to-typescript-codemod",
"version": "0.0.0",
"private": true,
"description": "Stripe's codemod for converting Flow to TypeScript.",
"repository": "https://github.com/stripe-archive/flow-to-typescript-codemod",
"license": "MIT",
"author": "Stripe, Inc.",
"types": "./flow.d.ts",
"bin": {
"typescriptify": "./bin.js"
},
"files": [
"dist",
"flow.d.ts",
"bin.js"
],
"scripts": {
"build": "./esBuild.js",
"dev": "yarn build && node ./dist/index.js",
"typescriptify": "yarn build && node ./dist/index.js",
"lint": "eslint --ext ts src",
"prepare": "yarn patch-package",
"prettier": "prettier --write 'src/**/*.{js,jsx,mdx,ts,tsx}' !src/test/test_files/*.{js,jsx,ts,tsx}",
"test": "jest",
"types": "tsc -b ."
},
"resolutions": {
"@babel/parser": "7.16.0",
"@babel/traverse": "7.16.0",
"@babel/types": "7.16.0",
"code-block-writer": "10",
"minimist": "1.2.6"
},
"devDependencies": {
"@babel/parser": "7.16.0",
"@babel/traverse": "7.16.0",
"@babel/types": "7.16.0",
"@types/babel__traverse": "^7.0.7",
"@types/csv-stringify": "^3.1.0",
"@types/dedent": "^0.7.0",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^27.0.2",
"@types/minimist": "^1.2.2",
"@types/node": "^12.7.1",
"@types/react": "^16.14.18",
"@types/signale": "^1.4.2",
"@types/yargs": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"chalk": "^2.4.2",
"csv-stringify": "^6.0.4",
"dedent": "^0.7.0",
"esbuild": "0.14.28",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-prettier": "^4.0.0",
"flow": "^0.2.3",
"flow-bin": "^0.162.0",
"fs-extra": "^8.1.0",
"ignore": "^5.1.9",
"jest": "^26.0.0",
"jest-junit": "^12.0.0",
"patch-package": "^6.4.7",
"prettier": "^2.4.1",
"recast": "^0.20.4",
"signale": "^1.4.0",
"ts-jest": "^26.0.0",
"ts-morph": "^13.0.2",
"typescript": "4.5.2",
"yargs": "^17.2.1"
},
"dependencies": {}
}