forked from medialize/URI.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (69 loc) · 1.66 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
{
"name": "URIjs",
"version": "1.10.2",
"title": "URI.js - Mutating URLs",
"author": {
"name": "Rodney Rehm",
"url": "http://rodneyrehm.de"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license"
},
{
"type": "GPL",
"url": "http://opensource.org/licenses/GPL-3.0"
}
],
"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"
],
"categories": [
"Parsers & Compilers",
"Utilities"
],
"main": "./src/URI",
"homepage": "http://medialize.github.com/URI.js/",
"contributors": [
"Francois-Guillaume Ribreau <[email protected]> (http://fgribreau.com)"
],
"files": [
"src/URI.js",
"src/IPv6.js",
"src/SecondLevelDomains.js",
"src/punycode.js",
"src/URITemplate.js",
"src/jquery.URI.js"
],
"jam": {
"main": "src/URI.js",
"dependencies": {
"jquery": ">=1.7.0"
},
"include": [
"src/URI.js",
"src/IPv6.js",
"src/SecondLevelDomains.js",
"src/punycode.js",
"src/URITemplate.js",
"src/jquery.URI.js"
]
}
}