@infctr/eslint-docs
Version:
Keep your rule names and descriptions up-to-date across your repo
84 lines (83 loc) • 2.22 kB
JSON
{
"name": "@infctr/eslint-docs",
"version": "0.4.0",
"description": "Keep your rule names and descriptions up-to-date across your repo",
"homepage": "https://github.com/infctr/eslint-docs",
"author": {
"name": "Jed Fox",
"email": "git@twopointzero.us",
"url": "https://j-f1.github.io"
},
"files": [
"LICENSE",
"dist"
],
"bin": "dist/cli.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"eslint",
"cli"
],
"devDependencies": {
"@types/detect-newline": "^2.1.0",
"@types/eslint": "^4.16.5",
"@types/indent-string": "^3.2.0",
"@types/jest": "^23.3.10",
"@types/mz": "^0.0.32",
"@types/node": "^10.12.18",
"@types/ora": "^1.3.4",
"@types/read-pkg-up": "^3.0.1",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.6.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-markdown": "^1.0.0-beta.8",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-typescript": "bradzacher/eslint-plugin-typescript",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"prettier": "1.15.3",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.5",
"typescript": "^3.2.2",
"semantic-release": "^15.13.3"
},
"scripts": {
"prepare": "npm run build",
"lint": "eslint src --ext ts",
"fix": "yarn lint --fix",
"build": "rimraf dist && tsc && babel dist -d dist",
"test": "yarn lint && yarn jest"
},
"repository": "infctr/eslint-docs",
"jest": {
"testMatch": [
"**/?(*.)+(spec|test).ts?(x)",
"**/__tests__/**/*.ts?(x)"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"rootDir": "src",
"testEnvironment": "node",
"preset": "ts-jest"
},
"engines": {
"node": ">=6"
},
"license": "ISC",
"dependencies": {
"chalk": "^2.4.1",
"cli-diff": "^1.0.0",
"detect-newline": "^2.1.0",
"indent-string": "^3.2.0",
"mz": "^2.7.0",
"ora": "^3.0.0",
"read-pkg-up": "^4.0.0"
}
}