forked from gtournie/redux-form-validators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·99 lines (99 loc) · 3.18 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
89
90
91
92
93
94
95
96
97
98
99
{
"name": "redux-form-validators",
"version": "2.1.0",
"description": "Simple validations with redux-form",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gtournie/redux-form-validators.git"
},
"keywords": [
"react",
"redux",
"redux-form",
"form-validation",
"form-validators",
"validation",
"validators",
"redux-form-validators",
"react-component"
],
"author": "Tournier Guillaume <tournier.guillaume@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gtournie/redux-form-validators/issues"
},
"homepage": "https://github.com/gtournie/redux-form-validators#readme",
"peerDependencies": {
"react-redux": "^3.0.0 || ^4.0.0 || ^5.0.0",
"redux": "^3.3.1",
"redux-form": "^6.0.0 || ^7.0.0"
},
"scripts": {
"start": "webpack-dev-server --config ./webpack/example.js",
"check:src": "npm run test",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/redux-form-validator.js --config webpack/development.js",
"build:umd:min": "webpack src/index.js dist/redux-form-validators.min.js --config webpack/production.js",
"clean": "rimraf dist lib",
"manage:i18n": "node ./translationRunner.js",
"prepublish": "npm run clean && npm run test && npm run build",
"test": "babel-node ./node_modules/.bin/isparta cover _mocha -- --compilers js:babel-core/register --recursive src/__tests__/*.spec.js --require src/__tests__/setup.js --full-trace",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "7.x",
"babel-plugin-react-intl": "^2.3.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bootstrap": "^4.0.0-alpha.6",
"bootstrap-loader": "^2.0.0-beta.19",
"compression-webpack-plugin": "^1.0.0",
"coveralls": "^2.13.1",
"css-loader": "^0.28.4",
"expect": "^1.20.2",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-loader": "^0.5.0",
"isparta": "^4.0.0",
"json-loader": "^0.5.7",
"mocha": "^3.5.0",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-addons-css-transition-group": "^15.6.0",
"react-addons-test-utils": "^15.6.0",
"react-addons-transition-group": "^15.6.0",
"react-dom": "^15.6.1",
"react-hot-loader": "^1.3.1",
"react-intl": "^2.3.0",
"react-intl-translations-manager": "^5.0.0",
"react-redux": "^5.0.5",
"reactstrap": "^4.8.0",
"redux": "^3.7.2",
"redux-form": "^7.0.3",
"resolve-url-loader": "^2.1.0",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
},
"npmName": "redux-form-validators",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}