-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.7 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
{
"name": "fusion-plugin-material-ui",
"description": "material-ui support for Fusion.js",
"version": "1.0.2",
"license": "MIT",
"files": [
"dist-*/",
"src"
],
"repository": "IcculusC/fusion-plugin-material-ui",
"main": "./dist-node-cjs/index.js",
"module": "./dist-node-esm/index.js",
"browser": {
"./dist-node-cjs/index.js": "./dist-browser-cjs/index.js",
"./dist-node-esm/index.js": "./dist-browser-esm/index.js"
},
"devDependencies": {
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@material-ui/core": "^4.9.3",
"@material-ui/styles": "^4.9.0",
"babel-eslint": "^10.0.3",
"create-universal-package": "^4.1.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint": "^6.0.1",
"eslint-config-fusion": "^6.0.7",
"eslint-plugin-cup": "2.0.1",
"eslint-plugin-flowtype": "^3.11.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.2",
"eslint-plugin-react-hooks": "^1.6.0",
"flow-bin": "^0.118.0",
"fusion-core": "^2.0.9",
"fusion-test-utils": "^2.0.9",
"jest": "^25.1.0",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"peerDependencies": {
"@material-ui/core": ">= 4.x",
"@material-ui/styles": ">= 4.x",
"fusion-core": "^2.0.0",
"react": "14.x - 16.x"
},
"scripts": {
"clean": "cup-clean",
"lint": "eslint .",
"transpile": "yarn clean && cup-build",
"test": "jest",
"prepare": "yarn transpile",
"prepublish": "yarn transpile"
},
"engines": {
"node": ">= 8.11.0"
},
"dependencies": {
"jss": "^10.0.4"
}
}