-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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": "@joalvm/query-params",
"version": "1.0.5",
"description": "Convierte un objeto a parametros de url",
"main": "./lib/cjs/query.js",
"types": "./lib/cjs/query.d.js",
"files": [
"lib/**/**",
"src/"
],
"scripts": {
"clean": "rimraf lib",
"build": "rollup --config=./rollup.config.js",
"watch": "rollup --watch --config=./rollup.config.js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-terser": "^0.1.0",
"@rollup/plugin-typescript": "^9.0.2",
"rimraf": "^3.0.2",
"rollup": "^3.3.0",
"tslib": "^2.4.1",
"typescript": "^4.8.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joalvm/query-params.git"
},
"keywords": [
"query",
"get",
"parameters"
],
"author": "Alejandro Vilchez <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/joalvm/query-params/issues"
},
"homepage": "https://github.com/joalvm/query-params#readme",
"exports": {
".": {
"import": {
"types": "./lib/esm/query.d.ts",
"default": "./lib/esm/query.js"
},
"require": {
"types": "./lib/cjs/query.d.ts",
"default": "./lib/cjs/query.js"
}
}
}
}