tunnckoCore/eslint-config-charlint

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "eslint-config-charlint",
  "version": "0.1.1",
  "description": "Code style: Charlike. Thin layer on top of the Standard JavaScript Style v9, for more readable code.",
  "repository": "tunnckoCore/eslint-config-charlint",
  "author": "Charlike Mike Reagent <@tunnckoCore> (https://i.am.charlike.online)",
  "precommit.silent": true,
  "main": "index.js",
  "license": "MIT",
  "scripts": {
    "lint": "eslint index.js test.js --fix",
    "test": "npm-run-all -s lint test:*",
    "test:api": "nyc --reporter lcov node test.js",
    "test:report": "nyc report",
    "prerelease": "npm test",
    "release": "standard-version --sign --no-verify",
    "git": "npm-run-all -s git:*",
    "git:add": "git add --all",
    "git:cz": "git-cz",
    "commit": "npm-run-all -s test git"
  },
  "dependencies": {
    "eslint-config-standard": "^7.0.0-beta.0",
    "eslint-config-standard-jsx": "^3.3.0",
    "eslint-plugin-promise": "^3.4.2",
    "eslint-plugin-react": "^6.10.0",
    "eslint-plugin-standard": "^2.0.1"
  },
  "devDependencies": {
    "commitizen": "^2.9.6",
    "cz-conventional-changelog": "^1.2.0",
    "eslint": "^3.16.1",
    "mukla": "^0.4.8",
    "npm-run-all": "^4.0.1",
    "nyc": "^10.1.2",
    "pre-commit": "^1.2.2",
    "standard-version": "^4.0.0"
  },
  "files": [
    "index.js",
    ".eslintrc.json"
  ],
  "keywords": [
    "charlike",
    "charlint",
    "config",
    "configuration",
    "eslint",
    "esnext",
    "free",
    "share",
    "shareable",
    "standard",
    "standardjs",
    "style"
  ],
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "standard": {
    "ignore": [
      "dist/**"
    ]
  },
  "verb": {
    "run": true,
    "toc": {
      "render": true,
      "method": "preWrite",
      "maxdepth": 3
    },
    "layout": "empty",
    "tasks": [
      "readme"
    ],
    "related": {
      "list": [
        "always-done",
        "minibase",
        "try-catch-core"
      ],
      "highlight": "always-done"
    },
    "lint": {
      "reflinks": true
    },
    "reflinks": [
      "always-done",
      "async-done",
      "base",
      "charlike",
      "commitizen",
      "dezalgo",
      "once",
      "standard-version",
      "verb",
      "verb-generate-readme",
      "eslint",
      "standard"
    ]
  },
  "engines": {
    "node": ">=4",
    "npm": ">=2"
  },
  "nyc": {
    "check-coverage": true,
    "statements": 100,
    "functions": 100,
    "branches": 100,
    "lines": 100
  }
}