forked from AlecAivazis/redux-responsive
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.92 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
{
"name": "redux-responsive",
"version": "4.0.0",
"description": "Utilities for easily creating responsive designs in a redux architecture.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/aaivazis/redux-responsive.git"
},
"author": "Alec Aivazis",
"contributors": [
"Monte Mishkin"
],
"scripts": {
"test": "gulp test",
"dev": "gulp build:dev",
"build": "gulp build",
"build:min": "gulp build:prod",
"prepublish": "npm run build && npm run build:min"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.9",
"babel-plugin-istanbul": "^3.0.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"chai": "^3.3.0",
"coveralls": "^2.11.15",
"del": "^2.0.2",
"eslint": "^1.6.0",
"eslint-loader": "^1.1.0",
"eslint-plugin-react": "^3.5.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-env": "^0.2.0",
"immutable": "^3.8.1",
"karma": "^1.1.1",
"karma-chrome-launcher": "^0.2.1",
"karma-coverage": "^0.5.5",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-safari-launcher": "^0.1.1",
"karma-sinon-chai": "^1.1.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"lolex": "^1.4.0",
"mocha": "^2.3.3",
"phantomjs-prebuilt": "^2.1.7",
"react-redux": "^4.4.6",
"redux-immutablejs": "0.0.8",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"vinyl-named": "^1.1.0",
"webpack": "^1.12.2",
"webpack-stream": "^2.1.1"
},
"dependencies": {
"babel-plugin-istanbul": "^3.0.0",
"lodash": "^4.2.1",
"mediaquery": "0.0.3",
"redux": "^3.5.2"
}
}