-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.96 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
{
"name": "@jsonforms/material-tree-renderer",
"version": "2.2.0",
"description": "Material-based tree renderer for JSON Forms",
"repository": "https://github.com/eclipsesource/jsonforms",
"bugs": "https://github.com/eclipsesource/jsonforms/issues",
"homepage": "http://jsonforms.io/",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"directories": {
"example": "example",
"src": "src",
"webpack": "webpack"
},
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"prepare": "yarn run build",
"build": "tsc --skipLibCheck",
"clean": "rm -rf lib coverage dist .nyc_output 2> /dev/null",
"lint": "tslint --project tsconfig.json",
"test": "jest --no-cache",
"test-cov": "jest --no-cache"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/test/**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
},
"dependencies": {
"react-dnd": "^2.6.0",
"react-dnd-html5-backend": "^2.6.0",
"recompose": "^0.27.1",
"react": "^16.4.0",
"@material-ui/core": "^3.3.1",
"@material-ui/icons": "^3.0.1"
},
"peerDependencies": {
"@jsonforms/core": "^2.0.0",
"@jsonforms/material-renderers": "^2.0.0",
"@jsonforms/react": "^2.0.0"
},
"devDependencies": {
"@jsonforms/core": "^2.2.0",
"@jsonforms/material-renderers": "^2.2.0",
"@jsonforms/react": "^2.2.0",
"@types/lodash": "^4.14.104",
"@types/node": "^10.12.10",
"@types/recompose": "^0.27.0",
"awesome-typescript-loader": "^3.1.3",
"copy-webpack-plugin": "^4.5.1",
"jest": "^23.0.0",
"ncp": "^2.0.0",
"react-dom": "^16.4.0",
"typescript": "^3.1.6",
"ts-jest": "^23.0.0",
"tslint": "^5.11.0",
"webpack-dev-server": "^3.1.14"
}
}