forked from davidkpiano/react-redux-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.9 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
{
"name": "react-redux-form",
"version": "1.16.14",
"description": "Create Forms Easily with React and Redux",
"main": "lib/index.js",
"typings": "react-redux-form.d.ts",
"scripts": {
"start": "npm run build",
"examples": "NODE_ENV=development node examples/server.js",
"lint": "eslint --ext .js,.jsx .",
"lint:fix": "eslint --fix --ext .js,.jsx .",
"test": "NODE_ENV=test mocha --require babel-register --require ./test/spec-setup.js",
"test:watch": "NODE_ENV=test mocha -w --require babel-register --require ./test/spec-setup.js",
"build": "npm run build:umd && npm run build:lib",
"build:watch": "babel -w src --out-dir lib",
"build:umd": "webpack -p src/index.js umd/ReactReduxForm.min.js --config webpack.config.prod.js",
"build:lib": "babel src --out-dir lib",
"analyze": "webpack src/index.js dist/index.js --config webpack.config.prod.js --json > stats.json",
"preversion": "npm run test && npm run lint",
"prepublishOnly": "npm test && npm run lint && npm run build && npm run tsdef",
"postversion": "git push && git push --tags",
"publish:beta": "npm publish --tag beta",
"tsdef": "cp -f immutable.d.ts lib/",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && mv ./_book/index.html ./_book/docs.html && cp -a ./home/ ./_book/ && cd _book && git init && git commit --allow-empty -m 'Update docs' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'Update docs' && git push [email protected]:davidkpiano/react-redux-form gh-pages --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidkpiano/react-redux-form.git"
},
"keywords": [
"redux",
"form",
"redux-form",
"react-redux-form",
"react",
"reactjs"
],
"author": "David Khourshid <[email protected]> (http://github.com/davidkpiano)",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidkpiano/react-redux-form/issues"
},
"homepage": "https://github.com/davidkpiano/react-redux-form#readme",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-lodash": "^3.1.4",
"babel-plugin-transform-react-remove-prop-types": "~0.2.10",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.5.2",
"chai": "^3.5.0",
"chai-subset": "^1.2.1",
"css-loader": "^0.24.0",
"esdoc-es7-plugin": "0.0.3",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"estraverse-fb": "^1.3.1",
"express": "^4.13.4",
"express-urlrewrite": "^1.2.0",
"immutable": "^3.7.6",
"jsdom": "^9.2.1",
"lodash": "~4.17.2",
"mocha": "^2.5.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "~5.0.0",
"redux": "^4.0.0",
"redux-immutable": "^3.0.8",
"redux-logger": "~2.6.1",
"redux-mock-store": "0.0.6",
"redux-test-store": "^0.4.0",
"redux-thunk": "^2.0.1",
"sinon": "^1.17.3",
"style-loader": "^0.13.1",
"webpack": "^1.12.14",
"webpack-bundle-size-analyzer": "^2.0.1",
"webpack-dev-middleware": "^1.6.1"
},
"dependencies": {
"icepick": "^1.1.0",
"invariant": "~2.2.1",
"lodash.get": "~4.4.2",
"lodash.topath": "~4.5.2",
"prop-types": "^15.5.6",
"react-native-segmented-control-tab": "^3.2.1",
"shallow-compare": "^1.2.1"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^0.14.7 || ^15.0.0 || ^16.0.0",
"react-redux": "^4.0.0 || ^5.0.3 || ^7.0.0",
"redux": "^3.0.0 || ^4.0.0"
}
}