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:
authorisaacs <i@izs.me>2020-07-24 22:55:18 +0300
committerisaacs <i@izs.me>2020-07-29 21:55:03 +0300
commit53ed7e5205a3f4d5d33828ff9dc11c093f482f7b (patch)
treed76317be79432c9527e8fb37d4c13e0719cdbaf9 /node_modules/columnify
parentbbe4279120c94791b70d97f235c73d972fd67354 (diff)
reset deps using npm v7
First self-install!
Diffstat (limited to 'node_modules/columnify')
-rw-r--r--node_modules/columnify/package.json73
1 files changed, 23 insertions, 50 deletions
diff --git a/node_modules/columnify/package.json b/node_modules/columnify/package.json
index 97496f19a..4bff7f526 100644
--- a/node_modules/columnify/package.json
+++ b/node_modules/columnify/package.json
@@ -1,45 +1,21 @@
{
- "_from": "columnify@~1.5.4",
- "_id": "columnify@1.5.4",
- "_inBundle": false,
- "_integrity": "sha1-Rzfd8ce2mop8NAVweC6UfuyOeLs=",
- "_location": "/columnify",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "columnify@~1.5.4",
- "name": "columnify",
- "escapedName": "columnify",
- "rawSpec": "~1.5.4",
- "saveSpec": null,
- "fetchSpec": "~1.5.4"
- },
- "_requiredBy": [
- "/"
- ],
- "_resolved": "https://registry.npmjs.org/columnify/-/columnify-1.5.4.tgz",
- "_shasum": "4737ddf1c7b69a8a7c340570782e947eec8e78bb",
- "_spec": "columnify@~1.5.4",
- "_where": "/Users/isaacs/dev/npm/cli",
- "author": {
- "name": "Tim Oxley"
+ "name": "columnify",
+ "version": "1.5.4",
+ "description": "Render data in text columns. Supports in-column text-wrap.",
+ "main": "columnify.js",
+ "scripts": {
+ "pretest": "npm prune",
+ "test": "make prepublish && tape test/*.js | tap-spec",
+ "bench": "npm test && node bench",
+ "prepublish": "make prepublish"
},
"babel": {
"presets": [
"es2015"
]
},
- "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.",
+ "author": "Tim Oxley",
+ "license": "MIT",
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.3.17",
@@ -48,10 +24,10 @@
"tap-spec": "^4.1.1",
"tape": "^4.4.0"
},
- "directories": {
- "test": "test"
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/timoxley/columnify.git"
},
- "homepage": "https://github.com/timoxley/columnify",
"keywords": [
"column",
"text",
@@ -61,18 +37,15 @@
"wrap",
"table"
],
- "license": "MIT",
- "main": "columnify.js",
- "name": "columnify",
- "repository": {
- "type": "git",
- "url": "git://github.com/timoxley/columnify.git"
+ "bugs": {
+ "url": "https://github.com/timoxley/columnify/issues"
},
- "scripts": {
- "bench": "npm test && node bench",
- "prepublish": "make prepublish",
- "pretest": "npm prune",
- "test": "make prepublish && tape test/*.js | tap-spec"
+ "homepage": "https://github.com/timoxley/columnify",
+ "dependencies": {
+ "strip-ansi": "^3.0.0",
+ "wcwidth": "^1.0.0"
},
- "version": "1.5.4"
+ "directories": {
+ "test": "test"
+ }
}