-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
58 lines (58 loc) · 1.98 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
{
"name": "babel-plugin-flow-runtime",
"homepage": "https://codemix.github.io/flow-runtime",
"repository": "https://github.com/codemix/flow-runtime.git",
"version": "0.20.0",
"description": "Transforms flow type annotations into flow-runtime types, optionally adds runtime type validation to annotated code.",
"main": "babel-plugin-flow-runtime.js",
"scripts": {
"lint": "eslint ./src",
"lint-fix": "eslint --fix ./src",
"flow": "flow",
"prepublishOnly": "npm run lint && flow && npm run test && npm run build",
"build": "rimraf ./lib && babel -d ./lib ./src && npm run makeFixturesJSON",
"makeFixturesJSON": "node tools/makeFixturesJSON.js > ./fixtures.json",
"test": "mocha --timeout 10000",
"watch": "mocha --timeout 10000 --watch"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.0",
"@babel/core": "^7.12.0",
"@babel/helper-plugin-utils": "^7.10.0",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.0",
"@babel/plugin-proposal-object-rest-spread": "^7.12.0",
"@babel/plugin-transform-regenerator": "^7.12.0",
"@babel/polyfill": "^7.12.0",
"@babel/preset-env": "^7.12.0",
"@babel/preset-flow": "^7.12.0",
"@babel/preset-react": "^7.12.0",
"@babel/register": "^7.12.0",
"babel-eslint": "^10.0.0",
"dedent": "^0.6.0",
"eslint": "^5.0.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-react": "^7.0.0",
"flow-bin": "^0.88.0",
"json-loader": "^0.5.4",
"mocha": "^5.0.0",
"rimraf": "^2.6.3"
},
"dependencies": {
"@babel/generator": "^7.0.0",
"@babel/parser": "^7.0.0",
"@babel/traverse": "^7.0.0",
"@babel/types": "^7.0.0",
"camelcase": "^3.0.0",
"flow-config-parser": "^0.20.0",
"lerna": "^3.22.1"
},
"eslintConfig": {
"extends": "./config/eslint.js"
}
}