ahmadnassri/codeclimate-editorconfig

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "private": true,
  "version": "1.0.0",
  "name": "codeclimate-editorconfig",
  "description": "Static analysis tool that validates your project files with EditorConfig",
  "author": "Ahmad Nassri <ahmad@ahmadnassri.com> (https://www.ahmadnassri.com/)",
  "homepage": "https://github.com/ahmadnassri/codeclimate-editorconfig",
  "repository": {
    "type": "git",
    "url": "https://github.com/ahmadnassri/codeclimate-editorconfig.git"
  },
  "license": "ISC",
  "main": "index.js",
  "bin": {
    "codeclimate-editorconfig": "bin.js"
  },
  "keywords": [
    "codeclimate",
    "editorconfig"
  ],
  "engines": {
    "node": ">=9"
  },
  "files": [
    "bin.js",
    "index.js"
  ],
  "bugs": {
    "url": "https://github.com/ahmadnassri/codeclimate-editorconfig/issues"
  },
  "scripts": {
    "pretest": "npm run test:codeclimate",
    "test": "npm run test:tap",
    "test:codeclimate": ".scripts/codeclimate analyze",
    "test:tap": "tap test --100 --coverage-report=lcov --no-browser",
    "coverage": "opener coverage/lcov-report/index.html"
  },
  "devDependencies": {
    "ajv": "^6.1.1",
    "tap": "^11.1.0"
  },
  "dependencies": {
    "fast-glob": "^2.0.4",
    "lintspaces": "^0.10.2"
  }
}