-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.43 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-responsive-breakpoints",
"version": "3.1.0",
"description": "A higher-order React component to translate CSS breakpoints into properties",
"main": "lib/index.js",
"files": [
"lib/**/!(*.spec).js"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "npm run clean && babel src --out-dir lib",
"clean": "rimraf lib",
"install-react": "enzyme-adapter-react-install 16 || echo \"ignoring install errors\"",
"lint": "eslint ./ --report-unused-disable-directives",
"test": "cross-env NODE_ENV=test karma start karma-local.conf.js",
"test:ci": "cross-env NODE_ENV=test karma start karma-ci.conf.js",
"travisci": "npm run install-react && npm run lint && npm run test:ci && codecov && npx snyk test",
"publish-please": "npm run build && npx publish-please",
"prepublish": "npx publish-please guard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wimpyprogrammer/react-responsive-breakpoints.git"
},
"author": "Drew Keller <drew@wimpyprogrammer.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wimpyprogrammer/react-responsive-breakpoints/issues"
},
"homepage": "https://github.com/wimpyprogrammer/react-responsive-breakpoints#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.9.0",
"babel-loader": "^8.1.0",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.1.2",
"codecov": "^3.0.1",
"core-js": "^3.6.5",
"cross-env": "^5.0.5",
"dirty-chai": "^2.0.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"enzyme-adapter-react-helper": "^1.3.1",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"karma": "^5.2.0",
"karma-coverage": "^2.0.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.4",
"karma-sauce-launcher": "^4.1.5",
"karma-viewport": "^1.0.0",
"karma-webpack": "^4.0.2",
"lodash.merge": "^4.6.0",
"lodash.once": "^4.1.1",
"mocha": "^6.0.2",
"react": "*",
"react-dom": "*",
"react-test-renderer": "*",
"rimraf": "^2.6.2",
"sinon": "^7.2.7",
"sinon-chai": "^3.2.0",
"webpack": "^5.1.1"
},
"peerDependencies": {
"react": "*"
},
"snyk": true
}