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:
authorForrest L Norvell <forrest@npmjs.com>2015-10-15 08:17:03 +0300
committerRebecca Turner <me@re-becca.org>2015-10-16 01:25:33 +0300
commit25a234b4595ee3f1a2c09e2a39e3c238aa642557 (patch)
treedef772e3c15c7bd3d0b05eeeb6069898617cbf23 /node_modules/strip-ansi
parent4cd74b0cdc639081fcf292eb9a03dbd93451c7c0 (diff)
src: install npm@3 with npm@2
Restore the ability to do one-shot upgrades from the versions of npm bundled with Node 0.8 to npm@3, which simplifies using Travis with old Node and new npm, for compatibility testing purposes. Older versions of npm repack packages on install, which works poorly with the way npm@3 handles bundledDependencies with flat trees. Fixes: #9668 PR-URL: https://github.com/npm/npm/pull/9981
Diffstat (limited to 'node_modules/strip-ansi')
-rw-r--r--node_modules/strip-ansi/package.json135
1 files changed, 50 insertions, 85 deletions
diff --git a/node_modules/strip-ansi/package.json b/node_modules/strip-ansi/package.json
index 765c6921f..d62f0eaf0 100644
--- a/node_modules/strip-ansi/package.json
+++ b/node_modules/strip-ansi/package.json
@@ -1,111 +1,76 @@
{
- "_args": [
- [
- "strip-ansi@^3.0.0",
- "/Users/rebecca/code/npm/node_modules/chalk"
- ]
- ],
- "_from": "strip-ansi@>=3.0.0 <4.0.0",
- "_id": "strip-ansi@3.0.0",
- "_inCache": true,
- "_location": "/strip-ansi",
- "_nodeVersion": "0.12.5",
- "_npmUser": {
- "email": "sindresorhus@gmail.com",
- "name": "sindresorhus"
- },
- "_npmVersion": "2.11.2",
- "_phantomChildren": {},
- "_requested": {
- "name": "strip-ansi",
- "raw": "strip-ansi@^3.0.0",
- "rawSpec": "^3.0.0",
- "scope": null,
- "spec": ">=3.0.0 <4.0.0",
- "type": "range"
+ "name": "strip-ansi",
+ "version": "3.0.0",
+ "description": "Strip ANSI escape codes",
+ "license": "MIT",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/sindresorhus/strip-ansi.git"
},
- "_requiredBy": [
- "/chalk",
- "/columnify"
- ],
- "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.0.tgz",
- "_shasum": "7510b665567ca914ccb5d7e072763ac968be3724",
- "_shrinkwrap": null,
- "_spec": "strip-ansi@^3.0.0",
- "_where": "/Users/rebecca/code/npm/node_modules/chalk",
"author": {
- "email": "sindresorhus@gmail.com",
"name": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
- "bugs": {
- "url": "https://github.com/sindresorhus/strip-ansi/issues"
- },
- "dependencies": {
- "ansi-regex": "^2.0.0"
- },
- "description": "Strip ANSI escape codes",
- "devDependencies": {
- "ava": "0.0.4"
- },
- "directories": {},
- "dist": {
- "shasum": "7510b665567ca914ccb5d7e072763ac968be3724",
- "tarball": "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.0.tgz"
- },
+ "maintainers": [
+ {
+ "name": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "sindresorhus.com"
+ },
+ {
+ "name": "Joshua Appelman",
+ "email": "jappelman@xebia.com",
+ "url": "jbnicolai.com"
+ }
+ ],
"engines": {
"node": ">=0.10.0"
},
+ "scripts": {
+ "test": "node test.js"
+ },
"files": [
"index.js"
],
- "gitHead": "3f05b9810e1438f946e2eb84ee854cc00b972e9e",
- "homepage": "https://github.com/sindresorhus/strip-ansi",
"keywords": [
- "256",
+ "strip",
+ "trim",
+ "remove",
"ansi",
+ "styles",
"color",
- "colors",
"colour",
- "command-line",
+ "colors",
+ "terminal",
"console",
+ "string",
+ "tty",
"escape",
"formatting",
- "log",
- "logging",
- "remove",
"rgb",
+ "256",
"shell",
- "string",
- "strip",
- "styles",
- "terminal",
- "text",
- "trim",
- "tty",
- "xterm"
- ],
- "license": "MIT",
- "maintainers": [
- {
- "name": "sindresorhus",
- "email": "sindresorhus@gmail.com"
- },
- {
- "name": "jbnicolai",
- "email": "jappelman@xebia.com"
- }
+ "xterm",
+ "log",
+ "logging",
+ "command-line",
+ "text"
],
- "name": "strip-ansi",
- "optionalDependencies": {},
+ "dependencies": {
+ "ansi-regex": "^2.0.0"
+ },
+ "devDependencies": {
+ "ava": "0.0.4"
+ },
"readme": "# strip-ansi [![Build Status](https://travis-ci.org/sindresorhus/strip-ansi.svg?branch=master)](https://travis-ci.org/sindresorhus/strip-ansi)\n\n> Strip [ANSI escape codes](http://en.wikipedia.org/wiki/ANSI_escape_code)\n\n\n## Install\n\n```\n$ npm install --save strip-ansi\n```\n\n\n## Usage\n\n```js\nvar stripAnsi = require('strip-ansi');\n\nstripAnsi('\\u001b[4mcake\\u001b[0m');\n//=> 'cake'\n```\n\n\n## Related\n\n- [strip-ansi-cli](https://github.com/sindresorhus/strip-ansi-cli) - CLI for this module\n- [has-ansi](https://github.com/sindresorhus/has-ansi) - Check if a string has ANSI escape codes\n- [ansi-regex](https://github.com/sindresorhus/ansi-regex) - Regular expression for matching ANSI escape codes\n- [chalk](https://github.com/sindresorhus/chalk) - Terminal string styling done right\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
"readmeFilename": "readme.md",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/sindresorhus/strip-ansi.git"
- },
- "scripts": {
- "test": "node test.js"
+ "bugs": {
+ "url": "https://github.com/sindresorhus/strip-ansi/issues"
},
- "version": "3.0.0"
+ "homepage": "https://github.com/sindresorhus/strip-ansi#readme",
+ "_id": "strip-ansi@3.0.0",
+ "_shasum": "7510b665567ca914ccb5d7e072763ac968be3724",
+ "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.0.tgz",
+ "_from": "strip-ansi@3.0.0"
}