UNPKG

eslint-config-aether

Version:

A custom code style for ESLint.

73 lines (72 loc) 1.67 kB
{ "name": "eslint-config-aether", "version": "3.2.2", "description": "A custom code style for ESLint.", "homepage": "https://github.com/vanruesc/eslint-config-aether", "main": "./dist/index.js", "license": "Zlib", "type": "module", "exports": { ".": { "types": "./dist/types/index.d.ts", "default": "./dist/index.js" } }, "keywords": [ "eslint", "eslintconfig", "lint", "hint", "style", "syntax", "check", "typescript", "ts" ], "author": { "name": "Raoul van Rüschen", "email": "vanruesc@outlook.de" }, "repository": { "url": "git+https://github.com/vanruesc/eslint-config-aether.git" }, "bugs": { "url": "https://github.com/vanruesc/eslint-config-aether/issues" }, "files": [ "dist" ], "scripts": { "build": "node esbuild", "clean": "del-cli dist test/generated", "dts": "tsc -p tsconfig.d.json", "copy": "copyfiles \"test/src/**\" test/generated -u 2", "predebug": "run-s clean dts build", "debug": "eslint --debug src", "fix": "eslint --fix test/generated", "report": "eslint src --format html --output-file eslintreport.html", "pretest": "run-s clean dts build copy fix", "test": "node --import tsx test/test.ts", "prepublishOnly": "run-s test" }, "peerDependencies": { "eslint": "10.x.x" }, "dependencies": { "@eslint/core": "1.x.x", "@eslint/js": "10.x.x", "@stylistic/eslint-plugin": "5.x.x", "globals": "17.x.x", "typescript-eslint": "8.x.x" }, "devDependencies": { "@types/node": "26.x.x", "del-cli": "7.x.x", "esbuild": "0.28.x", "native-copyfiles": "2.x.x", "npm-run-all": "4.x.x", "tslib": "2.x.x", "tsx": "4.x.x", "typescript": "6.0.x" } }