forked from zabute/formsy-semantic-ui-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.27 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
{
"name": "formsy-semantic-ui-react",
"version": "0.3.1",
"description": "Formsy-React wrappers for Semantic-Ui-React's form Components",
"repository": {
"type": "git",
"url": "https://github.com/zabute/formsy-semantic-ui-react"
},
"author": {
"name": "Ardamis Yeshak",
"email": "[email protected]",
"url": "https://github.com/zabute"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/zabute/formsy-semantic-ui-react/issues"
},
"main": "./lib/index.js",
"scripts": {
"build": "rimraf lib && babel ./src -d ./lib",
"lint": "eslint src example test --color",
"test": "mocha test/**/*.spec.js",
"test:watch": "npm run test -- --watch",
"example-app": "webpack-dev-server --config example/webpack.config.js --inline --progress --colors",
"prepublish": "npm run build"
},
"peerDependencies": {
"formsy-react": ">=1.1.1",
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0",
"semantic-ui-react": ">=0.68.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-polyfill": "^6.13.0",
"babel-preset-airbnb": "^2.0.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "6.9.0",
"babel-runtime": "^6.9.2",
"bundle-loader": "^0.5.4",
"chai": "^3.5.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.1.1",
"eslint-plugin-mocha": "^1.0.0",
"eslint-plugin-react": "^3.13.0",
"formsy-react": "1.1.1",
"ignore-styles": "^5.0.1",
"jsdom": "^9.5.0",
"mocha": "^2.5.3",
"react": "16.1.1",
"react-addons-test-utils": "^15.0.0",
"react-dom": "16.1.1",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.5.4",
"semantic-ui-react": "^0.76.0",
"sinon": "^1.17.7",
"webpack": "1.12.9",
"webpack-dev-server": "1.14.0"
},
"dependencies": {
"prop-types": "^15.6.0"
},
"keywords": [
"formsy-react",
"semantic-ui",
"semantic-ui-react",
"formsy",
"form",
"react",
"react-component",
"form-validation"
]
}