-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1014 Bytes
/
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
{
"name": "use-query-string",
"version": "2.4.1",
"description": "A React hook that serializes state into the URL query string",
"author": "Trevor Blades <[email protected]>",
"repository": "trevorblades/use-query-string",
"license": "MIT",
"keywords": [
"query",
"string",
"querystring",
"serialize",
"state",
"react",
"hook"
],
"main": "index.js",
"eslintConfig": {
"extends": "@trevorblades/eslint-config/typescript"
},
"scripts": {
"pretest": "eslint src",
"test": "jest",
"prepare": "tsc"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@testing-library/react-hooks": "^7.0.2",
"@trevorblades/eslint-config": "^7.2.8",
"@types/jest": "^27.4.0",
"eslint": "^7.32.0",
"history": "^4.10.1",
"jest": "^27.4.7",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"dependencies": {
"query-string": "^7.1.0"
}
}