Changeset 516 for Dev/trunk/node_modules/grunt-coffeelint/package.json
- 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-coffeelint/package.json
r484 r516 2 2 "name": "grunt-coffeelint", 3 3 "description": "Lint your Coffee", 4 "version": "0.0. 7",4 "version": "0.0.8", 5 5 "homepage": "https://github.com/vojtajina/grunt-coffeelint", 6 6 "author": { … … 40 40 }, 41 41 "scripts": { 42 "test": "grunt test"42 "test": "grunt default" 43 43 }, 44 44 "peerDependencies": { … … 46 46 }, 47 47 "dependencies": { 48 "coffeelint": "~ 0.5"48 "coffeelint": "~1.0" 49 49 }, 50 50 "devDependencies": { … … 56 56 "gruntplugin" 57 57 ], 58 "readme": "[](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 \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 [example configuration] or [coffeelint homepage].\n\n\n[CoffeeLint]: http://www.coffeelint.org/\n[coffeelint homepage]: http://www.coffeelint.org/\n[example configuration]: https://raw.github.com/clutchski/coffeelint/master/examples/coffeelint.json\n",58 "readme": "[](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", 59 59 "readmeFilename": "README.md", 60 "_id": "grunt-coffeelint@0.0. 7",60 "_id": "grunt-coffeelint@0.0.8", 61 61 "dist": { 62 "shasum": " b782bf05aeb462dce2e566116849d369a1f19f4f"62 "shasum": "149d6c5e8dd78b88a513b94daa274d5e6736fa52" 63 63 }, 64 "_from": "grunt-coffeelint@0.0. 7",65 "_resolved": "https://registry.npmjs.org/grunt-coffeelint/-/grunt-coffeelint-0.0. 7.tgz"64 "_from": "grunt-coffeelint@0.0.8", 65 "_resolved": "https://registry.npmjs.org/grunt-coffeelint/-/grunt-coffeelint-0.0.8.tgz" 66 66 }
Note: See TracChangeset
for help on using the changeset viewer.