forked from jesusoterogomez/react-notify-toast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.04 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
{
"name": "react-notify-toast",
"title": "React Notify Toast",
"version": "0.4.0",
"description": "Toast notifications for React.js",
"keywords": ["react", "toast", "notification", "component", "notify"],
"author": "Jesús Otero <[email protected]>",
"main": "bin/notify.js",
"license": "MIT",
"scripts": {
"lint": "eslint src/",
"compile": "babel -d bin/ src/",
"prepublish": "npm run compile",
"read:version": "echo $npm_package_version"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^4.1.8",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^1.10.3",
"eslint-plugin-react": "^2.6.4"
},
"repository": {
"type": "git",
"url": "git://github.com/jesusoterogomez/react-notify-toast.git"
},
"dependencies": {
"object-assign": "^3.0.0",
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0-0 || ^16.0.0-0",
"react-dom": "^0.14.7 || ^15.0.0 || ^16.0.0"
}
}