{
  "name": "fixmyjs",
  "version": "2.0.0",
  "description": "Automatically fixes your JavaScript based on lint rules",
  "homepage": "http://fixmyjs.com",
  "license": "MIT",
  "author": "Josh Perez <josh@goatslacker.com> (http://github.com/goatslacker)",
  "repository": {
    "type": "git",
    "url": "git://github.com/jshint/fixmyjs"
  },
  "bugs": {
    "url": "https://github.com/jshint/fixmyjs/issues"
  },
  "bin": {
    "fixmyjs": "./bin/fixmyjs"
  },
  "keywords": [
    "beautify",
    "hint",
    "jshint",
    "jslint",
    "lint"
  ],
  "main": "./lib/index.js",
  "dependencies": {
    "commander": "^2.3.0",
    "diff": "^1.2.2",
    "esformatter": "^0.4.3",
    "fu": "^0.1.0",
    "minimatch": "^2.0.1",
    "object-assign": "^2.0.0",
    "recast": "^0.9.17"
  },
  "devDependencies": {
    "coveralls": "^2.11.2",
    "ghooks": "^0.2.2",
    "istanbul": "^0.3.5",
    "jshint": "^2.5.11",
    "testla": "^0.1.x"
  },
  "preferGlobal": true,
  "scripts": {
    "lint": "jshint .",
    "coverage": "node ./node_modules/istanbul/lib/cli.js cover testla test",
    "test": "npm run lint && testla test"
  },
  "files": [
    "bin",
    "lib",
    "LICENSE",
    "README.md"
  ],
  "engines": {
    "node": "*"
  },
  "config": {
    "ghooks": {
      "pre-push": "npm test"
    }
  },
  "fixmyjs": {
    "camelcase": false,
    "curly": true,
    "curlyfor": true,
    "curlyif": true,
    "curlywhile": true,
    "debug": true,
    "decimals": true,
    "eqeqeq": false,
    "es3": true,
    "hoist": false,
    "initUndefined": true,
    "invalidConstructor": true,
    "invokeConstructors": true,
    "isNan": true,
    "multivar": false,
    "no-comma-dangle": true,
    "nonew": false,
    "onevar": false,
    "parseIntRadix": true,
    "plusplus": true,
    "rmdelete": true,
    "rmempty": true,
    "snakecase": false,
    "sub": true,
    "useLiteral": true
  }
}
