-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 2.2 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
{
"name": "react-bootstrap4-form-validation",
"version": "1.0.10",
"description": "Simple React Components for form validation. Based on HTML5 Constraint validation API and Bootstrap4 style.",
"main": "lib/index.js",
"scripts": {
"start": "concurrently \"npm run lib:watch\" \"npm run docs\"",
"lib": "babel src/lib -d lib --copy-files",
"lib:watch": "babel src/lib -w -d lib --copy-files",
"docs": "webpack-dev-server --mode development",
"docs:prod": "webpack --mode production",
"test": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"jest": {
"setupFiles": [
"./test/jestsetup.jsx"
]
},
"keywords": [
"React",
"React Component",
"Form Validation",
"Bootstrap",
"HTML5"
],
"license": "MIT",
"peerDependencies": {
"react": "^15.3.0 || ^16.2.0",
"react-dom": "^15.3.0 || ^16.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.46",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.46",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^22.4.4",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"concurrently": "^3.5.1",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^21.3.0-beta.15",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-router-dom": "^4.2.2",
"react-test-renderer": "^16.3.2",
"react-text-mask": "^5.4.1",
"regenerator-runtime": "^0.11.1",
"style-loader": "^0.21.0",
"validator": "^10.2.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3"
},
"author": "Cihang Hu <cihanghu@gmail.com>",
"homepage": "https://github.com/andyhu92/react-bootstrap4-form-validation",
"bug": "https://github.com/andyhu92/react-bootstrap4-form-validation/issues",
"repository": {
"url": "https://github.com/andyhu92/react-bootstrap4-form-validation",
"type": "git"
},
"dependencies": {
"prop-types": "^15.6.1"
}
}