-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "url-lib",
"version": "0.0.0-semantically-released",
"description": "A simple, lightweight string utility for Node and browsers that supports serializing and parsing URLs and query strings.",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"jsnext:main": "lib/esm/index.js",
"types": "lib/types/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/benmvp/url-lib.git"
},
"keywords": [
"url",
"serialization",
"parse",
"query",
"query+string",
"format",
"fetch"
],
"author": "Ben Ilegbodu <[email protected]> (http://www.benmvp.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/benmvp/url-lib/issues"
},
"homepage": "https://github.com/benmvp/url-lib#readme",
"scripts": {
"start": "benmvp start",
"test": "benmvp test",
"build": "benmvp build",
"integrate": "benmvp integrate"
},
"devDependencies": {
"@benmvp/cli": "^7.0.0"
},
"engines": {
"node": ">= 8"
},
"publishConfig": {
"access": "public"
}
}