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

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

Added linting of json files.

File size: 1.9 KB
RevLine 
[505]1{
2  "name": "grunt-jsonlint",
3  "version": "1.0.4",
4  "description": "Validate JSON files from grunt.",
5  "main": "tasks/jsonlint.js",
6  "scripts": {
7    "test": "grunt jshint jsonlint"
8  },
9  "repository": {
10    "type": "git",
11    "url": "https://github.com/brandonramirez/grunt-jsonlint"
12  },
13  "bugs": {
14    "url": "https://github.com/brandonramirez/grunt-jsonlint/issues"
15  },
16  "keywords": [
17    "gruntplugin",
18    "build",
19    "validate"
20  ],
21  "author": {
22    "name": "Brandon Ramirez",
23    "email": "brandon.s.ramirez@gmail.com",
24    "url": "http://www.brandonsramirez.com/"
25  },
26  "license": "MIT",
27  "dependencies": {
28    "jsonlint": "1.6.0"
29  },
30  "devDependencies": {
31    "grunt": "~0.4.1",
32    "grunt-contrib-jshint": "~0.7.2"
33  },
34  "readme": "grunt-jsonlint\n==============\n\nValidate JSON files from grunt.\n\nRequires grunt 0.4\n\n# Install\n\n    npm install grunt-jsonlint --save-dev\n\n# Configure\n\nAdd the following (multi-)task to your Gruntfile:\n\n    jsonlint: {\n      sample: {\n        src: [ 'some/valid.json' ]\n      }\n    }\n\nAdd the following to load the task into your Gruntfile:\n\n    grunt.loadNpmTasks('grunt-jsonlint');\n\nAn error will be thrown if the JSON file contains syntax errors.\n\n# Roadmap\n\nThe underlying jsonlint library has many features not yet exposed.\nEach of these would be valuable in grunt.\n\n* Schema validation\n* Sort file by key\n\n# Release History\n\n* 2013-02-20   v1.0.0   First official release\n* 2013-09-19   v1.0.1   Do not log every validated file\n* 2013-10-31   v1.0.2   Add output of count of successfully linted JSON file for issue\n* 2013-11-16   v1.0.3   Fix output of count of successfully linted JSON files.\n* 2013-11-18   v1.0.4   Updated for latest dependencies.\n",
35  "readmeFilename": "README.md",
36  "homepage": "https://github.com/brandonramirez/grunt-jsonlint",
37  "_id": "grunt-jsonlint@1.0.4",
38  "_from": "grunt-jsonlint@"
39}
Note: See TracBrowser for help on using the repository browser.