forked from igorprado/react-notification-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.59 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-notification-system",
"version": "0.2.7",
"description": "A React Notification System fully customized",
"main": "dist/NotificationSystem.js",
"scripts": {
"prepublish": "npm run build",
"test": "karma start --single-run",
"test-watch": "karma start",
"prepare-build": "npm run lint && rimraf dist/",
"prebuild": "npm run prepare-build",
"build": "jsx -x jsx ./src ./dist & jsx ./src ./dist",
"lint": "eslint src --ext .jsx,.js",
"start": "NODE_ENV=development node devServer.js",
"build-example": "rimraf example/build/ && webpack --stats --config webpack.config.prod.js"
},
"repository": {
"type": "git",
"url": "https://github.com/igorprado/react-notification-system"
},
"keywords": [
"react",
"notification",
"notification system",
"component",
"react component",
"react-component"
],
"author": "Igor Prado",
"license": "MIT",
"bugs": {
"url": "https://github.com/igorprado/react-notification-system/issues"
},
"homepage": "https://github.com/igorprado/react-notification-system",
"dependencies": {
"object-assign": "^4.0.1"
},
"peerDependencies": {
"react": "0.14.x || ^15.0.0",
"react-dom": "0.14.x || ^15.0.0"
},
"devDependencies": {
"autoprefixer-loader": "^3.1.0",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"babel-plugin-react-class-display-name": "^0.1.0",
"babel-plugin-react-transform": "^1.1.1",
"css-loader": "^0.19.0",
"eslint": "1.9.0",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.5.1",
"expect": "^1.12.1",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"install": "^0.1.8",
"isparta-loader": "^1.0.0",
"karma": "^0.13.10",
"karma-chai-plugins": "^0.6.0",
"karma-chrome-launcher": "^0.2.1",
"karma-cli": "^0.1.1",
"karma-coverage": "^0.5.2",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.3",
"node-sass": "^3.3.3",
"npm": "^3.3.6",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"react-tools": "^0.13.2",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.1.1",
"rimraf": "^2.4.3",
"sass-loader": "^3.0.0",
"style-loader": "^0.12.4",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1"
}
}