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:
authorKat Marchán <kzm@sykosomatic.org>2017-04-29 01:11:18 +0300
committerRebecca Turner <me@re-becca.org>2017-05-26 02:13:33 +0300
commitc8b66854adef8d91c4ad2b058db6f1ca48031b58 (patch)
tree5e34a1bc728c551d5fa1cbf6bd50d53a04c634f3 /node_modules/columnify
parentcbaf1c914036bc8ac1f9ea965ccba4fd690c8c45 (diff)
pacote@2.7.4
Diffstat (limited to 'node_modules/columnify')
-rw-r--r--node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/package.json77
-rw-r--r--node_modules/columnify/node_modules/wcwidth/node_modules/defaults/package.json82
-rw-r--r--node_modules/columnify/node_modules/wcwidth/package.json77
-rw-r--r--node_modules/columnify/package.json57
4 files changed, 158 insertions, 135 deletions
diff --git a/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/package.json b/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/package.json
index d401747f6..02b4e4901 100644
--- a/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/package.json
+++ b/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/package.json
@@ -1,27 +1,37 @@
{
- "name": "clone",
- "description": "deep cloning of objects and arrays",
- "tags": [
- "clone",
- "object",
- "array",
- "function",
- "date"
- ],
- "version": "1.0.2",
- "repository": {
- "type": "git",
- "url": "git://github.com/pvorb/node-clone.git"
- },
- "bugs": {
- "url": "https://github.com/pvorb/node-clone/issues"
+ "_from": "clone@^1.0.2",
+ "_id": "clone@1.0.2",
+ "_integrity": "sha1-Jgt6meux7f4kdTgXX3gyQ8sZ0Uk=",
+ "_location": "/columnify/wcwidth/defaults/clone",
+ "_phantomChildren": {},
+ "_requested": {
+ "type": "range",
+ "registry": true,
+ "raw": "clone@^1.0.2",
+ "name": "clone",
+ "escapedName": "clone",
+ "rawSpec": "^1.0.2",
+ "saveSpec": null,
+ "fetchSpec": "^1.0.2"
},
- "main": "clone.js",
+ "_requiredBy": [
+ "/columnify/wcwidth/defaults"
+ ],
+ "_resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz",
+ "_shasum": "260b7a99ebb1edfe247538175f783243cb19d149",
+ "_shrinkwrap": null,
+ "_spec": "clone@^1.0.2",
+ "_where": "/Users/zkat/Documents/code/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults",
"author": {
"name": "Paul Vorbach",
"email": "paul@vorba.ch",
"url": "http://paul.vorba.ch/"
},
+ "bin": null,
+ "bugs": {
+ "url": "https://github.com/pvorb/node-clone/issues"
+ },
+ "bundleDependencies": false,
"contributors": [
{
"name": "Blake Miner",
@@ -96,23 +106,34 @@
"url": "http://www.guyellisrocks.com/"
}
],
- "license": "MIT",
- "engines": {
- "node": ">=0.8"
- },
"dependencies": {},
+ "deprecated": false,
+ "description": "deep cloning of objects and arrays",
"devDependencies": {
"nodeunit": "~0.9.0"
},
+ "engines": {
+ "node": ">=0.8"
+ },
+ "homepage": "https://github.com/pvorb/node-clone#readme",
+ "license": "MIT",
+ "main": "clone.js",
+ "name": "clone",
"optionalDependencies": {},
+ "peerDependencies": {},
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/pvorb/node-clone.git"
+ },
"scripts": {
"test": "nodeunit test.js"
},
- "readme": "# clone\n\n[![build status](https://secure.travis-ci.org/pvorb/node-clone.png)](http://travis-ci.org/pvorb/node-clone)\n\n[![info badge](https://nodei.co/npm/clone.png?downloads=true&downloadRank=true&stars=true)](http://npm-stat.com/charts.html?package=clone)\n\noffers foolproof _deep cloning_ of objects, arrays, numbers, strings etc. in JavaScript.\n\n\n## Installation\n\n npm install clone\n\n(It also works with browserify, ender or standalone.)\n\n\n## Example\n\n~~~ javascript\nvar clone = require('clone');\n\nvar a, b;\n\na = { foo: { bar: 'baz' } }; // initial value of a\n\nb = clone(a); // clone a -> b\na.foo.bar = 'foo'; // change a\n\nconsole.log(a); // show a\nconsole.log(b); // show b\n~~~\n\nThis will print:\n\n~~~ javascript\n{ foo: { bar: 'foo' } }\n{ foo: { bar: 'baz' } }\n~~~\n\n**clone** masters cloning simple objects (even with custom prototype), arrays,\nDate objects, and RegExp objects. Everything is cloned recursively, so that you\ncan clone dates in arrays in objects, for example.\n\n\n## API\n\n`clone(val, circular, depth)`\n\n * `val` -- the value that you want to clone, any type allowed\n * `circular` -- boolean\n\n Call `clone` with `circular` set to `false` if you are certain that `obj`\n contains no circular references. This will give better performance if needed.\n There is no error if `undefined` or `null` is passed as `obj`.\n * `depth` -- depth to which the object is to be cloned (optional,\n defaults to infinity)\n\n`clone.clonePrototype(obj)`\n\n * `obj` -- the object that you want to clone\n\nDoes a prototype clone as\n[described by Oran Looney](http://oranlooney.com/functional-javascript/).\n\n\n## Circular References\n\n~~~ javascript\nvar a, b;\n\na = { hello: 'world' };\n\na.myself = a;\nb = clone(a);\n\nconsole.log(b);\n~~~\n\nThis will print:\n\n~~~ javascript\n{ hello: \"world\", myself: [Circular] }\n~~~\n\nSo, `b.myself` points to `b`, not `a`. Neat!\n\n\n## Test\n\n npm test\n\n\n## Caveat\n\nSome special objects like a socket or `process.stdout`/`stderr` are known to not\nbe cloneable. If you find other objects that cannot be cloned, please [open an\nissue](https://github.com/pvorb/node-clone/issues/new).\n\n\n## Bugs and Issues\n\nIf you encounter any bugs or issues, feel free to [open an issue at\ngithub](https://github.com/pvorb/node-clone/issues) or send me an email to\n<paul@vorba.ch>. I also always like to hear from you, if you’re using my code.\n\n## License\n\nCopyright © 2011-2015 [Paul Vorbach](http://paul.vorba.ch/) and\n[contributors](https://github.com/pvorb/node-clone/graphs/contributors).\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the “Software”), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n",
- "readmeFilename": "README.md",
- "homepage": "https://github.com/pvorb/node-clone#readme",
- "_id": "clone@1.0.2",
- "_shasum": "260b7a99ebb1edfe247538175f783243cb19d149",
- "_resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz",
- "_from": "clone@>=1.0.2 <2.0.0"
+ "tags": [
+ "clone",
+ "object",
+ "array",
+ "function",
+ "date"
+ ],
+ "version": "1.0.2"
}
diff --git a/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/package.json b/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/package.json
index ef5197861..1a3961c50 100644
--- a/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/package.json
+++ b/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/package.json
@@ -1,54 +1,60 @@
{
- "name": "defaults",
- "version": "1.0.3",
- "description": "merge single level defaults over a config object",
- "main": "index.js",
- "scripts": {
- "test": "node test.js"
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/tmpvar/defaults.git"
- },
- "keywords": [
- "config",
- "defaults"
+ "_from": "defaults@^1.0.3",
+ "_id": "defaults@1.0.3",
+ "_integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=",
+ "_location": "/columnify/wcwidth/defaults",
+ "_phantomChildren": {},
+ "_requested": {
+ "type": "range",
+ "registry": true,
+ "raw": "defaults@^1.0.3",
+ "name": "defaults",
+ "escapedName": "defaults",
+ "rawSpec": "^1.0.3",
+ "saveSpec": null,
+ "fetchSpec": "^1.0.3"
+ },
+ "_requiredBy": [
+ "/columnify/wcwidth"
],
+ "_resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz",
+ "_shasum": "c656051e9817d9ff08ed881477f3fe4019f3ef7d",
+ "_shrinkwrap": null,
+ "_spec": "defaults@^1.0.3",
+ "_where": "/Users/zkat/Documents/code/npm/node_modules/columnify/node_modules/wcwidth",
"author": {
"name": "Elijah Insua",
"email": "tmpvar@gmail.com"
},
- "license": "MIT",
+ "bin": null,
+ "bugs": {
+ "url": "https://github.com/tmpvar/defaults/issues"
+ },
+ "bundleDependencies": false,
"dependencies": {
"clone": "^1.0.2"
},
+ "deprecated": false,
+ "description": "merge single level defaults over a config object",
"devDependencies": {
"tap": "^2.0.0"
},
- "gitHead": "8831ec32a5f999bfae1a8c9bf32880971ed7c6f2",
- "bugs": {
- "url": "https://github.com/tmpvar/defaults/issues"
- },
"homepage": "https://github.com/tmpvar/defaults#readme",
- "_id": "defaults@1.0.3",
- "_shasum": "c656051e9817d9ff08ed881477f3fe4019f3ef7d",
- "_from": "defaults@>=1.0.0 <2.0.0",
- "_npmVersion": "2.14.4",
- "_nodeVersion": "4.1.1",
- "_npmUser": {
- "name": "tmpvar",
- "email": "tmpvar@gmail.com"
+ "keywords": [
+ "config",
+ "defaults"
+ ],
+ "license": "MIT",
+ "main": "index.js",
+ "name": "defaults",
+ "optionalDependencies": {},
+ "peerDependencies": {},
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/tmpvar/defaults.git"
},
- "dist": {
- "shasum": "c656051e9817d9ff08ed881477f3fe4019f3ef7d",
- "tarball": "http://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz"
+ "scripts": {
+ "test": "node test.js"
},
- "maintainers": [
- {
- "name": "tmpvar",
- "email": "tmpvar@gmail.com"
- }
- ],
- "directories": {},
- "_resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz"
+ "version": "1.0.3"
}
diff --git a/node_modules/columnify/node_modules/wcwidth/package.json b/node_modules/columnify/node_modules/wcwidth/package.json
index 49fc6f040..dd1a8b901 100644
--- a/node_modules/columnify/node_modules/wcwidth/package.json
+++ b/node_modules/columnify/node_modules/wcwidth/package.json
@@ -1,10 +1,35 @@
{
- "name": "wcwidth",
- "version": "1.0.0",
- "description": "Port of C's wcwidth() and wcswidth()",
+ "_from": "wcwidth@^1.0.0",
+ "_id": "wcwidth@1.0.1",
+ "_integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=",
+ "_location": "/columnify/wcwidth",
+ "_phantomChildren": {},
+ "_requested": {
+ "type": "range",
+ "registry": true,
+ "raw": "wcwidth@^1.0.0",
+ "name": "wcwidth",
+ "escapedName": "wcwidth",
+ "rawSpec": "^1.0.0",
+ "saveSpec": null,
+ "fetchSpec": "^1.0.0"
+ },
+ "_requiredBy": [
+ "/columnify"
+ ],
+ "_resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
+ "_shasum": "f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8",
+ "_shrinkwrap": null,
+ "_spec": "wcwidth@^1.0.0",
+ "_where": "/Users/zkat/Documents/code/npm/node_modules/columnify",
"author": {
"name": "Tim Oxley"
},
+ "bin": null,
+ "bugs": {
+ "url": "https://github.com/timoxley/wcwidth/issues"
+ },
+ "bundleDependencies": false,
"contributors": [
{
"name": "Woong Jun",
@@ -12,14 +37,19 @@
"url": "http://code.woong.org/"
}
],
- "main": "index.js",
"dependencies": {
- "defaults": "^1.0.0"
+ "defaults": "^1.0.3"
},
+ "deprecated": false,
+ "description": "Port of C's wcwidth() and wcswidth()",
"devDependencies": {
- "tape": "^2.13.4"
+ "tape": "^4.5.1"
},
- "license": "MIT",
+ "directories": {
+ "doc": "docs",
+ "test": "test"
+ },
+ "homepage": "https://github.com/timoxley/wcwidth#readme",
"keywords": [
"wide character",
"wc",
@@ -30,32 +60,17 @@
"wcwidth",
"wcswidth"
],
- "directories": {
- "doc": "docs",
- "test": "test"
+ "license": "MIT",
+ "main": "index.js",
+ "name": "wcwidth",
+ "optionalDependencies": {},
+ "peerDependencies": {},
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/timoxley/wcwidth.git"
},
"scripts": {
"test": "tape test/*.js"
},
- "gitHead": "5bc3aafd45c89f233c27b9479c18a23ca91ba660",
- "_id": "wcwidth@1.0.0",
- "_shasum": "02d059ff7a8fc741e0f6b5da1e69b2b40daeca6f",
- "_from": "wcwidth@>=1.0.0 <2.0.0",
- "_npmVersion": "1.4.23",
- "_npmUser": {
- "name": "timoxley",
- "email": "secoif@gmail.com"
- },
- "maintainers": [
- {
- "name": "timoxley",
- "email": "secoif@gmail.com"
- }
- ],
- "dist": {
- "shasum": "02d059ff7a8fc741e0f6b5da1e69b2b40daeca6f",
- "tarball": "http://registry.npmjs.org/wcwidth/-/wcwidth-1.0.0.tgz"
- },
- "_resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.0.tgz",
- "readme": "ERROR: No README data found!"
+ "version": "1.0.1"
}
diff --git a/node_modules/columnify/package.json b/node_modules/columnify/package.json
index a661b6e35..4e60c8c1c 100644
--- a/node_modules/columnify/package.json
+++ b/node_modules/columnify/package.json
@@ -1,29 +1,18 @@
{
- "_args": [
- [
- "columnify@1.5.4",
- "/Users/rebecca/code/npm"
- ]
- ],
- "_from": "columnify@1.5.4",
+ "_from": "columnify@~1.5.4",
"_id": "columnify@1.5.4",
- "_inCache": true,
- "_installable": true,
+ "_integrity": "sha1-Rzfd8ce2mop8NAVweC6UfuyOeLs=",
"_location": "/columnify",
- "_nodeVersion": "4.2.3",
- "_npmUser": {
- "email": "secoif@gmail.com",
- "name": "timoxley"
- },
- "_npmVersion": "2.14.7",
"_phantomChildren": {},
"_requested": {
+ "type": "range",
+ "registry": true,
+ "raw": "columnify@~1.5.4",
"name": "columnify",
- "raw": "columnify@1.5.4",
- "rawSpec": "1.5.4",
- "scope": null,
- "spec": "1.5.4",
- "type": "version"
+ "escapedName": "columnify",
+ "rawSpec": "~1.5.4",
+ "saveSpec": null,
+ "fetchSpec": "~1.5.4"
},
"_requiredBy": [
"/"
@@ -31,8 +20,8 @@
"_resolved": "https://registry.npmjs.org/columnify/-/columnify-1.5.4.tgz",
"_shasum": "4737ddf1c7b69a8a7c340570782e947eec8e78bb",
"_shrinkwrap": null,
- "_spec": "columnify@1.5.4",
- "_where": "/Users/rebecca/code/npm",
+ "_spec": "columnify@~1.5.4",
+ "_where": "/Users/zkat/Documents/code/npm",
"author": {
"name": "Tim Oxley"
},
@@ -41,13 +30,16 @@
"es2015"
]
},
+ "bin": null,
"bugs": {
"url": "https://github.com/timoxley/columnify/issues"
},
+ "bundleDependencies": false,
"dependencies": {
"strip-ansi": "^3.0.0",
"wcwidth": "^1.0.0"
},
+ "deprecated": false,
"description": "Render data in text columns. Supports in-column text-wrap.",
"devDependencies": {
"babel": "^6.3.26",
@@ -60,32 +52,21 @@
"directories": {
"test": "test"
},
- "dist": {
- "shasum": "4737ddf1c7b69a8a7c340570782e947eec8e78bb",
- "tarball": "http://registry.npmjs.org/columnify/-/columnify-1.5.4.tgz"
- },
- "gitHead": "b5373b3d6344bf59e1ab63c912c188c34bce5889",
"homepage": "https://github.com/timoxley/columnify",
"keywords": [
- "ansi",
"column",
+ "text",
+ "ansi",
"console",
- "table",
"terminal",
- "text",
- "wrap"
+ "wrap",
+ "table"
],
"license": "MIT",
"main": "columnify.js",
- "maintainers": [
- {
- "name": "timoxley",
- "email": "secoif@gmail.com"
- }
- ],
"name": "columnify",
"optionalDependencies": {},
- "readme": "ERROR: No README data found!",
+ "peerDependencies": {},
"repository": {
"type": "git",
"url": "git://github.com/timoxley/columnify.git"