forked from pbeshai/use-query-params
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.12 KB
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
{
"name": "serialize-query-params",
"version": "1.3.6",
"description": "A library for simplifying encoding and decoding URL query parameters.",
"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",
"clean": "rimraf lib esm",
"dev": "NODE_ENV=development tsc -w",
"prepublishOnly": "npm run test && npm run clean && 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": [
"serialization",
"serialize",
"deserialize",
"encode",
"decode",
"url",
"query",
"parameters",
"query param"
],
"author": "Peter Beshai <peter.beshai@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/node": "15.0.1"
},
"peerDependencies": {
"query-string": ">=5.1.1"
}
}