source: Dev/trunk/node_modules/grunt-coffeelint/package.json @ 516

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

Enable deployment with Grunt.

File size: 3.0 KB
RevLine 
[484]1{
2  "name": "grunt-coffeelint",
3  "description": "Lint your Coffee",
[516]4  "version": "0.0.8",
[484]5  "homepage": "https://github.com/vojtajina/grunt-coffeelint",
6  "author": {
7    "name": "Vojta Jína",
8    "email": "vojta.jina@gmail.com"
9  },
10  "contributors": [
11    {
12      "name": "Christoph Neuroth",
13      "email": "christoph.neuroth@gmail.com"
14    },
15    {
16      "name": "Ed Siok",
17      "email": "sioked@gmail.com"
18    },
19    {
20      "name": "travis4all",
21      "email": "travis4all@diamon.dz"
22    }
23  ],
24  "repository": {
25    "type": "git",
26    "url": "git://github.com/vojtajina/grunt-coffeelint.git"
27  },
28  "bugs": {
29    "url": "https://github.com/vojtajina/grunt-coffeelint/issues"
30  },
31  "licenses": [
32    {
33      "type": "MIT",
34      "url": "http://github.com/vojtajina/grunt-coffeelint/blob/master/LICENSE-"
35    }
36  ],
37  "main": "grunt.js",
38  "engines": {
39    "node": "*"
40  },
41  "scripts": {
[516]42    "test": "grunt default"
[484]43  },
44  "peerDependencies": {
45    "grunt": "~0.4"
46  },
47  "dependencies": {
[516]48    "coffeelint": "~1.0"
[484]49  },
50  "devDependencies": {
51    "grunt": "~0.4",
52    "grunt-bump": "~0.0.7",
53    "grunt-npm": "~0.0.2"
54  },
55  "keywords": [
56    "gruntplugin"
57  ],
[516]58  "readme": "[![build status](https://secure.travis-ci.org/vojtajina/grunt-coffeelint.png)](http://travis-ci.org/vojtajina/grunt-coffeelint)\n# grunt-coffeelint\n\n**Lint your CoffeeScript by [CoffeeLint].**\n\n## Installation\n\nInstall npm package, next to your project's `Gruntfile.js` file:\n\n    npm install grunt-coffeelint\n\nAdd this line to your project's `Gruntfile.js`:\n\n    grunt.loadNpmTasks('grunt-coffeelint');\n\n## Options\n\nA few additional options are supported:\n\n### force\nType: `Boolean`\nDefault value: `false`\n\nSet `force` to `true` to report CoffeeLint errors but not fail the task.\n\n## Configuration\n\n`coffeelint` is a multitask, so you can use it similary to `lint`, `watch` etc...\n\n````javascript\ngrunt.initConfig({\n    ...\n    coffeelint: {\n      app: ['app/*.coffee', 'scripts/*.coffee']\n      }\n    },\n    ...\n});\n````\n\n### Options per target\n\n````javascript\ngrunt.initConfig({\n    ...\n    coffeelint: {\n      app: ['app/*.coffee', 'scripts/*.coffee'],\n      tests: {\n        files: {\n          src: ['tests/*.coffee']\n        },\n        options: {\n          'no_trailing_whitespace': {\n            'level': 'error'\n          }\n        }\n      }\n    },\n    ...\n});\n````\n\n### Global - default options\n\n````javascript\ngrunt.initConfig({\n    ...\n    coffeelint: {\n      options: {\n        'no_trailing_whitespace': {\n          'level': 'error'\n        }\n      }\n    },\n    ...\n});\n````\n\nFor available options see [coffeelint homepage].\n\n[CoffeeLint]: http://www.coffeelint.org/\n[coffeelint homepage]: http://www.coffeelint.org/\n",
[484]59  "readmeFilename": "README.md",
[516]60  "_id": "grunt-coffeelint@0.0.8",
[484]61  "dist": {
[516]62    "shasum": "149d6c5e8dd78b88a513b94daa274d5e6736fa52"
[484]63  },
[516]64  "_from": "grunt-coffeelint@0.0.8",
65  "_resolved": "https://registry.npmjs.org/grunt-coffeelint/-/grunt-coffeelint-0.0.8.tgz"
[484]66}
Note: See TracBrowser for help on using the repository browser.