forked from networknt/react-schema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.99 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
{
"name": "react-schema-form",
"version": "0.3.11",
"description": "React json schema form",
"keywords": [
"json schema",
"schema form",
"react",
"react-component",
"form"
],
"author": "Steve Hu, Nicholas Azar",
"license": "MIT",
"main": "./lib/index",
"files": [
"README.md",
"CHANGELOG.md",
"LICENSE",
"css",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/networknt/react-schema-form.git"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash": "^4.16.6",
"objectpath": "^1.2.1",
"tv4": "^1.2.7"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.5.2",
"babel-eslint": "^7.1.0",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-runtime": "^6.18.0",
"css-loader": "^0.25.0",
"eslint": "^3.9.1",
"eslint-plugin-react": "^6.5.0",
"jest-cli": "^16.0.2",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"material-ui": "^0.18.7",
"react-addons-test-utils": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-tap-event-plugin": "^2.0.0",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"webpack": "^2.7.0"
},
"peerDependencies": {
"material-ui": "^0.18.7",
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"scripts": {
"lint": "eslint src",
"preversion": "webpack -p && git add dist",
"prepublish": "rimraf lib && babel src -d lib",
"test": "npm run lint && jest"
},
"jest": {
"testPathDirs": [
"src"
],
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/lodash",
"<rootDir>/node_modules/lodash-es"
]
}
}