-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 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
49
{
"name": "use-query-param",
"version": "1.0.9",
"description": "A React Hook that extracts query params from a URL query string and returns a queried object",
"main": "lib/index.js",
"types": "lib",
"scripts": {
"test": "jest --coverage",
"build": "rm -rf lib && tsc -p ."
},
"keywords": [
"hooks",
"React JS",
"useQueryParams",
"setQueryParams",
"use query params",
"use-query-param"
],
"author": "Nwabuzor, Chukwuemeka Obiora",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.9.0",
"@testing-library/react": "^10.2.1",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"babel-jest": "^25.5.1",
"jest": "^25.5.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "5.2.0",
"typescript": "^3.8.3"
},
"files": [
"lib"
],
"peerDependencies": {
"react": "^16.8.x",
"react-router-dom": "^5.2.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaolinmkz/useQueryParam"
}
}