-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
87 lines (87 loc) · 2.88 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
{
"name": "babel-plugin-flow-react-proptypes",
"version": "26.0.0",
"description": "converts flow types to react proptypes",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src test",
"test": "npm run build && jest --coverage",
"build": "cross-env BABEL_ENV=production babel src/ --out-dir lib/ --ignore src/__tests__ --presets @babel/env,@babel/react",
"predeploy": "npm run build && npm run lint",
"prepublish": "npm run build && npm run lint",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brigand/babel-plugin-flow-react-proptypes.git"
},
"keywords": [
"react",
"flow",
"flowtype",
"proptypes",
"babel",
"babel-plugin",
"es6"
],
"author": "Frankie Bagnardi <f.bagnardi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brigand/babel-plugin-flow-react-proptypes/issues"
},
"homepage": "https://github.com/brigand/babel-plugin-flow-react-proptypes#readme",
"files": [
"lib/*.js"
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.2.2",
"@babel/generator": "^7.9.6",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-flow": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.0.0",
"chalk": "^1.1.3",
"coveralls": "^2.13.1",
"cross-env": "^5.2.0",
"eslint": "^4.0.0",
"eslint-plugin-react": "^7.0.1",
"jest": "^24.0.0",
"jest-environment-node-debug": "^2.0.0",
"metro-react-native-babel-preset": "^0.51.1",
"prettier": "^1.4.4",
"react": "^15.5.4",
"react-test-renderer": "^15.5.4",
"uglify-es": "^3.3.8"
},
"dependencies": {
"@babel/template": "^7.2.2",
"@babel/traverse": "^7.0.0",
"@babel/types": "^7.3.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/"
]
}
}