forked from medialize/URI.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.62 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "urijs",
"version": "1.18.10",
"title": "URI.js - Mutating URLs",
"author": {
"name": "Rodney Rehm",
"url": "http://rodneyrehm.de"
},
"repository": {
"type": "git",
"url": "https://github.com/medialize/URI.js.git"
},
"license": "MIT",
"description": "URI.js is a Javascript library for working with URLs.",
"keywords": [
"uri",
"url",
"urn",
"uri mutation",
"url mutation",
"uri manipulation",
"url manipulation",
"uri template",
"url template",
"unified resource locator",
"unified resource identifier",
"query string",
"RFC 3986",
"RFC3986",
"RFC 6570",
"RFC6570",
"jquery-plugin",
"ecosystem:jquery"
],
"categories": [
"Parsers & Compilers",
"Utilities"
],
"main": "./src/URI",
"homepage": "http://medialize.github.io/URI.js/",
"contributors": [
"Francois-Guillaume Ribreau <[email protected]> (http://fgribreau.com)",
"Justin Chase <[email protected]> (http://justinmchase.com)"
],
"files": [
"src/URI.js",
"src/IPv6.js",
"src/SecondLevelDomains.js",
"src/punycode.js",
"src/URITemplate.js",
"src/jquery.URI.js",
"src/URI.min.js",
"src/jquery.URI.min.js",
"src/URI.fragmentQuery.js",
"src/URI.fragmentURI.js",
"LICENSE.txt"
],
"npmName": "urijs",
"npmFileMap": [
{
"basePath": "/src/",
"files": [
"*.js"
]
},
{
"basePath": "/",
"files": [
"LICENSE.txt"
]
}
],
"devDependencies": {
"jshint-stylish": "~0.1.5",
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.8.0"
}
}