-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
46 lines (46 loc) · 1.18 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
{
"name": "react-notify-toast",
"title": "React Notify Toast",
"version": "0.5.1",
"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": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^7.2.3",
"eslint": "^5.12.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-react": "^7.12.3"
},
"repository": {
"type": "git",
"url": "git://github.com/jesusoterogomez/react-notify-toast.git"
},
"dependencies": {
"object-assign": "^4.0.0",
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.7 || ^15.0.0 || ^16.0.0"
}
}