-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.79 KB
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
{
"name": "react-device-breakpoints",
"version": "2.0.3",
"description": "Component for managing matchMedia queries in react.",
"main": "lib/index.js",
"scripts": {
"build": "npx babel src --out-dir lib",
"test": "jest --coverage",
"test-watch": "jest --watch"
},
"author": "@dahliacreative",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dahliacreative/react-device-breakpoints.git"
},
"keywords": [
"react",
"device",
"matchMedia",
"breakpoints",
"media queries",
"responsive",
"javascript",
"es6",
"redux",
"hooks",
"useEffect"
],
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^9.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.16.0",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.7.1",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"jest": {
"verbose": true,
"collectCoverageFrom": ["./src/**/*.js"],
"testMatch": ["**/?(*.)+(spec|test).[jt]s?(x)"],
"setupFiles": ["./src/setupTests.js"],
"snapshotSerializers": ["enzyme-to-json/serializer"]
},
"dependencies": {}
}