Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRebecca Turner <me@re-becca.org>2016-10-07 02:20:21 +0300
committerRebecca Turner <me@re-becca.org>2016-10-07 05:34:20 +0300
commitb3f3db52e864d607b6d9b18920e2f58acc4b1616 (patch)
tree1e70b95472c888d837e448a420f27d5bb7f51735 /node_modules/opener
parentdea48487a9d03492edc68670d05776d32d9ee8cf (diff)
opener@1.4.2
License update. Credit: @dominic
Diffstat (limited to 'node_modules/opener')
-rw-r--r--node_modules/opener/LICENSE.txt30
-rw-r--r--node_modules/opener/README.md57
-rw-r--r--node_modules/opener/package.json106
3 files changed, 102 insertions, 91 deletions
diff --git a/node_modules/opener/LICENSE.txt b/node_modules/opener/LICENSE.txt
index f580e3d3a..0253e52cf 100644
--- a/node_modules/opener/LICENSE.txt
+++ b/node_modules/opener/LICENSE.txt
@@ -1,4 +1,8 @@
-Copyright © 2012–2015 Domenic Denicola <d@domenic.me>
+Dual licensed under WTFPL and MIT:
+
+---
+
+Copyright © 2012–2016 Domenic Denicola <d@domenic.me>
This work is free. You can redistribute it and/or modify it under the
terms of the Do What The Fuck You Want To Public License, Version 2,
@@ -17,3 +21,27 @@ as published by Sam Hocevar. See below for more details.
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
+
+---
+
+The MIT License (MIT)
+
+Copyright © 2012–2016 Domenic Denicola <d@domenic.me>
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/node_modules/opener/README.md b/node_modules/opener/README.md
deleted file mode 100644
index 8a803f338..000000000
--- a/node_modules/opener/README.md
+++ /dev/null
@@ -1,57 +0,0 @@
-# It Opens Stuff
-
-That is, in your desktop environment. This will make *actual windows pop up*, with stuff in them:
-
-```bash
-npm install opener -g
-
-opener http://google.com
-opener ./my-file.txt
-opener firefox
-opener npm run lint
-```
-
-Also if you want to use it programmatically you can do that too:
-
-```js
-var opener = require("opener");
-
-opener("http://google.com");
-opener("./my-file.txt");
-opener("firefox");
-opener("npm run lint");
-```
-
-Plus, it returns the child process created, so you can do things like let your script exit while the window stays open:
-
-```js
-var editor = opener("documentation.odt");
-editor.unref();
-// These other unrefs may be necessary if your OS's opener process
-// exits before the process it started is complete.
-editor.stdin.unref();
-editor.stdout.unref();
-editor.stderr.unref();
-```
-
-
-## Use It for Good
-
-Like opening the user's browser with a test harness in your package's test script:
-
-```json
-{
- "scripts": {
- "test": "opener ./test/runner.html"
- },
- "devDependencies": {
- "opener": "*"
- }
-}
-```
-
-## Why
-
-Because Windows has `start`, Macs have `open`, and *nix has `xdg-open`. At least
-[according to some guy on StackOverflow](http://stackoverflow.com/q/1480971/3191). And I like things that work on all
-three. Like Node.js. And Opener.
diff --git a/node_modules/opener/package.json b/node_modules/opener/package.json
index 7364b919f..eb454487e 100644
--- a/node_modules/opener/package.json
+++ b/node_modules/opener/package.json
@@ -1,55 +1,95 @@
{
- "name": "opener",
- "description": "Opens stuff, like webpages and files and executables, cross-platform",
- "version": "1.4.1",
+ "_args": [
+ [
+ {
+ "raw": "opener@1.4.2",
+ "scope": null,
+ "escapedName": "opener",
+ "name": "opener",
+ "rawSpec": "1.4.2",
+ "spec": "1.4.2",
+ "type": "version"
+ },
+ "/Users/rebecca/code/npm"
+ ]
+ ],
+ "_from": "opener@1.4.2",
+ "_id": "opener@1.4.2",
+ "_inCache": true,
+ "_location": "/opener",
+ "_nodeVersion": "6.2.2",
+ "_npmOperationalInternal": {
+ "host": "packages-16-east.internal.npmjs.com",
+ "tmp": "tmp/opener-1.4.2.tgz_1473551216353_0.850118016358465"
+ },
+ "_npmUser": {
+ "name": "domenic",
+ "email": "d@domenic.me"
+ },
+ "_npmVersion": "3.9.5",
+ "_phantomChildren": {},
+ "_requested": {
+ "raw": "opener@1.4.2",
+ "scope": null,
+ "escapedName": "opener",
+ "name": "opener",
+ "rawSpec": "1.4.2",
+ "spec": "1.4.2",
+ "type": "version"
+ },
+ "_requiredBy": [
+ "#USER",
+ "/",
+ "/tap"
+ ],
+ "_resolved": "https://registry.npmjs.org/opener/-/opener-1.4.2.tgz",
+ "_shasum": "b32582080042af8680c389a499175b4c54fff523",
+ "_shrinkwrap": null,
+ "_spec": "opener@1.4.2",
+ "_where": "/Users/rebecca/code/npm",
"author": {
"name": "Domenic Denicola",
"email": "d@domenic.me",
"url": "https://domenic.me/"
},
- "license": "WTFPL",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/domenic/opener.git"
- },
- "main": "opener.js",
"bin": {
"opener": "opener.js"
},
- "files": [
- "opener.js"
- ],
- "scripts": {
- "lint": "jshint opener.js"
+ "bugs": {
+ "url": "https://github.com/domenic/opener/issues"
},
+ "dependencies": {},
+ "description": "Opens stuff, like webpages and files and executables, cross-platform",
"devDependencies": {
"jshint": "^2.6.3"
},
- "gitHead": "d0ee95b19951703462fa593baa16e81fdff7827c",
- "bugs": {
- "url": "https://github.com/domenic/opener/issues"
- },
- "homepage": "https://github.com/domenic/opener",
- "_id": "opener@1.4.1",
- "_shasum": "897590acd1aed3311b703b58bccb4d43f56f2895",
- "_from": "opener@>=1.4.1 <1.5.0",
- "_npmVersion": "2.7.0",
- "_nodeVersion": "1.5.1",
- "_npmUser": {
- "name": "domenic",
- "email": "d@domenic.me"
+ "directories": {},
+ "dist": {
+ "shasum": "b32582080042af8680c389a499175b4c54fff523",
+ "tarball": "https://registry.npmjs.org/opener/-/opener-1.4.2.tgz"
},
+ "files": [
+ "opener.js"
+ ],
+ "gitHead": "ef28bf7c20de6cea3ff0e9bf0294a78c237e716d",
+ "homepage": "https://github.com/domenic/opener#readme",
+ "license": "(WTFPL OR MIT)",
+ "main": "opener.js",
"maintainers": [
{
"name": "domenic",
"email": "domenic@domenicdenicola.com"
}
],
- "dist": {
- "shasum": "897590acd1aed3311b703b58bccb4d43f56f2895",
- "tarball": "http://registry.npmjs.org/opener/-/opener-1.4.1.tgz"
+ "name": "opener",
+ "optionalDependencies": {},
+ "readme": "ERROR: No README data found!",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/domenic/opener.git"
},
- "directories": {},
- "_resolved": "https://registry.npmjs.org/opener/-/opener-1.4.1.tgz",
- "readme": "ERROR: No README data found!"
+ "scripts": {
+ "lint": "jshint opener.js"
+ },
+ "version": "1.4.2"
}