forked from nemzes/react-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.69 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
82
83
84
85
86
87
88
{
"name": "react-validation",
"version": "2.11.1",
"description": "validation components",
"keywords": [
"react",
"validation",
"react component",
"react validation"
],
"scripts": {
"test": "node --harmony_proxies node_modules/.bin/jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:dev": "jest",
"dev": "node dev-server",
"build": "webpack --config ./webpack/webpack.config.build && webpack --config ./webpack/webpack.config.minify",
"gh-pages": "webpack --config ./webpack/webpack.config.gh-pages"
},
"main": "lib/build/validation.js",
"repository": {
"type": "git",
"url": "https://github.com/nelsonmenezes/react-validation.git"
},
"author": "Oleksii An",
"license": "ISC",
"bugs": {
"url": "https://github.com/nelsonmenezes/react-validation/issues"
},
"homepage": "https://github.com/nelsonmenezes/react-validation",
"peerDependencies": {
"react": "*",
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-decorators": "^6.13.0",
"babel-plugin-transform-es2015-computed-properties": "^6.8.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"browser-sync": "^2.17.1",
"connect-history-api-fallback": "^1.3.0",
"coveralls": "^2.11.14",
"enzyme": "^2.5.0",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.3.0",
"extract-text-webpack-plugin": "^1.0.1",
"jest-cli": "^16.0.1",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"react-hot-loader": "^1.3.0",
"validator": "^6.1.0",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.12.2"
},
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"testPathDirs": [
"<rootDir>/lib/src/"
],
"moduleNameMapper": {
"^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"^.+\\.(css|scss|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"dependencies": {
"classnames": "^2.2.5",
"hoist-non-react-statics": "^1.2.0"
}
}