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>2013-12-11 21:27:13 +0400
committerisaacs <i@izs.me>2013-12-11 21:27:20 +0400
commit1c22b67365769494b251920f743d02126bae0706 (patch)
tree9d6a69d56109899f00656c7a95c746b6e2b2d9b8 /node_modules/rimraf/package.json
parentc75eb669e5905878dc51182f7ebce83e5c996d0f (diff)
rimraf@2.2.5
Diffstat (limited to 'node_modules/rimraf/package.json')
-rw-r--r--node_modules/rimraf/package.json19
1 files changed, 5 insertions, 14 deletions
diff --git a/node_modules/rimraf/package.json b/node_modules/rimraf/package.json
index ba73163ba..fedc9c3c2 100644
--- a/node_modules/rimraf/package.json
+++ b/node_modules/rimraf/package.json
@@ -1,6 +1,6 @@
{
"name": "rimraf",
- "version": "2.2.2",
+ "version": "2.2.5",
"main": "rimraf.js",
"description": "A deep deletion module for node (like `rm -rf`)",
"author": {
@@ -12,9 +12,6 @@
"type": "MIT",
"url": "https://github.com/isaacs/rimraf/raw/master/LICENSE"
},
- "optionalDependencies": {
- "graceful-fs": "~2"
- },
"repository": {
"type": "git",
"url": "git://github.com/isaacs/rimraf.git"
@@ -48,18 +45,12 @@
"email": "yosefd@microsoft.com"
}
],
- "readme": "A `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* `EBUSY` - rimraf will back off a maximum of opts.maxBusyTries times\n before giving up.\n* `EMFILE` - If too many file descriptors get opened, rimraf will\n patiently wait until more become available.\n\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>` which is useful for cross platform support.\n",
+ "readme": "`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.\n* `ENOENT` - If the file doesn't exist, rimraf will return\n successfully, since your desired outcome is already the case.\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>` 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"
},
- "dependencies": {
- "graceful-fs": "~2"
- },
- "_id": "rimraf@2.2.2",
- "dist": {
- "shasum": "d99ec41dc646e55bf7a7a44a255c28bef33a8abf"
- },
- "_from": "rimraf@2.2.2",
- "_resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.2.tgz"
+ "homepage": "https://github.com/isaacs/rimraf",
+ "_id": "rimraf@2.2.5",
+ "_from": "rimraf@latest"
}