{
	"name":     "jshint",
	"version":  "2.4.1",
	"homepage": "http://jshint.com/",
	"description": "Static analysis tool for JavaScript",

	"author": {
		"name":  "Anton Kovalyov",
		"email": "anton@kovalyov.net",
		"url":   "http://anton.kovalyov.net/"
	},

	"repository": {
		"type": "git",
		"url": "https://github.com/jshint/jshint.git"
	},

	"bugs": {
		"url": "https://github.com/jshint/jshint/issues"
	},

	"bin": {
		"jshint": "./bin/jshint"
	},

	"scripts": {
		"data": "node scripts/generate-identifier-data",
		"build": "node bin/build",
		"test": "nodeunit tests tests/regression tests/unit",
		"pretest": "jshint src"
	},

	"main": "./src/jshint.js",

	"dependencies": {
		"shelljs":     "0.1.x",
		"underscore":  "1.4.x",
		"cli":         "0.4.x",
		"minimatch":   "0.x.x",
		"htmlparser2": "3.3.x",
		"console-browserify": "0.1.x"
	},

	"devDependencies": {
		"jshint":        "2.4.x",
		"shelljs":       "0.1.x",
		"browserify":    "3.x",
		"coveraje":      "0.2.x",
		"nodeunit":      "0.8.x",
		"sinon":         "1.7.x",
		"unicode-6.3.0": "0.1.x",
		"regenerate":    "0.5.x"
	},

	"jshintConfig": {
		"boss":      true,
		"node":      true,
		"strict":    true,
		"white":     true,
		"smarttabs": true,
		"maxlen":    100,
		"newcap":    false,
		"undef":     true,
		"unused":    true,
		"onecase":   true,
		"indent":    2
	},

	"licenses": [
		{
			"type": "MIT",
			"url": "https://github.com/jshint/jshint/blob/master/LICENSE"
		}
	],

	"preferGlobal": true,

	"files": [
		"bin",
		"src",
		"data"
	]
}
