forked from pbeshai/use-query-params
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.69 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
{
"name": "use-query-params",
"version": "0.3.3",
"description": "React Hook for managing state in URL query parameters with easy serialization.",
"main": "lib/index.js",
"module": "esm/index.js",
"files": [
"lib/",
"esm/"
],
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"scripts": {
"build:cjs": "tsc",
"build:es": "tsc -m esNext --outDir esm",
"build": "npm run build:cjs && npm run build:es",
"build-website": "npm run test && npm run build && cd examples/website-example && npm run build && npm run copy-build",
"clean": "rimraf lib esm",
"dev": "NODE_ENV=development tsc -w",
"prepublishOnly": "npm run test && npm run build",
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/pbeshai/use-query-params.git"
},
"keywords": [
"react",
"url",
"query",
"parameters",
"hook",
"hooks",
"query param",
"react use"
],
"author": "Peter Beshai <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.11",
"@types/react": "^16.8.7",
"babel-jest": "^24.5.0",
"jest": "^24.5.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-hooks-testing-library": "^0.3.7",
"react-testing-library": "^6.0.0",
"rimraf": "^2.6.3",
"typescript": "^3.3.3333"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"dependencies": {
"serialize-query-params": "^0.1.3"
}
}