-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "paramser",
"version": "0.0.2",
"description": "URL Search Params parser. Collection of small methods to help you to manipulate the URL search params. This package uses URLSearchParams browser API under the hood (no dependencies!). Package's API is simple, yet very powerful. ",
"homepage": "https://github.com/maciekgrzybek/paramser",
"bugs": "https://github.com/maciekgrzybek/paramser/issues",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watchAll",
"prepublishOnly": "npm run build"
},
"author": {
"email": "[email protected]",
"name": "Maciek Grzybek",
"url": "https://maciekgrzybek.dev"
},
"license": "ISC",
"devDependencies": {
"@chialab/esbuild-plugin-commonjs": "^0.14.11",
"@types/jest": "^26.0.3",
"esbuild": "^0.14.14",
"jest": "^26.1.0",
"rollup": "^2.66.1",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-esbuild": "^4.8.2",
"ts-jest": "^26.1.1",
"typescript": "^4.5.5"
},
"keywords": [
"browser",
"api",
"search",
"params",
"param",
"searchparams",
"url",
"parse",
"stringify",
"query",
"string",
"querystring",
"qs",
"parameter"
],
"files": [
"build"
]
}