forked from chadly/react-bs-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.81 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": "react-bs-notifier",
"version": "0.0.0",
"description": "A react component to show growl-like notifications using bootstrap alerts",
"keywords": [
"react-component",
"react",
"growl",
"toaster",
"notifier",
"notifications",
"bootstrap",
"alerts"
],
"main": "lib/index.js",
"module": "es/index.js",
"author": "Chad Lee <[email protected]>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --progress --inline --hot --content-base docs/ --port 1341",
"compile-cjs": "rimraf lib && cross-env BABEL_ENV=cjs babel src -d lib --copy-files",
"compile-es": "rimraf es && babel src -d es --copy-files",
"compile": "npm run compile-cjs && npm run compile-es",
"build": "webpack --progress --bail",
"lint": "eslint src docs --ext=js,jsx"
},
"repository": {
"type": "git",
"url": "https://github.com/chadly/react-bs-notifier"
},
"bugs": {
"url": "https://github.com/chadly/react-bs-notifier/issues"
},
"dependencies": {
"prop-types": "15.x",
"react-jss": ">= 8 <9",
"react-transition-group": "2.x",
"toetag": "3.x"
},
"peerDependencies": {
"react": ">=15 <17"
},
"devDependencies": {
"babel-cli": "6.x",
"babel-loader": "6.x",
"babel-plugin-transform-export-extensions": "6.x",
"babel-preset-es2015": "6.x",
"babel-preset-react": "6.x",
"babel-preset-stage-2": "6.x",
"component-playground": "3.x",
"cross-env": "^4.0.0",
"css-loader": "0.25.x",
"eslint": "3.x",
"eslint-config-civicsource": "6.x",
"json-loader": "0.5.x",
"json-update": "^3.0.0",
"raw-loader": "0.5.x",
"react": "16.x",
"react-dom": "16.x",
"react-remarkable": ">=1.1.2",
"rimraf": "2.x",
"style-loader": "0.13.x",
"webpack": "2.x",
"webpack-dev-server": "2.x"
}
}