forked from robinweser/react-controlled-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.82 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
{
"name": "react-controlled-form",
"version": "3.2.6",
"description": "Controlled Forms for React and Redux",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"LICENSE",
"README.md",
"lib/**",
"es/**"
],
"scripts": {
"build": "cross-env BABEL_ENV=commonjs babel -d lib modules && babel -d es modules",
"bootstrap": "lerna bootstrap",
"clean": "lerna clean --yes",
"clear": "rimraf coverage _book lib es",
"check": "yarn format && yarn lint && yarn coverage && yarn flow",
"docs": "gitbook install && gitbook build && gh-pages -d _book",
"format": "prettier --write \"examples/*/src/**/*.js\" && prettier --write \"modules/**/*.js\"",
"flow": "flow",
"lint": "eslint modules",
"release": "npm run check && npm run build && lerna publish && yarn docs",
"test": "cross-env BABEL_ENV=commonjs jest",
"coverage": "yarn test -- --coverage",
"watch": "yarn test -- --watch",
"setup": "yarn clear && yarn bootstrap && yarn build"
},
"repository": "https://github.com/rofrischmann/react-controlled-form",
"author": "Robin Frischmann",
"license": "MIT",
"keywords": [
"react",
"react-form",
"form",
"redux-form",
"form-management",
"controlled-form"
],
"jest": {
"testPathIgnorePatterns": [
"/es/",
"/lib/"
]
},
"dependencies": {
"fast-loops": "^1.0.0",
"prop-types": "^15.5.10",
"react-fast-compare": "^2.0.2",
"recompose": "^0.23.5",
"redux-actions": "^2.0.3"
},
"peerDependencies": {
"react": "^15.5.4",
"react-redux": "^5.0.5"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-jest": "20.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.22.0",
"codeclimate-test-reporter": "^0.4.0",
"cross-env": "^5.1.3",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.14.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"flow-bin": "^0.40.0",
"gh-pages": "^1.0.0",
"gitbook-cli": "^2.3.0",
"gitbook-plugin-advanced-emoji": "^0.2.2",
"gitbook-plugin-anker-enable": "0.0.4",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^2.0.0",
"gitbook-plugin-prism": "^2.2.0",
"jest": "20.0.4",
"jest-cli": "^21.1.0",
"js-beautify": "^1.7.5",
"lerna": "^2.8.0",
"prettier": "^1.7.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-test-renderer": "^15.5.4",
"redux": "^3.7.2",
"rimraf": "^2.6.1"
}
}