-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
66 lines (66 loc) · 1.55 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
{
"name": "@vashnak/react-toasts",
"version": "3.0.6",
"description": "Simple react alerter.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "webpack",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vashnak/react-toasts.git"
},
"author": "Vashnak <anthony.sarais@gmail.com>",
"license": "ISC",
"keywords": [
"react",
"toast",
"toasts",
"toaster",
"alert",
"alerter",
"push",
"notification",
"notify",
"react-component",
"react-toasts"
],
"bugs": {
"url": "https://github.com/Vashnak/react-toasts/issues"
},
"homepage": "https://vashnak.github.io/react-toasts",
"files": [
"/lib"
],
"dependencies": {
"watchable-stores": "^2.0.2"
},
"peerDependencies": {
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.2"
},
"devDependencies": {
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^2.1.0",
"import": "0.0.6",
"prop-types": "^15.7.1",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"style-loader": "^0.23.1",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3",
"watchable-stores": "^2.0.2",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
}
}