-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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
{
"name": "material-ui-json-editor",
"version": "0.11.8",
"description": "A json editor based on json schema for material-ui@next",
"main": "lib/index.js",
"author": "@lunochkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/lunochkin/material-ui-json-editor/issues"
},
"homepage": "https://github.com/lunochkin/material-ui-json-editor#readme",
"scripts": {
"test": "standard && jest",
"build": "babel src -d lib --ignore '**/*.spec.js'",
"prepublish": "npm run build",
"demo:dev": "webpack-dev-server",
"demo:build": "webpack",
"demo:deploy": "gh-pages -d demo/dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lunochkin/material-ui-json-editor.git"
},
"dependencies": {
"classnames": "^2.2.6",
"material-ui-chip-input": "^1.0.0-beta.5",
"prop-types": "^15.6.2"
},
"devDependencies": {
"@material-ui/core": "^1.3.1",
"@material-ui/icons": "^1.1.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.2.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.3.0",
"material-ui": "^1.0.0-beta.42",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"standard": "^11.0.1",
"webpack": "^4.15.1",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
},
"peerDependencies": {
"@material-ui/core": "^1.3.1",
"@material-ui/icons": "^1.1.0",
"react": "^16.4.0"
},
"jest": {
"roots": [
"src"
]
},
"standard": {
"parser": "babel-eslint"
}
}