-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.44 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
{
"name": "@panderalabs/redux-form-semantic",
"version": "0.1.2",
"description": "Multiple components integrating redux-form and semantic-ui-react together for standardized error handling.",
"main": "dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/panderasystems/redux-form-semantic.git"
},
"bugs": {
"url": "https://github.com/panderasystems/redux-form-semantic/issues"
},
"keywords": [
"react",
"semantic-ui-react",
"redux form"
],
"scripts": {
"build": "babel src --out-dir dist",
"prepublishOnly": "npm run build"
},
"dependencies": {},
"devDependencies": {
"react": "^15.6.1",
"redux-form": "^7.0.3",
"semantic-ui-react": "^0.72.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.53.0"
},
"peerDependencies": {
"react": ">=0.14.0 <= 16",
"redux-form": ">=7.0.3 < 8",
"semantic-ui-react": ">=0.72.0 <= 0.73"
},
"babel": {
"presets": [
"env",
"react",
"stage-0",
"flow"
]
}
}