-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.51 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.51 KB
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
53
54
55
56
57
58
59
{
"name": "urlite",
"version": "3.1.0",
"description": "A very small, fast, dependency free url parser and formatter for nodejs and the web",
"main": "index.js",
"types": "types.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {},
"devDependencies": {
"benchmark": "^2.1.4",
"expect.js": "^0.3.1",
"fast-url-parser": "^1.1.3",
"karma": "^6.3.19",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-sauce-launcher": "^2.0.2",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^4.0.2",
"min-url": "^1.4.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"standard": "^11.0.1",
"url": "^0.11.0",
"url-parse": "^1.5.10",
"url-parse-as-address": "^1.0.0",
"urlparser": "^0.3.9",
"webpack": "^4.44.1"
},
"scripts": {
"test": "mocha",
"test-browser": "karma start --single-run",
"coverage": "nyc --reporter=lcov --reporter=text-summary mocha",
"test-ci": "karma start karma.conf.ci.js --single-run",
"lint": "standard"
},
"author": "Alan Clarke <alan@qubit.com> (qubit.com)",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/QubitProducts/urlite.git"
},
"keywords": [
"url",
"uri",
"url-parse",
"url-parser",
"uri-parse",
"uri-parser",
"querystring",
"qs"
],
"bugs": {
"url": "https://github.com/QubitProducts/urlite/issues"
},
"homepage": "https://github.com/QubitProducts/urlite#readme"
}