forked from redux-form/redux-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 4.35 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
{
"name": "redux-form",
"version": "6.2.0",
"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": {
"build": "npm run build:lib && npm run build:es && npm run build:umd && npm run build:umd:min",
"build:lib": "babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"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",
"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: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",
"prepublish": "npm run test && npm run clean && npm run build",
"test": "mocha --compilers js:babel-register --recursive --recursive \"src/**/__tests__/*\" --require src/__tests__/setup.js",
"test:watch": "npm test -- --watch",
"test:cov": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text npm test",
"test:codecov": "cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js"
},
"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": {
"array-findindex-polyfill": "^0.1.0",
"deep-equal": "^1.0.1",
"es6-error": "^4.0.0",
"hoist-non-react-statics": "^1.0.5",
"invariant": "^2.2.1",
"is-promise": "^2.1.0",
"lodash": "^4.16.6",
"lodash-es": "^4.16.6",
"shallowequal": "^0.2.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-istanbul": "^2.0.3",
"babel-plugin-lodash": "^3.1.2",
"babel-plugin-syntax-async-functions": "^6.5.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-regenerator": "^6.6.5",
"babel-preset-es2015-no-commonjs": "0.0.2",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
"codecov.io": "^0.1.6",
"cross-env": "^3.1.3",
"eslint": "^3.9.1",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-react": "^6.5.0",
"expect": "^1.14.0",
"expect-element": "^1.1.1",
"expect-immutable": "0.0.3",
"expect-predicate": "^1.0.0",
"flux-standard-action": "^1.0.0",
"jsdom": "^9.8.3",
"lodash-webpack-plugin": "^0.10.3",
"mocha": "^3.0.2",
"nyc": "^8.4.0",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.1",
"redux": "^3.3.1",
"redux-immutablejs": "0.0.8",
"rifraf": "^2.0.3",
"rimraf": "^2.5.1",
"stringstream": "0.0.5",
"webpack": "^1.13.3"
},
"peerDependencies": {
"react": "^15.0.0",
"react-redux": "^4.3.0 || ^5.0.0-beta",
"redux": "^3.0.0"
},
"files": [
"README.md",
"es",
"lib",
"dist",
"immutable.js"
],
"nyc": {
"include": [
"src/**/*.js"
],
"sourceMap": false,
"instrument": false
},
"npmName": "redux-form",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}