source: Dev/trunk/node_modules/grunt-path-check/package.json @ 533

Last change on this file since 533 was 516, checked in by hendrikvanantwerpen, 11 years ago

Enable deployment with Grunt.

File size: 3.4 KB
Line 
1{
2  "name": "grunt-path-check",
3  "homepage": "http://github.com/rse/grunt-path-check",
4  "description": "Grunt Task for Checking Existence of Programs on PATH",
5  "version": "0.9.3",
6  "license": "MIT",
7  "author": {
8    "name": "Ralf S. Engelschall",
9    "email": "rse@engelschall.com",
10    "url": "http://engelschall.com"
11  },
12  "keywords": [
13    "gruntplugin",
14    "path",
15    "check",
16    "executable",
17    "program",
18    "binary"
19  ],
20  "repository": {
21    "type": "git",
22    "url": "git://github.com/rse/grunt-path-check.git"
23  },
24  "bugs": {
25    "url": "http://github.com/rse/grunt-path-check/issues"
26  },
27  "main": "Gruntfile.js",
28  "devDependencies": {
29    "grunt": "~0.4.1",
30    "grunt-cli": "~0.1.10",
31    "grunt-contrib-jshint": "~0.7.1",
32    "grunt-contrib-clean": "~0.5.0",
33    "chalk": "^0.3.0"
34  },
35  "peerDependencies": {
36    "grunt": "~0.4.1"
37  },
38  "dependencies": {
39    "chalk": "~0.3.0"
40  },
41  "engines": {
42    "node": ">=0.10.0"
43  },
44  "readme": "\n# grunt-path-check\n\nGrunt Task for Checking Existence of Programs on PATH.\nIn case a program is not found a warning is issues and\nGrunt by default stop processing until option `--force` is used.\n\n<p/>\n<img src=\"https://nodei.co/npm/grunt-path-check.png?downloads=true&stars=true\" alt=\"\"/>\n\n<p/>\n<img src=\"https://david-dm.org/rse/grunt-path-check.png\" alt=\"\"/>\n\n\n## Getting Started\n\nThis plugin requires Grunt `~0.4.0`\n\nIf you haven't used [Grunt](http://gruntjs.com/)\nbefore, be sure to check out the [Getting\nStarted](http://gruntjs.com/getting-started) guide, as it explains how\nto create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as\ninstall and use Grunt plugins. Once you're familiar with that process,\nyou may install this plugin with this command:\n\n```shell\nnpm install grunt-path-check --save-dev\n```\n\nOnce the plugin has been installed, it may be enabled inside your\nGruntfile with this line of JavaScript:\n\n```js\ngrunt.loadNpmTasks(\"grunt-path-check\");\n```\n\n## Task Options\n\n- `tasks`: (default `[]`) the names of Grunt tasks to run if\n   the patch check for the `src` programs are successful.\n\n- `mandatory`: (default `true`) whether the\n   patch check for the `src` programs are mandatory, i.e., if they are\n   not successful, stop processing. Set this to `false` in combination\n   with the `tasks` option to execute a task if a program exists or skip\n   a task if a program does not exist.\n\n## Task Usage\n\n_Run this task with the `grunt path-check` command._\n\nTask targets, files and options may be specified according to the Grunt\n[Configuring tasks](http://gruntjs.com/configuring-tasks) guide.\n\n## Usage Example\n\n```js\n// [...]\ngrunt.loadNpmTasks(\"grunt-shell\");\ngrunt.loadNpmTasks(\"grunt-path-check\");\ngrunt.initConfig({\n    \"shell\": {\n        \"generate-txt\": {\n            command: \"w3m -dump doc.html >doc.txt\"\n        }\n    },\n    \"path-check\": {\n        \"generate-txt\": {\n            src: [ \"w3m\" ],\n            options: {\n                mandatory: false,\n                tasks: [ \"shell:generate-txt\" ]\n            }\n        }\n    }\n});\ngrunt.registerTask(\"default\", [ \"path-check:generate-txt\" ]);\n// [...]\n```\n\n",
45  "readmeFilename": "README.md",
46  "_id": "grunt-path-check@0.9.3",
47  "dist": {
48    "shasum": "a9ca77e1f008a403dd770dfa0dd596375a782347"
49  },
50  "_from": "grunt-path-check@",
51  "_resolved": "https://registry.npmjs.org/grunt-path-check/-/grunt-path-check-0.9.3.tgz"
52}
Note: See TracBrowser for help on using the repository browser.