forked from chadly/react-bs-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1015 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1015 Bytes
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": "react-bs-notifier",
"version": "0.4.1",
"description": "A react component to show growl-like notifications using bootstrap alerts",
"keywords": [
"react-component",
"react",
"growl",
"notifier",
"notifications",
"bootstrap",
"alerts"
],
"main": "alerts.js",
"author": "Chad Lee <npm@chadly.net>",
"license": "MIT",
"scripts": {
"build": "babel alerts.jsx > alerts.js",
"test": "jshint . --exclude node_modules",
"prepublish": "npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/chadly/react-bs-notifier"
},
"bugs": {
"url": "https://github.com/chadly/react-bs-notifier/issues"
},
"browserify": {
"transform": [
"node-lessify"
]
},
"dependencies": {
"node-lessify": "0.0.10"
},
"peerDependencies": {
"react": "^15.0.0",
"react-addons-css-transition-group": "^15.0.0"
},
"devDependencies": {
"babel": "^5.6.23",
"jshint": "^2.7.0"
}
}