- Timestamp:
- 03/14/14 12:36:58 (11 years ago)
- Location:
- Dev/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk
- Property svn:ignore
-
old new 1 1 build 2 quod-erat.git
-
- Property svn:ignore
-
Dev/trunk/node_modules/grunt/node_modules/rimraf/package.json
r484 r516 1 1 { 2 2 "name": "rimraf", 3 "version": "2. 0.3",3 "version": "2.2.6", 4 4 "main": "rimraf.js", 5 5 "description": "A deep deletion module for node (like `rm -rf`)", … … 13 13 "url": "https://github.com/isaacs/rimraf/raw/master/LICENSE" 14 14 }, 15 "optionalDependencies": {16 "graceful-fs": "~1.1"17 },18 15 "repository": { 19 16 "type": "git", … … 22 19 "scripts": { 23 20 "test": "cd test && bash run.sh" 21 }, 22 "bin": { 23 "rimraf": "./bin.js" 24 24 }, 25 25 "contributors": [ … … 46 46 } 47 47 ], 48 "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",48 "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", 49 49 "readmeFilename": "README.md", 50 50 "bugs": { … … 52 52 }, 53 53 "homepage": "https://github.com/isaacs/rimraf", 54 "dependencies": { 55 "graceful-fs": "~1.1" 54 "_id": "rimraf@2.2.6", 55 "dist": { 56 "shasum": "c28d4de4cafcd392b82d02729509c65e3502240c" 56 57 }, 57 "_ id": "rimraf@2.0.3",58 "_ from": "rimraf@~2.0.3"58 "_from": "rimraf@~2.2.6", 59 "_resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.6.tgz" 59 60 }
Note: See TracChangeset
for help on using the changeset viewer.