forked from NewOldMax/react-material-ui-form-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.66 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": "react-material-ui-form-validator",
"version": "2.0.9",
"description": "Simple validator for forms designed with material-ui v1/v3 components.",
"main": "./lib/index.js",
"scripts": {
"build": "babel ./src -d ./lib --presets=es2015,react,stage-2",
"prepublish": "npm run build",
"lint": "eslint src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NewOldMax/react-material-ui-form-validator.git"
},
"keywords": [
"material-ui",
"form",
"validation"
],
"author": "NewOldMax",
"license": "MIT",
"bugs": {
"url": "https://github.com/NewOldMax/react-material-ui-form-validator/issues"
},
"homepage": "https://github.com/NewOldMax/react-material-ui-form-validator#readme",
"dependencies": {
"react-form-validator-core": "0.6.4"
},
"peerDependencies": {
"@material-ui/core": "^1.0.0 || ^3.0.0 || ^4.0.0",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0",
"prop-types": "^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.5.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.2",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-2": "6.16.0",
"babelify": "7.3.0",
"browserify": "13.1.0",
"bufferutil": "1.2.1",
"envify": "3.4.1",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "^6.8.0",
"nodemon": "^1.18.10",
"uglify-js": "2.7.3",
"utf-8-validate": "1.2.1",
"watchify": "^3.11.1"
}
}