forked from tabrez96/cogo-toast
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.25 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
117
{
"name": "cogo-toast",
"description": "Beautiful, Zero Configuration, Toast Messages - Built with React",
"version": "4.2.4",
"license": "MIT",
"scripts": {
"setup": "yarn install && cd docs && yarn install",
"add-contributor": "all-contributors add",
"dev-npm": "rollup -c -w",
"dev-docs": "cd docs && yarn run dev",
"dev": "concurrently --kill-others-on-fail \"yarn run dev-npm\" \"yarn run dev-docs\"",
"build": "rollup -c",
"minify-cjs": "uglifyjs --compress --mangle -o dist/index.js -- dist/index.js",
"minify-es": "terser --compress --mangle --comments /$^/ -o dist/index.es.js -- dist/index.es.js",
"minify": "concurrently --kill-others-on-fail \"yarn run minify-cjs\" \"yarn run minify-es\"",
"postbuild": "yarn run minify",
"predeploy": "cd docs && yarn install && yarn run deploy",
"deploy": "gh-pages -t -d docs/out"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/preset-react": "7.9.4",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-typescript": "^2.1.0",
"@rollup/plugin-url": "^5.0.0",
"@types/jest": "^25.2.2",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@svgr/rollup": "5.4.0",
"all-contributors-cli": "^6.14.2",
"babel-eslint": "10.1.0",
"concurrently": "5.2.0",
"cross-env": "7.0.2",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"gh-pages": "2.2.0",
"prettier": "^2.0.5",
"prettier-eslint-cli": "^5.0.0",
"prop-types": "^15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-scripts": "3.4.1",
"rollup": "^2.10.2",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-postcss": "3.1.1",
"terser": "4.6.13",
"typescript": "^3.9.2",
"tslib": "^2.0.0",
"uglify-js": "^3.9.3"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"files": [
"dist",
"index.d.ts"
],
"homepage": "https://cogoport.github.io/cogo-toast/",
"bugs": {
"url": "https://github.com/Cogoport/cogo-toast/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cogoport/cogo-toast.git"
},
"keywords": [
"react",
"toast",
"react-toast",
"toast-react",
"toastr",
"toast messages",
"messages",
"notifications",
"react notifications",
"component",
"components",
"react component",
"react components",
"ui"
],
"author": {
"name": "Cogoport",
"email": "developers@cogoport.io",
"url": "https://cogoport.io/"
},
"contributors": [
{
"name": "Cogoport",
"email": "developers@cogoport.io",
"url": "https://cogoport.io/"
},
{
"name": "anmolmahatpurkar",
"email": "anmol@cogoport.com",
"url": "https://github.com/anmolmahatpurkar"
}
]
}