forked from jakub-g/x-default-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 925 Bytes
/
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
{
"name": "x-default-browser",
"version": "0.4.0",
"description": "Detect default web browser of the current user, cross-platform (Win/Lin/Mac)",
"author": "Jakub Gieryluk <[email protected]>",
"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": "^1.0.4"
},
"devDependencies": {
"jshint": "^2.5.10",
"mocha": "^2.0.1",
"rewire": "^2.1.3"
}
}