-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
49 lines (49 loc) · 1.58 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
{
"name": "flow-runtime-validators",
"homepage": "https://codemix.github.io/flow-runtime",
"repository": "https://github.com/codemix/flow-runtime.git",
"version": "0.20.0",
"description": "A collection of common validators for flow-runtime.",
"main": "flow-runtime-validators.js",
"scripts": {
"lint": "eslint ./src",
"lint-fix": "eslint --fix ./src",
"flow": "flow",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"build": "rimraf ./lib && babel -d ./lib ./src",
"test": "mocha",
"watch": "mocha --watch"
},
"author": "Charles Pick <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/helper-plugin-utils": "7.0.0-rc.1",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-decorators": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.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",
"flow-runtime": "^0.20.0",
"json-loader": "^0.5.4",
"mocha": "^5.0.0",
"rimraf": "^2.6.3",
"source-map-loader": "^0.1.6"
},
"eslintConfig": {
"extends": "./config/eslint.js"
}
}