-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.06 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
45
{
"name": "usetoaster",
"version": "2.0.0",
"description": "React Hook for easily creating and managing Toasts.",
"main": "dist/index.js",
"files": [
"dist/index.js"
],
"scripts": {
"test": "test",
"transpile": "babel index.js -d dist",
"prepublishOnly": "npm run transpile",
"localBar": "rm -rf ~/usetoaster-2.0.0.tgz && ls ~ && npm run transpile && npm pack && cp usetoaster-2.0.0.tgz ~ && ls ~"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johanfive/useToaster.git"
},
"keywords": [
"Toaster",
"Toasts",
"Toast",
"React",
"Hook",
"Hooks",
"useToast",
"useToasts",
"useToaster"
],
"author": "johanFive",
"license": "MIT",
"bugs": {
"url": "https://github.com/johanfive/useToaster/issues"
},
"homepage": "https://github.com/johanfive/useToaster#readme",
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0"
}
}