-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 919 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 919 Bytes
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
{
"name": "x-default-browser",
"version": "0.5.2",
"description": "Detect default web browser of the current user, cross-platform (Win/Lin/Mac)",
"author": "jakub-g <jakub.g.opensource@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/jakub-g/x-default-browser",
"repository": {
"type": "git",
"url": "https://github.com/jakub-g/x-default-browser.git"
},
"bugs": {
"url": "https://github.com/jakub-g/x-default-browser/issues"
},
"bin": "bin/x-default-browser.js",
"main": "index.js",
"scripts": {
"lint": "jshint index.js lib bin",
"mocha": "mocha",
"test": "npm run lint && npm run mocha"
},
"keywords": [
"windows",
"ubuntu",
"linux",
"default",
"browser"
],
"optionalDependencies": {
"default-browser-id": "^2.0.0"
},
"devDependencies": {
"jshint": "^2.13.5",
"mocha": "^10.0.0",
"rewire": "^6.0.0"
}
}