-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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": "@coverhound/react-form-validation",
"version": "1.0.0",
"description": "React Form with Validation Support",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"test": "jest",
"test:ci": "jest --ci",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coverhound/react-form-validation.git"
},
"keywords": [
"react",
"form",
"validation",
"hoc"
],
"contributors": [
"Bernardo Farah",
"Kyle Alwyn"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/coverhound/react-form-validation/issues"
},
"homepage": "https://github.com/coverhound/react-form-validation#readme",
"devDependencies": {
"@coverhound/eslint-config-coverhound": "^1.0.1",
"babel-jest": "^20.0.3",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-plugin-jest": "^20.0.3",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"redux": "^3.6.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/"
],
"moduleNameMapper": {
"^react-form-validation(.*)": "<rootDir>/src$1"
}
}
}