-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
executable file
·117 lines (117 loc) · 3.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "redux-form-validators",
"version": "3.3.2",
"description": "Simple validations with redux-form / react-final-form",
"module": "lib/index.js",
"main": "lib/index.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/gtournie/redux-form-validators.git"
},
"keywords": [
"react",
"redux",
"redux-form",
"final-form",
"form-validation",
"form-validators",
"validation",
"validators",
"redux-form-validators",
"react-final-form-validators",
"react-component",
"form"
],
"author": "Tournier Guillaume <[email protected]>",
"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 || ^6.0.0 || ^7.0.0",
"redux": "^3.3.1 || ^4.0.0",
"redux-form": "^6.0.0 || ^7.0.0 || ^8.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 --config webpack/development.js",
"build:umd:min": "webpack --config webpack/production.js",
"clean": "rimraf dist lib",
"manage:i18n": "node ./translationRunner.js",
"prepublishOnly": "npm run clean && npm run test && npm run build",
"lint": "eslint src",
"test": "nyc --reporter=lcov --reporter=text mocha -- --require @babel/register --recursive src/__tests__/*.spec.js --require src/__tests__/setup.js --full-trace",
"pretest": "npm run lint",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"devDependencies": {
"@babel/cli": "7.4.3",
"@babel/core": "7.4.3",
"@babel/node": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-function-bind": "7.2.0",
"@babel/plugin-transform-modules-commonjs": "7.4.3",
"@babel/plugin-transform-runtime": "7.4.3",
"@babel/polyfill": "7.4.3",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.4.0",
"@babel/runtime": "7.4.3",
"autoprefixer": "9.5.1",
"babel-loader": "8.0.5",
"babel-plugin-istanbul": "5.1.2",
"babel-plugin-react-intl": "3.0.1",
"bootstrap": "4.3.1",
"bootstrap-loader": "3.0.3",
"compression-webpack-plugin": "2.0.0",
"coveralls": "3.0.3",
"css-loader": "2.1.1",
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-standard": "4.0.0",
"expect": "24.7.1",
"html-loader": "0.5.5",
"mocha": "6.1.4",
"node-sass": "4.11.0",
"nyc": "14.0.0",
"postcss-loader": "3.0.0",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-addons-css-transition-group": "15.6.2",
"react-addons-test-utils": "15.6.2",
"react-addons-transition-group": "15.6.2",
"react-dom": "16.8.6",
"react-hot-loader": "4.8.4",
"react-intl": "2.8.0",
"react-intl-translations-manager": "5.0.3",
"react-redux": "7.0.2",
"reactstrap": "8.0.0",
"redux": "4.0.1",
"redux-form": "8.2.0",
"resolve-url-loader": "3.1.0",
"rimraf": "2.6.3",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"webpack": "4.30.0",
"webpack-cli": "3.3.0",
"webpack-cyclic-dependency-checker": "0.0.1",
"webpack-dev-server": "3.3.1"
},
"npmName": "redux-form-validators",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}