forked from gor181/react-notification-system-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.24 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
{
"name": "react-notification-system-redux",
"version": "2.0.0",
"description": "react-notification-system-redux",
"main": "lib/notifications.js",
"author": "Goran Udosic",
"homepage": "https://github.com/gor181/react-notification-system-redux",
"repository": {
"type": "git",
"url": "https://github.com/gor181/react-notification-system-redux.git"
},
"bugs": {
"url": "https://github.com/gor181/react-notification-system-redux/issues"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-eslint": "^4.1.3",
"babel-jest": "^14.1.0",
"babel-polyfill": "^6.13.0",
"babel-preset-airbnb": "^2.0.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.13.0",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.18.0",
"babelify": "^7.3.0",
"brfs": "^1.4.3",
"chai": "^3.5.0",
"cross-env": "^5.2.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"eslint": "^1.6.0",
"eslint-plugin-react": "^3.5.1",
"gulp": "^3.9.0",
"jest-cli": "^14.1.0",
"jsdom": "^9.8.3",
"lodash": "^4.14.2",
"mocha": "^3.2.0",
"react": "^16.7.0",
"react-component-gulp-tasks": "git+https://github.com/gor181/react-component-gulp-tasks.git",
"react-dom": "^16.7.0",
"react-notification-system": "^0.2.7",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-mock-store": "^1.5.3",
"sinon": "^1.17.6"
},
"dependencies": {
"prop-types": "^15.6.0",
"react-notification-system": "^0.2.x"
},
"peerDependencies": {
"react": "^16.4.0-0",
"react-dom": "^16.4.0-0",
"react-redux": "^6.0.0",
"redux": "^3.6.0 || ^4.0.0"
},
"browserify-shim": {
"react": "global:React"
},
"scripts": {
"build": "gulp clean && cross-env NODE_ENV=production gulp build",
"examples": "gulp dev:server",
"lint": "eslint ./; true",
"publish:site": "cross-env NODE_ENV=production gulp publish:examples",
"release": "cross-env NODE_ENV=production gulp release",
"start": "gulp dev",
"test": "mocha test/__tests__/**/*",
"test-dev": "mocha test/__tests__/**/* --watch",
"watch": "gulp watch:lib"
},
"keywords": [
"react-notification-system",
"redux"
]
}