forked from fkhadra/react-toastify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 3.11 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "material-react-toastify",
"version": "1.0.3",
"description": "React Material-UI Snackbars made easy",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"directories": {
"example": "example",
"test": "test"
},
"dependencies": {
"caniuse-lite": "^1.0.30001439",
"clsx": "^1.1.1",
"prop-types": "^15.7.2",
"react-transition-group": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@testing-library/react": "^9.4.0",
"@types/jest": "^24.9.0",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-transition-group": "^4.2.4",
"coveralls": "^3.0.9",
"cssnano": "^4.1.10",
"cssnano-cli": "^1.0.5",
"husky": "^4.2.0",
"parcel": "^2.0.0-beta.1",
"postcss": "^7.0.27",
"postcss-cli": "^7.1.0",
"react": "^16.13.1",
"react-app-polyfill": "^2.0.0",
"react-dom": "^16.13.1",
"sass": "^1.26.0",
"tsdx": "^0.12.3",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
},
"scripts": {
"start": "cd example && npm run start",
"build": "npm run prepare",
"test": "tsdx test --passWithNoTests",
"test:coverage": "tsdx test --coverage",
"lint": "tsdx lint src",
"prepare": "tsdx build && npm run style",
"sass": "sass scss/main.scss dist/ReactToastify.css",
"sass-minimal": "sass scss/minimal.scss dist/ReactToastify.minimal.css",
"postsass": "postcss dist/ReactToastify.css --use autoprefixer -m -o dist/ReactToastify.css",
"postsass-minimal": "cssnano dist/ReactToastify.minimal.css dist/ReactToastify.minimal.css --no-zindex --no-reduceIdents",
"style": "npm run sass && npm run sass-minimal && cssnano dist/ReactToastify.css dist/ReactToastify.min.css --no-zindex --no-reduceIdents"
},
"keywords": [
"react",
"notification",
"toast",
"material ui snackbars",
"material ui toast",
"react-component",
"material-react-toastify",
"material-ui-snackbars",
"material-design-snackbars",
"material-design-notifications",
"material-io-snackbars",
"material-snackbars",
"snackbars",
"material-ui-toast",
"material-toast",
"react-toastify",
"push",
"alert"
],
"repository": {
"type": "git",
"url": "git+https://github.com/shivanshBTW/material-react-toastify.git"
},
"author": "Shivansh Tyagi <stshivansh9@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shivanshBTW/material-react-toastify/issues"
},
"homepage": "https://github.com/shivanshBTW/material-react-toastify#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true
},
"eslint": {
"rules": {
"react-hooks/exhaustive-deps": "off"
}
},
"jest": {
"verbose": true,
"coveragePathIgnorePatterns": [
"/src/index.tsx"
]
},
"files": [
"dist",
"scss"
],
"sideEffects": [
"*.css"
],
"peerDependencies": {
"react": ">=16"
}
}