-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
71 lines (71 loc) · 1.77 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
{
"name": "react-html5-form",
"version": "1.0.9",
"description": "React components Form and InputGroup to connect form inputs to HTML5 Constraint Validation API",
"main": "dist/Form.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"build": "babel --out-dir dist --ignore *.spec.js src",
"preversion": "npm test && npm run build",
"postversion": "git push && git push --tags"
},
"keywords": [
"validation",
"react",
"reactjs",
"form",
"HTML5",
"react validation"
],
"author": {
"name": "Dmitry Sheiko",
"url": "http://dsheiko.com"
},
"license": "MIT",
"maintainers": [
{
"name": "Dmitry Sheiko",
"email": "me@dsheiko.com",
"web": "http://dsheiko.com"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/dsheiko/react-html5-form.git"
}
],
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.17",
"jest": "^22.4.3",
"react-testing-library": "^3.0.2"
},
"dependencies": {
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-test-renderer": "^16.3.2"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testPathIgnorePatterns": [
"./e2e"
],
"coveragePathIgnorePatterns": [
"./node_modules/",
"./dist",
"./e2e"
]
}
}