-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
90 lines (90 loc) · 2.55 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
82
83
84
85
86
87
88
89
90
{
"name": "material-ui-snackbar-provider",
"version": "2.0.0",
"description": "A convenient way to use material-ui's snackbars.",
"main": "lib/index.js",
"scripts": {
"test": "standard && jest",
"test:unit": "jest",
"test:coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"build": "babel src -d lib && rm lib/*.test.js && (find src -name \\*.d.ts -exec cp {} lib \\;)",
"prepublishOnly": "babel src -d lib && rm lib/*.test.js && (find src -name \\*.d.ts -exec cp {} lib \\;)",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamWertarbyte/material-ui-snackbar-provider.git"
},
"keywords": [
"react",
"material",
"material-design",
"material-ui",
"snackbar",
"react-component"
],
"author": "Wertarbyte <kontakt@wertarbyte.com> (https://wertarbyte.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/TeamWertarbyte/material-ui-snackbar-provider/issues"
},
"homepage": "https://github.com/TeamWertarbyte/material-ui-snackbar-provider#readme",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-transform-object-assign": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.0",
"@mui/lab": "^5.0.0-alpha.47",
"@mui/material": "^5.0.0",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/addons": "^6.3.8",
"@storybook/react": "^6.3.8",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.2.2",
"coveralls": "^3.1.1",
"enzyme": "^3.11.0",
"jest": "^27.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"standard": "^16.0.3"
},
"peerDependencies": {
"@mui/material": "^5.0.0",
"react": "^17.0.2 || ^18.0.0"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"jest": {
"setupFiles": [
"./test/shim.js",
"./test/jestsetup.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/test"
],
"roots": [
"src",
"test"
],
"testEnvironment": "jsdom"
},
"standard": {
"parser": "babel-eslint"
},
"files": [
"LICENSE",
"README.md",
"lib/**/*.js",
"lib/**/*.d.ts"
]
}