-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "context-media-match",
"version": "2.1.0",
"description": "A small library for matching media queries using React context. Bootstrap breakpoints by default.",
"main": "dist/index.js",
"scripts": {
"build": "webpack",
"dev": "webpack --watch",
"test": "..."
},
"repository": {
"type": "git",
"url": "git+https://github.com/weilandia/context-media-match.git"
},
"keywords": [
"react",
"context",
"matchMedia",
"query",
"media",
"responsive"
],
"author": "weilandia",
"license": "MIT",
"bugs": {
"url": "https://github.com/weilandia/context-media-match/issues"
},
"homepage": "https://github.com/weilandia/context-media-match#readme",
"peerDependencies": {
"prop-types": ">=15.6.2",
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-react-jsx": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"babel-loader": "^8.2.2",
"prop-types": ">=15.6.2",
"react": ">=17.0.2",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"lodash.debounce": "^4.0.8"
}
}