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/rimraf
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/rimraf')
-rw-r--r--node_modules/rimraf/package.json97
1 files changed, 25 insertions, 72 deletions
diff --git a/node_modules/rimraf/package.json b/node_modules/rimraf/package.json
index 0f0f454ff..29eb35b6c 100644
--- a/node_modules/rimraf/package.json
+++ b/node_modules/rimraf/package.json
@@ -1,92 +1,45 @@
{
- "_args": [
- [
- "rimraf@2.4.3",
- "/Users/rebecca/code/npm"
- ]
- ],
- "_from": "rimraf@2.4.3",
- "_id": "rimraf@2.4.3",
- "_inCache": true,
- "_location": "/rimraf",
- "_nodeVersion": "2.2.1",
- "_npmUser": {
- "email": "isaacs@npmjs.com",
- "name": "isaacs"
- },
- "_npmVersion": "3.2.2",
- "_phantomChildren": {},
- "_requested": {
- "name": "rimraf",
- "raw": "rimraf@2.4.3",
- "rawSpec": "2.4.3",
- "scope": null,
- "spec": "2.4.3",
- "type": "version"
- },
- "_requiredBy": [
- "/",
- "/fs-vacuum",
- "/fstream",
- "/node-gyp",
- "/npm-registry-client",
- "/nyc",
- "/spawn-wrap"
- ],
- "_resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.3.tgz",
- "_shasum": "e5b51c9437a4c582adb955e9f28cf8d945e272af",
- "_shrinkwrap": null,
- "_spec": "rimraf@2.4.3",
- "_where": "/Users/rebecca/code/npm",
+ "name": "rimraf",
+ "version": "2.4.3",
+ "main": "rimraf.js",
+ "description": "A deep deletion module for node (like `rm -rf`)",
"author": {
- "email": "i@izs.me",
"name": "Isaac Z. Schlueter",
+ "email": "i@izs.me",
"url": "http://blog.izs.me/"
},
+ "license": "ISC",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/isaacs/rimraf.git"
+ },
+ "scripts": {
+ "test": "tap test/*.js"
+ },
"bin": {
"rimraf": "./bin.js"
},
- "bugs": {
- "url": "https://github.com/isaacs/rimraf/issues"
- },
"dependencies": {
"glob": "^5.0.14"
},
- "description": "A deep deletion module for node (like `rm -rf`)",
- "devDependencies": {
- "mkdirp": "^0.5.1",
- "tap": "^1.3.1"
- },
- "directories": {},
- "dist": {
- "shasum": "e5b51c9437a4c582adb955e9f28cf8d945e272af",
- "tarball": "http://registry.npmjs.org/rimraf/-/rimraf-2.4.3.tgz"
- },
"files": [
"LICENSE",
"README.md",
"bin.js",
"rimraf.js"
],
- "gitHead": "ec7050f8ca14c931b847414f18466e601ca7c02e",
- "homepage": "https://github.com/isaacs/rimraf#readme",
- "installable": true,
- "license": "ISC",
- "main": "rimraf.js",
- "maintainers": [
- {
- "name": "isaacs",
- "email": "i@izs.me"
- }
- ],
- "name": "rimraf",
- "optionalDependencies": {},
- "repository": {
- "type": "git",
- "url": "git://github.com/isaacs/rimraf.git"
+ "devDependencies": {
+ "mkdirp": "^0.5.1",
+ "tap": "^1.3.1"
},
- "scripts": {
- "test": "tap test/*.js"
+ "readme": "[![Build Status](https://travis-ci.org/isaacs/rimraf.svg?branch=master)](https://travis-ci.org/isaacs/rimraf) [![Dependency Status](https://david-dm.org/isaacs/rimraf.svg)](https://david-dm.org/isaacs/rimraf) [![devDependency Status](https://david-dm.org/isaacs/rimraf/dev-status.svg)](https://david-dm.org/isaacs/rimraf#info=devDependencies)\n\nThe [UNIX command](http://en.wikipedia.org/wiki/Rm_(Unix)) `rm -rf` for node. \n\nInstall with `npm install rimraf`, or just drop rimraf.js somewhere.\n\n## API\n\n`rimraf(f, callback)`\n\nThe callback will be called with an error if there is one. Certain\nerrors are handled for you:\n\n* Windows: `EBUSY` and `ENOTEMPTY` - rimraf will back off a maximum of\n `opts.maxBusyTries` times before giving up, adding 100ms of wait\n between each attempt. The default `maxBusyTries` is 3.\n* `ENOENT` - If the file doesn't exist, rimraf will return\n successfully, since your desired outcome is already the case.\n* `EMFILE` - Since `readdir` requires opening a file descriptor, it's\n possible to hit `EMFILE` if too many file descriptors are in use.\n In the sync case, there's nothing to be done for this. But in the\n async case, rimraf will gradually back off with timeouts up to\n `opts.emfileWait` ms, which defaults to 1000.\n\n## rimraf.sync\n\nIt can remove stuff synchronously, too. But that's not so good. Use\nthe async API. It's better.\n\n## CLI\n\nIf installed with `npm install rimraf -g` it can be used as a global\ncommand `rimraf <path> [<path> ...]` which is useful for cross platform support.\n\n## mkdirp\n\nIf you need to create a directory recursively, check out\n[mkdirp](https://github.com/substack/node-mkdirp).\n",
+ "readmeFilename": "README.md",
+ "bugs": {
+ "url": "https://github.com/isaacs/rimraf/issues"
},
- "version": "2.4.3"
+ "homepage": "https://github.com/isaacs/rimraf#readme",
+ "_id": "rimraf@2.4.3",
+ "_shasum": "e5b51c9437a4c582adb955e9f28cf8d945e272af",
+ "_resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.3.tgz",
+ "_from": "rimraf@>=2.4.3 <2.5.0"
}