forked from siddii/angular-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.79 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.79 KB
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
{
"name": "open",
"version": "0.0.4",
"description": "open a file or url in the user's preferred application",
"keywords": [
"start",
"open",
"browser",
"editor",
"default"
],
"homepage": "https://github.com/jjrdn/node-open",
"author": {
"name": "J Jordan",
"email": "jjrdn@styosis.com"
},
"license": "MIT",
"contributors": [
{
"name": "Victor Costan",
"email": "victor@costan.us",
"url": "http://www.costan.us"
}
],
"repository": {
"type": "git",
"url": "https://github.com/pwnall/node-open.git"
},
"bugs": {
"url": "https://github.com/pwnall/node-open/issues"
},
"engines": {
"node": ">= 0.6.0"
},
"dependencies": {},
"devDependencies": {
"mocha": "*"
},
"optionalDependencies": {},
"main": "lib/open.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha"
},
"readme": "# open\n\nOpen a file or url in the user's preferred application.\n\n# Usage\n\n```javascript\nvar open = require(\"open\");\nopen(\"http://www.google.com\");\n```\n\n`open` taks an optional argument specifying the program to be used to open the\nfile or URL.\n\n```javascript\nopen(\"http://www.google.com\", \"firefox\");\n```\n\n# Installation\n\n npm install open\n\n# How it works\n\n- on `win32` uses `start`\n- on `darwin` uses `open`\n- otherwise uses the `xdg-open` script from [freedesktop.org](http://portland.freedesktop.org/xdg-utils-1.0/xdg-open.html)\n\n# Warning\n\nThe same care should be taken when calling open as if you were calling\n[child_process.exec](http://nodejs.org/api/child_process.html#child_process_child_process_exec_command_options_callback)\ndirectly. If it is an executable it will run in a new shell.\n",
"readmeFilename": "README.md",
"_id": "open@0.0.4",
"_from": "open@~0.0.3"
}