This repository has been archived by the owner on Sep 22, 2022. It is now read-only.
forked from redux-form/redux-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
179 lines (179 loc) · 6.43 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"name": "redux-form",
"version": "8.1.0",
"description": "A higher order component decorator for forms using Redux and React",
"main": "./lib/index.js",
"module": "./es/index.js",
"modules.root": "./es",
"jsnext:main": "./es/index.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/erikras/redux-form"
},
"scripts": {
"analyze": "webpack src/index.js dist/redux-form.js -p --bail --profile --json > stats.json && webpack-bundle-analyzer stats.json",
"build": "npm run clean && npm run build:lib && npm run build:es && npm run build:umd && npm run build:umd:min && npm run build:flow",
"build:lib": "babel src --out-dir lib --ignore \"src/**/__tests__\"",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --ignore \"src/**/__tests__\"",
"build:flow": "cp src/*.js.flow lib && cp src/selectors/*.js.flow lib/selectors && cp src/*.js.flow es && cp src/selectors/*.js.flow es/selectors",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js -o dist/redux-form.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js -o dist/redux-form.min.js",
"clean": "rimraf dist lib es",
"lint": "eslint src",
"example": "npm --prefix ./examples/$form install && npm --prefix ./examples/$form start",
"example:asyncChangeValidation": "form=asyncChangeValidation npm run example",
"example:asyncValidation": "form=asyncValidation npm run example",
"example:fieldArrays": "form=fieldArrays npm run example",
"example:fieldLevelValidation": "form=fieldLevelValidation npm run example",
"example:immutable": "form=immutable npm run example",
"example:initializeFromState": "form=initializeFromState npm run example",
"example:material-ui": "form=material-ui npm run example",
"example:normalizing": "form=normalizing npm run example",
"example:react-widgets": "form=react-widgets npm run example",
"example:selectingFormValues": "form=selectingFormValues npm run example",
"example:simple": "form=simple npm run example",
"example:submitValidation": "form=submitValidation npm run example",
"example:syncValidation": "form=syncValidation npm run example",
"example:wizard": "form=wizard npm run example",
"precommit": "lint-staged",
"prepublishOnly": "npm run lint && npm run test:cov && npm run test:flow && npm run clean && npm run build",
"validate": "npm run lint && npm run test:cov && npm run test:flow && npm run clean && npm run build",
"test": "cross-env NODE_ENV=test jest src --runInBand",
"test:flow": "node scripts/patch-immutable-flow-error.js && opencollective-postinstall && flow check",
"test:watch": "npm test -- --watch",
"test:cov": "npm run test -- --coverage"
},
"keywords": [
"react",
"reactjs",
"flux",
"redux",
"react-redux",
"redux-form",
"form",
"decorator"
],
"author": "Erik Rasmussen <[email protected]> (http://github.com/erikras)",
"license": "MIT",
"bugs": {
"url": "https://github.com/erikras/redux-form/issues"
},
"homepage": "https://redux-form.com/",
"dependencies": {
"@babel/runtime": "^7.2.0",
"es6-error": "^4.1.1",
"hoist-non-react-statics": "^3.2.1",
"invariant": "^2.2.4",
"is-promise": "^2.1.0",
"lodash": "^4.17.11",
"lodash-es": "^4.17.11",
"prop-types": "^15.6.1",
"react-is": "^16.7.0",
"react-lifecycles-compat": "^3.0.4"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/plugin-transform-react-jsx-source": "^7.0.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.4",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-preset-es2015-no-commonjs": "^0.0.2",
"codecov.io": "^0.1.6",
"cross-env": "^5.1.6",
"deep-equal": "^1.0.1",
"eslint": "^5.11.0",
"eslint-config-react-app": "^3.0.6",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.72.0",
"flux-standard-action": "^2.0.3",
"glow": "^1.2.2",
"husky": "^1.2.1",
"immutable": "3.8.2",
"insert-line": "^1.1.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"lodash-webpack-plugin": "^0.11.5",
"opencollective-postinstall": "^2.0.1",
"prettier": "^1.15.3",
"prettier-eslint-cli": "^4.7.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-immutablejs": "^0.0.8",
"rifraf": "^2.0.3",
"rimraf": "^2.5.4",
"stringstream": "^1.0.0",
"tmp": "0.0.33",
"uglifyjs-webpack-plugin": "^2.1.0",
"webpack": "^4.28.2",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2"
},
"peerDependencies": {
"react": "^16.4.0",
"react-redux": "^6.0.0",
"redux": "^3.0.0 || ^4.0.0"
},
"files": [
"README.md",
"es",
"lib",
"dist",
"immutable.js",
"*.js.flow"
],
"lint-staged": {
"*.{js,json,md,css}": [
"prettier --write",
"git add"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/__tests__/**/*.js"
],
"coverageReporters": [
"text",
"lcov",
"html"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"testRegex": "__tests__/.*\\.spec\\.js$",
"testEnvironment": "jsdom"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/redux-form"
}
}