-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1006 Bytes
/
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
{
"name": "tiny-params",
"version": "4.0.0",
"description": "A tiny URL param parser, suitable for server or browser",
"main": "index.js",
"module": "module.mjs",
"files": [
"index.js",
"module.mjs"
],
"scripts": {
"build": "node build",
"test": "node test.js && npm run estest && npm run clearTestFile",
"estest": "node build && node --experimental-modules test.mjs",
"clearTestFile": "node build --unbuild"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doesdev/tiny-params.git"
},
"keywords": [
"url",
"uri",
"search",
"param",
"params",
"parameter",
"parse",
"parser",
"parsing",
"query",
"querystring"
],
"author": "Andrew Carpenter (https://github.com/doesdev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/doesdev/tiny-params/issues"
},
"homepage": "http://tiny-params.doesdev.com",
"dependencies": {},
"devDependencies": {
"mvt": "^4.1.0"
}
}