Ignore:
Timestamp:
03/14/14 12:36:58 (11 years ago)
Author:
hendrikvanantwerpen
Message:

Enable deployment with Grunt.

Location:
Dev/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk

    • Property svn:ignore
      •  

        old new  
        11build
        2 quod-erat.git
  • Dev/trunk/node_modules/grunt/node_modules/rimraf/package.json

    r484 r516  
    11{
    22  "name": "rimraf",
    3   "version": "2.0.3",
     3  "version": "2.2.6",
    44  "main": "rimraf.js",
    55  "description": "A deep deletion module for node (like `rm -rf`)",
     
    1313    "url": "https://github.com/isaacs/rimraf/raw/master/LICENSE"
    1414  },
    15   "optionalDependencies": {
    16     "graceful-fs": "~1.1"
    17   },
    1815  "repository": {
    1916    "type": "git",
     
    2219  "scripts": {
    2320    "test": "cd test && bash run.sh"
     21  },
     22  "bin": {
     23    "rimraf": "./bin.js"
    2424  },
    2525  "contributors": [
     
    4646    }
    4747  ],
    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",
    4949  "readmeFilename": "README.md",
    5050  "bugs": {
     
    5252  },
    5353  "homepage": "https://github.com/isaacs/rimraf",
    54   "dependencies": {
    55     "graceful-fs": "~1.1"
     54  "_id": "rimraf@2.2.6",
     55  "dist": {
     56    "shasum": "c28d4de4cafcd392b82d02729509c65e3502240c"
    5657  },
    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"
    5960}
Note: See TracChangeset for help on using the changeset viewer.