This repository was archived by the owner on Mar 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.01 KB
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
{
"name": "react-json-editor",
"version": "0.3.0",
"description": "A React dynamic form component for react using JSON-Schema.",
"scripts": {
"start": "node server.js",
"gh-pages": "webpack --config ./config/webpack.gh-pages.js",
"deploy-gh-pages": "scripts/deploy.sh",
"dist": "webpack --config ./config/webpack.dist.js && webpack --config ./config/webpack.dist.min.js",
"test": "jest"
},
"keywords": [
"JSON-Schema",
"jsonschema",
"react",
"react-form",
"react-component",
"form",
"json-editor"
],
"homepage": "https://github.com/ismaelga/react-json-editor",
"bugs": {
"url": "https://github.com/ismaelga/react-json-editor/issues"
},
"license": "MIT",
"author": {
"name": "Ismael Abreu",
"email": "[email protected]"
},
"main": "dist/react-json-editor.js",
"peerDependencies": {
"react": ">=0.12.2 <16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ismaelga/react-json-editor.git"
},
"devDependencies": {
"babel-jest": "^6.0.1",
"babel-preset-react": "^6.3.13",
"css-loader": "^0.9.1",
"file-loader": "^0.8.1",
"highlight.js": "^8.4.0",
"html-loader": "^0.2.3",
"html-webpack-plugin": "^1.1.0",
"immutable": "^3.7.6",
"jest-cli": "^0.8.2",
"jsx-loader": "^0.12.2",
"marked": "^0.3.3",
"purecss": "^0.5.0",
"react": "<16.0.0",
"react-addons-test-utils": "<16.0.0",
"react-addons-update": "<16.0.0",
"react-dom": "<16.0.0",
"react-ghfork": "^0.3.0",
"style-loader": "^0.8.3",
"url-loader": "^0.5.5",
"webpack": "^1.6.0",
"webpack-dev-server": "^1.7.0",
"xtend": "^4.0.0"
},
"jest": {
"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"
],
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
}