-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.45 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
{
"name": "@libertymutual/react-responsive",
"version": "2.0.1",
"description": "A set of components and utilities for working with responsive thresholds and responsive props.",
"sideEffects": false,
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && NODE_ENV=production babel --config-file=./babel.config.js src -d dist",
"lint": "eslint --config .eslintrc --ext .jsx --ext .js .",
"lint:fix": "eslint --config .eslintrc --ext .jsx --ext .js . --fix",
"test": "jest --config=./jest.config.js",
"snyk-test": "snyk test --file=package.json --severity-threshold=high --org=liberty-mutual"
},
"repository": {
"type": "git",
"url": "https://github.com/libertymutual/react-responsive"
},
"keywords": [
"react",
"responsive",
"props",
"threshold",
"hide",
"show",
"responsive props"
],
"author": "Charlie Crosby",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "~7.13.0",
"@babel/core": "~7.13.1",
"@babel/plugin-proposal-class-properties": "~7.13.0",
"@babel/plugin-transform-runtime": "~7.13.7",
"@babel/preset-env": "~7.13.5",
"@babel/preset-react": "~7.12.13",
"@babel/register": "~7.13.0",
"@babel/runtime": "~7.13.7",
"@testing-library/jest-dom": "~5.11.9",
"@testing-library/react": "~11.2.5",
"babel-eslint": "~10.1.0",
"babel-jest": "~26.6.3",
"babel-loader": "~8.2.2",
"babel-plugin-transform-react-remove-prop-types": "~0.4.24",
"babel-plugin-transform-rename-import": "~2.3.0",
"babel-preset-env": "~1.7.0",
"babel-preset-minify": "~0.5.1",
"core-js": "~3.9.0",
"eslint": "~7.20.0",
"eslint-config-airbnb": "~18.2.1",
"eslint-config-prettier": "8.1.0",
"eslint-import-resolver-alias": "~1.1.2",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-jsx-a11y": "~6.4.1",
"eslint-plugin-prettier": "~3.3.1",
"eslint-plugin-react": "~7.22.0",
"eslint-plugin-react-hooks": "~4.2.0",
"identity-obj-proxy": "~3.0.0",
"jest": "~26.6.3",
"jest-environment-jsdom": "^26.6.2",
"jest-environment-jsdom-global": "~2.0.4",
"prettier": "~2.2.1",
"prettier-eslint": "~12.0.0",
"prettier-eslint-cli": "~5.0.0",
"react": "~17.0.1",
"react-dom": "~17.0.1",
"rimraf": "~3.0.2",
"snyk": "~1.460.0",
"uuid": "~8.3.2"
},
"peerDependencies": {
"prop-types": "~15.7.2",
"react": "^16.8.0",
"react-dom": "^16.8.0"
}
}