-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
59 lines (59 loc) · 1.24 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
{
"name": "win-detect-browsers",
"version": "7.0.0",
"description": "Fast and native browser detection on Windows",
"author": "Vincent Weevers",
"license": "MIT",
"main": "index.js",
"bin": "cli.js",
"files": [
"lib",
"index.js",
"cli.js",
"CHANGELOG.md"
],
"scripts": {
"test": "standard && hallmark && node test.js",
"hallmark": "hallmark --fix"
},
"dependencies": {
"after": "^0.8.2",
"catering": "^2.1.0",
"debug": "^4.1.0",
"existent": "^1.0.1",
"pe-machine-type": "^1.0.0",
"registry-js": "^1.9.0",
"which": "^2.0.1",
"win-version-info": "^5.0.1",
"windows-env": "^1.0.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"hallmark": "^4.0.0",
"standard": "^17.0.0",
"tape": "^5.0.0",
"win-dummy-exe": "0.0.1"
},
"repository": "vweevers/win-detect-browsers",
"bugs": "https://github.com/vweevers/win-detect-browsers/issues",
"homepage": "https://github.com/vweevers/win-detect-browsers",
"keywords": [
"browser",
"browsers",
"detect",
"windows",
"chrome",
"chromium",
"canary",
"firefox",
"ie",
"internet-explorer",
"safari",
"opera",
"maxthon",
"yandex"
],
"engines": {
"node": ">=10"
}
}