-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.26 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
{
"name": "hostmeta",
"description": "Easily retrieve and parse a host's .well-known/host-meta file",
"version": "2.0.2",
"browser": {
"request": "xhr"
},
"bugs": "https://github.com/otalk/hostmeta.js/issues",
"contributors": [
"Lance Stout <lance@andyet.net>"
],
"dependencies": {
"async": "^2.5.0",
"jxt": "^3.0.1",
"request": "^2.53.0",
"xhr": "^2.0.1"
},
"devDependencies": {
"browserify": "^5.11.0",
"jshint": "^2.6.3",
"make-better": "^0.4.1",
"nsp": "^0.2.3",
"precommit-hook": "^1.0.7",
"tap-spec": "^0.2.1",
"tape": "^2.14.0",
"uglify-js": "^2.4.15"
},
"keywords": [
"well-known",
"host-meta",
"xrd"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/otalk/hostmeta.js.git"
},
"scripts": {
"test": "make test",
"build": "make build",
"audit": "make audit"
},
"testling": {
"files": [
"test/test.js"
],
"browsers": [
"ie/10..latest",
"chrome/20..latest",
"chrome/canary",
"firefox/10..latest",
"firefox/nightly",
"opera/next",
"safari/6..latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/4.2..latest"
]
}
}