forked from redux-form/redux-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
152 lines (152 loc) · 5.22 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
{
"name": "redux-form",
"version": "7.1.2",
"description": "A higher order component decorator for forms using Redux and React",
"main": "./lib/index.js",
"module": "./es/index.js",
"jsnext:main": "./es/index.js",
"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 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 __tests__",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --ignore __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 dist/redux-form.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js 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: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",
"format": "prettier-eslint \"+(src|examples)/**/*.+(js|js.flow)\" --ignore \"**/bundle.js\" --write --no-semi --single-quote --trailing-comma=none",
"prepublish": "npm run lint && npm run test:cov && npm run test:flow && npm run clean && npm run build",
"test": "cross-env NODE_ENV=test jest --runInBand",
"test:flow": "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 <rasmussenerik@gmail.com> (http://github.com/erikras)",
"license": "MIT",
"bugs": {
"url": "https://github.com/erikras/redux-form/issues"
},
"homepage": "https://redux-form.com/",
"dependencies": {
"deep-equal": "^1.0.1",
"es6-error": "^4.0.0",
"hoist-non-react-statics": "^2.3.1",
"invariant": "^2.2.2",
"is-promise": "^2.1.0",
"lodash": "^4.17.3",
"lodash-es": "^4.17.3",
"prop-types": "^15.5.9"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-react-jsx-source": "^6.22.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-es2015-no-commonjs": "^0.0.2",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"codecov.io": "^0.1.6",
"cross-env": "^5.0.5",
"eslint": "^4.6.1",
"eslint-config-react-app": "^2.0.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"flow-bin": "^0.54.0",
"flux-standard-action": "^1.0.0",
"immutable": "^3.8.2",
"jest": "^21.0.2",
"lodash-webpack-plugin": "^0.11.2",
"prettier": "^1.6.1",
"prettier-eslint-cli": "^4.3.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-immutablejs": "^0.0.8",
"rifraf": "^2.0.3",
"rimraf": "^2.5.4",
"stringstream": "^0.0.5",
"tmp": "0.0.33",
"webpack": "^3.5.6",
"webpack-bundle-analyzer": "^2.9.0"
},
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0-0",
"react-redux": "^4.3.0 || ^5.0.0",
"redux": "^3.0.0"
},
"files": [
"README.md",
"es",
"lib",
"dist",
"immutable.js",
"*.js.flow"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/__tests__/**/*.js"
],
"coverageReporters": [
"text",
"lcov",
"html"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"testRegex": "__tests__/.*\\.spec\\.js$",
"testEnvironment": "jsdom"
},
"npmName": "redux-form",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}