forked from Kiikurage/babel-plugin-flow-to-typescript
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.76 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
{
"name": "@steelbrain/babel-plugin-flow-to-typescript",
"description": "Babel plugin to convert Flow into TypeScript",
"license": "MIT",
"author": {
"name": "Yuichiro Kikura",
"email": "[email protected]",
"url": "https://github.com/Kiikurage"
},
"files": [
"dist",
"README.md"
],
"version": "0.3.0",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"build": "tsc",
"watch": "tsc --watch"
},
"keywords": [
"babel",
"flow",
"typescript"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Kiikurage/babel-plugin-flow-to-typescript.git"
},
"peerDependencies": {
"@babel/core": "^7.2.2"
},
"dependencies": {
"@babel/traverse": "7.2.3",
"@babel/types": "7.2.2",
"@types/jest": "^24.0.13",
"prettier": "^1.17.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@types/babel-core": "^6.25.3",
"@types/babel-types": "^7.0.1",
"@types/node": "^10.12.18",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-tester": "^5.0.0",
"jest": "^23.6.0",
"regenerator-runtime": "^0.13.1",
"ts-jest": "^23.10.5",
"tslint": "^5.9.1",
"typescript": "^3.2.4"
},
"jest": {
"testURL": "http://localhost/",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}