forked from milesj/babel-plugin-typescript-to-proptypes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.53 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "babel-plugin-ts-definitions-to-proptypes",
"version": "1.0.1",
"description": "Generate React PropTypes from TypeScript definitions.",
"repository": "https://github.com/ruslankhh/babel-plugin-ts-definitions-to-proptypes",
"license": "MIT",
"main": "./lib/index.js",
"keywords": [
"babel-plugin",
"typescript",
"interfaces",
"prop-types"
],
"scripts": {
"build": "beemo typescript",
"coverage": "yarn run jest --coverage",
"eslint": "beemo eslint",
"jest": "beemo jest",
"prettier": "beemo prettier",
"release": "np --yolo --no-yarn",
"type": "beemo typescript --noEmit",
"prerelease": "yarn test && yarn run build",
"pretest": "yarn run type",
"test": "yarn run jest",
"posttest": "yarn run eslint"
},
"dependencies": {
"@babel/helper-module-imports": "^7.0.0",
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-syntax-typescript": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
"typescript": "^2.0.0 || ^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@milesj/build-tools": "^0.1.0",
"@types/babel-core": "^6.25.5",
"@types/babel-types": "^7.0.4",
"babel-core": "7.0.0-bridge.0",
"glob": "^7.1.2",
"typescript": "^3.1.1"
},
"beemo": {
"module": "@milesj/build-tools",
"drivers": [
"babel",
"eslint",
"jest",
"prettier",
"typescript"
],
"settings": {
"node": true
},
"babel": {
"sourceType": "module",
"ignore": [
"tests/fixtures/**/*.js"
]
},
"eslint": {
"rules": {
"complexity": "off",
"no-param-reassign": "off",
"no-use-before-define": "off",
"react/forbid-foreign-prop-types": "off",
"typescript/no-use-before-define": "off"
},
"ignore": [
"tests/fixtures/"
]
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/tests/fixtures/"
],
"testEnvironment": "node",
"transformIgnorePatterns": [
"/node_modules/",
"/tests/fixtures/"
],
"modulePathIgnorePatterns": [
"/node_modules/",
"/tests/fixtures/"
]
},
"typescript": {
"exclude": [
"./tests/fixtures/**/*"
]
}
},
"private": false
}