-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "serialize-query-params",
"version": "2.0.2",
"description": "A library for simplifying encoding and decoding URL query parameters.",
"main": "./dist/index.cjs.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"module": "./dist/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "package-bundler --copyPackageJson --rewritePackageJson --tsconfigPath ./tsconfig.build.json",
"clean": "rimraf dist",
"dev": "NODE_ENV=development tsc -w",
"prepublishOnly": "npm-run-all test-all clean build",
"test": "vitest run",
"test-watch": "vitest watch",
"test-coverage": "vitest run --coverage",
"test-types": "tsd",
"test-all": "npm-run-all --parallel test test-types"
},
"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 <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/node": "15.0.1"
},
"tsd": {
"directory": "src"
},
"gitHead": "4589090c353d8131dc11a8ea7d55ae4d859ba624"
}