This repository was archived by the owner on Sep 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.3 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.3 KB
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
{
"name": "redux-form-compat",
"version": "0.4.0",
"description": "Redux Form v5 migration shim",
"repository": "https://github.com/aij/redux-form-compat",
"author": "Ivan Jager <aij+git@mrph.org>",
"license": "MIT",
"keywords": [
"react",
"reactjs",
"redux",
"react-redux",
"redux-form",
"form",
"decorator",
"v5",
"v6",
"v7"
],
"main": "./lib/index.js",
"module": "./es/index.js",
"jsnext:main": "./es/index.js",
"files": [
"README.md",
"es",
"lib"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.2.0",
"eslint": "^6.2.0",
"eslint-plugin-react": "^7.14.3",
"react-redux": "^7.1.0",
"redux": "^4.0.4",
"redux-form": "^8.2.6"
},
"dependencies": {
"lodash": "^4.17.15"
},
"peerDependencies": {
"react-redux": ">= 4.4.5",
"redux-form": ">= 7.1.2"
},
"scripts": {
"build": "npm run build:lib && npm run build:es && npm run lint",
"build:lib": "babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"clean": "rimraf dist lib es",
"lint": "eslint src",
"prepublish": "npm run build"
}
}