1 | { |
---|
2 | "name": "grunt-coffeelint", |
---|
3 | "description": "Lint your Coffee", |
---|
4 | "version": "0.0.7", |
---|
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": { |
---|
42 | "test": "grunt test" |
---|
43 | }, |
---|
44 | "peerDependencies": { |
---|
45 | "grunt": "~0.4" |
---|
46 | }, |
---|
47 | "dependencies": { |
---|
48 | "coffeelint": "~0.5" |
---|
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 | ], |
---|
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", |
---|
59 | "readmeFilename": "README.md", |
---|
60 | "_id": "grunt-coffeelint@0.0.7", |
---|
61 | "dist": { |
---|
62 | "shasum": "b782bf05aeb462dce2e566116849d369a1f19f4f" |
---|
63 | }, |
---|
64 | "_from": "grunt-coffeelint@0.0.7", |
---|
65 | "_resolved": "https://registry.npmjs.org/grunt-coffeelint/-/grunt-coffeelint-0.0.7.tgz" |
---|
66 | } |
---|