-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.55 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
{
"name": "react-form-addons",
"version": "4.0.0",
"description": "Compose simple and nested forms with Higher-order components / decorators in React",
"main": "lib/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production babel src --out-dir . --ignore *.spec.js,*.spec.jsx,**/__mocks__/*",
"build:watch": "npm run build -- --watch",
"clean": "rimraf lib components redux utils coverage .nyc_output",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"deploy-gh-pages": "cd site && yarn install && yarn run deploy",
"flow": "flow",
"lint": "eslint --ext js src tests",
"test": "cross-env NODE_PATH=. NODE_ENV=test jest --coverage",
"test:only": "cross-env NODE_PATH=. NODE_ENV=test jest",
"test:watch": "cross-env NODE_PATH=. NODE_ENV=test jest --watch"
},
"jest": {
"coverageDirectory": "./coverage",
"coverageReporters": [
"lcov",
"text-summary"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**"
],
"setupFiles": []
},
"repository": {
"type": "git",
"url": "git+https://github.com/yeojz/react-form-addons.git"
},
"homepage": "https://yeojz.github.io/react-form-addons",
"keywords": [
"react",
"reactjs",
"form",
"forms",
"nested-forms",
"addons",
"decorator",
"higher-order",
"component",
"hoc",
"builder",
"factory",
"composer",
"state",
"redux"
],
"author": "Gerald Yeo <contact@fusedthought.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yeojz/react-form-addons/issues"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.22.0",
"coveralls": "^2.11.15",
"cross-env": "^5.0.0",
"enzyme": "^2.7.1",
"eslint": "^4.1.0",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-react": "^7.0.1",
"flow-bin": "^0.47.0",
"jest": "^21.0.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"rimraf": "^2.5.4"
},
"dependencies": {
"immutability-helper": "^2.1.1",
"invariant": "^2.2.2",
"lodash": "^4.0.0"
}
}