{
  "name": "eclint",
  "version": "2.8.1",
  "description": "Validate or fix code that doesn't adhere to EditorConfig settings or infer settings from existing code.",
  "keywords": [
    "editorconfig",
    "tools",
    "validate",
    "fix",
    "enforce",
    "infer",
    "gulpplugin"
  ],
  "bin": {
    "eclint": "bin/eclint.js"
  },
  "main": "dist/eclint.js",
  "types": "dist/eclint.d.ts",
  "scripts": {
    "clean": "rimraf coverage dist **/*.log **/*.orig **/*.TMP",
    "codecov": "codecov -f coverage/lcov.info",
    "compile": "tsc",
    "compile:watch": "tsc --watch",
    "eclint": "node bin/eclint.js check",
    "lint": "npm run tslint",
    "mocha": "mocha --no-timeouts \"dist/**/*.spec.js\"",
    "prepare": "npm test",
    "pretest": "npm run lint && npm run clean && npm run compile && npm run eclint",
    "test": "nyc npm run mocha -- --reporter lcov --reporter spec",
    "test:watch": "npm run mocha -- --watch --reporter min",
    "tslint": "tslint --project tsconfig.json"
  },
  "nyc": {
    "lines": 97,
    "statements": 97,
    "functions": 98,
    "branches": 96,
    "include": [
      "dist/**/*.js"
    ],
    "exclude": [
      "dist/**/*.spec.js"
    ],
    "reporter": [
      "lcov",
      "text"
    ],
    "cache": true,
    "all": true,
    "check-coverage": true
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/jedmao/eclint.git"
  },
  "homepage": "https://github.com/jedmao/eclint",
  "bugs": {
    "url": "https://github.com/jedmao/eclint/issues"
  },
  "author": "EditorConfig Team",
  "license": "MIT",
  "dependencies": {
    "editorconfig": "^0.15.2",
    "file-type": "^10.1.0",
    "gulp-exclude-gitignore": "^1.2.0",
    "gulp-filter": "^5.1.0",
    "gulp-reporter": "^2.9.0",
    "gulp-tap": "^1.0.1",
    "linez": "^4.1.4",
    "lodash": "^4.17.11",
    "minimatch": "^3.0.4",
    "os-locale": "^3.0.1",
    "plugin-error": "^1.0.1",
    "through2": "^2.0.3",
    "vinyl": "^2.2.0",
    "vinyl-fs": "^3.0.3",
    "yargs": "^12.0.2"
  },
  "devDependencies": {
    "@types/chai": "^4.1.6",
    "@types/fs-extra": "^5.0.4",
    "@types/get-stream": "^3.0.1",
    "@types/lodash": "^4.14.117",
    "@types/mocha": "^5.2.5",
    "@types/node": "^10.12.0",
    "@types/proxyquire": "^1.3.28",
    "@types/sinon": "^5.0.5",
    "@types/sinon-chai": "^3.2.0",
    "@types/through2": "^2.0.34",
    "@types/vinyl": "^2.0.2",
    "@types/vinyl-fs": "^2.4.9",
    "@types/yargs": "^12.0.1",
    "chai": "^4.2.0",
    "event-stream": "^4.0.1",
    "fs-extra": "^7.0.0",
    "get-stream": "^4.1.0",
    "mocha": "^5.2.0",
    "nyc": "^13.1.0",
    "proxyquire": "^2.1.0",
    "rimraf": "^2.6.2",
    "sinon": "^7.0.0",
    "sinon-chai": "^3.2.0",
    "ts-node": "^7.0.1",
    "tslint": "^5.11.0",
    "typescript": "^3.1.3"
  },
  "directories": {
    "test": "test"
  }
}
