forked from AlecAivazis/redux-responsive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.95 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
87
88
89
90
91
92
93
{
"name": "redux-responsive",
"version": "4.3.6",
"description": "Utilities for easily creating responsive designs in a redux architecture.",
"main": "index.js",
"module": "lib/index.js",
"types": "types",
"repository": {
"type": "git",
"url": "https://github.com/aaivazis/redux-responsive.git"
},
"author": "Alec Aivazis",
"scripts": {
"build": "webpack --config config/webpack.js",
"build:prod": "NODE_ENV=production npm run build",
"build:lib": "babel src --out-dir lib",
"build:all": "npm run build && npm run build:prod && npm run build:lib",
"clean": "rm -rf react.* index.* lib/",
"dev": "NODE_ENV=dev webpack-dev-server --inline --hot --config example/webpack.js",
"prepublish": "npm run build:all",
"test": "NODE_ENV=test jest",
"test:types": "dtslint types",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"test:coverage:report": "npm run test:coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:coverage:report:types": "npm run test:coverage:report && npm run test:types"
},
"license": "MIT",
"dependencies": {
"mediaquery": "0.0.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"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",
"dtslint": "Microsoft/dtslint#production",
"eslint": "^1.6.0",
"eslint-loader": "^1.1.0",
"eslint-plugin-react": "^3.5.1",
"html-webpack-plugin": "^2.28.0",
"immutable": "^3.8.1",
"jest": "^19.0.2",
"lolex": "^1.4.0",
"match-media-mock": "^0.1.0",
"mocha": "^2.3.3",
"phantomjs-prebuilt": "^2.1.7",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "next",
"react-redux": "^5.0.4",
"redux": "^3.6.0",
"redux-immutable": "^4.0.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"vinyl-named": "^1.1.0",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.3",
"webpack-stream": "^2.1.1"
},
"peerDependencies": {
"redux": "^3.6.0"
},
"jest": {
"modulePaths": [
"<rootDir>/src"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/config/__mocks__/styleMock.js"
},
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/example/",
"<rootDir>/lib/"
]
}
}