-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
76 lines (76 loc) · 1.71 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": "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"
},
"contributors": [
{
"name": "CureApp"
}
],
"files": [
"dist/*",
"README.md"
],
"version": "0.6.0",
"scripts": {
"prepare": "npm run build",
"test": "jest",
"test-watch": "jest --watch",
"build": "tsc",
"watch": "tsc --watch",
"lint": "tslint --project .",
"cover": "jest --coverage",
"report-coverage": "codecov",
"prettify": "./node_modules/.bin/prettier --write \"{src,test}/**/*.{js,ts,tsx}\""
},
"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.4.4"
},
"dependencies": {
"@babel/template": "^7.7.0",
"@babel/traverse": "^7.7.0",
"@babel/types": "^7.7.4"
},
"devDependencies": {
"@types/babel__traverse": "^7.0.8",
"babel-plugin-tester": "^7.0.1",
"codecov": "^3.6.1",
"jest": "^24.9.0",
"prettier": "^1.17.1",
"ts-jest": "^24.1.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.7.2"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}