forked from Limenius/liform-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.09 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
{
"name": "liform-react",
"version": "0.9.0",
"description": "Generate forms from json-schema to use with React (and redux-form)",
"main": "./lib/index.js",
"scripts": {
"build": "npm run build:lib",
"build:lib": "babel src --out-dir lib",
"lint": "eslint src",
"test": "jest",
"test:cov": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text npm test"
},
"keywords": [
"react",
"json-schema",
"form",
"redux-form"
],
"repository": {
"type": "git",
"url": "https://github.com/limenius/liform-react.git"
},
"author": "Nacho Martin",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.3.26",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"cross-env": "^5.1.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.12.1",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"jest": "^21.2.1",
"json-loader": "^0.5.7",
"nyc": "^11.3.0",
"prettier": "^1.8.2",
"react-addons-test-utils": "^15.6.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.5",
"webpack-hot-middleware": "^2.21.0"
},
"dependencies": {
"ajv": "^5.2.2",
"classnames": "^2.2.5",
"deepmerge": "^2.0.1",
"prop-types": "^15.5.10",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.5.2",
"redux-form": "^7.2.0"
},
"jest": {
"verbose": true,
"collectCoverageFrom": [
"src/**/*.{js}",
"!**/node_modules/**",
"!src/__tests__/**"
],
"testRegex": "src/__tests__/.*spec\\.jsx?$",
"setupFiles": [
"./src/__tests__/setup.js"
]
}
}