forked from crsohr/react-router-dom-search-params
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.66 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
{
"name": "react-router-dom-search-params",
"version": "1.1.2",
"description": "A utility that integrates search params into React components",
"main": "build/index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"start": "webpack --watch",
"build": "webpack --mode production",
"install-peers": "install-peers -f",
"lint": "eslint src"
},
"keywords": [
"react",
"react-router-dom"
],
"author": {
"name": "Christopher Allène"
},
"repository": {
"type": "git",
"url": "https://github.com/crsohr/react-router-dom-search-params"
},
"license": "ISC",
"peerDependencies": {
"react-router-dom": "5.x",
"react": "16.x"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.3.0",
"install-peers-cli": "^2.2.0",
"jest": "^25.3.0",
"react": "^16.13.0",
"react-dom": "^16.13.1",
"react-router-dom": "^5.1.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"babel-eslint": "^10.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.8.2",
"prop-types": "^15.7.2"
},
"prettier": {},
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}