-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·44 lines (44 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.04 KB
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
{
"name": "@davistran86/notification",
"version": "2.0.7",
"description": "Easily to add notification to your react web app with 1 line of code.",
"private": false,
"keywords": [
"react",
"notification",
"message",
"notify",
"push",
"alert",
"react-component"
],
"author": "Tran Nguyen Hai Thanh",
"repository": "davistran86/react-simple-notification",
"main": "dist/index.js",
"license": "MIT",
"dependencies": {
"styled-components": "^4.4.0"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "^4.4.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "^4.4.0",
"typescript": "3.3.3"
},
"scripts": {
"prepublishOnly": "babel ./src --out-dir ./dist -s inline"
},
"files": [
"dist/*"
]
}