forked from DamonOehlman/detect-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1 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
{
"name": "detect-browser",
"version": "1.1.1",
"description": "Unpack a browser type and version from the useragent string",
"main": "index.js",
"browser": "browser.js",
"scripts": {
"test": "node test/all.js",
"gendocs": "gendocs > README.md"
},
"stability": "stable",
"repository": {
"type": "git",
"url": "https://github.com/DamonOehlman/detect-browser.git"
},
"keywords": [
"browser",
"detect",
"useragent"
],
"author": "Damon Oehlman <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DamonOehlman/detect-browser/issues"
},
"homepage": "https://github.com/DamonOehlman/detect-browser",
"devDependencies": {
"semver": "^2.3.1",
"tape": "^2.13.3"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
}
}