{ "name": "@openstapps/eslint-config", "version": "0.0.1", "main": "index.js", "description": "A collection of configuration base files for StApps projects.", "scripts": { "build": "npm run lint && npm run compile", "compile": "rimraf lib && tsc --outDir lib && prepend lib/cli.js '#!/usr/bin/env node\n'", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'docs: update changelog'", "prepublishOnly": "npm ci && npm run build", "postversion": "npm run changelog", "preversion": "npm run prepublishOnly", "push": "git push && git push origin \"v$npm_package_version\"" }, "repository": { "type": "git", "url": "git@gitlab.com:openstapps/eslint-config.git" }, "author": "Thea Schöbl", "license": "GPL-3.0-only", "dependencies": { "@typescript-eslint/parser": ">=5.15.0", "typescript": "4.4.3" }, "devDependencies": { "conventional-changelog-cli": "2.1.1", "prepend-file-cli": "1.0.6", "rimraf": "3.0.2" }, "peerDependencies": { "eslint": ">=8.11.0", "eslint-config-prettier": ">=8.5.0", "eslint-plugin-jsdoc": ">=38.0.6", "eslint-plugin-prettier": ">=4.0.0", "eslint-plugin-unicorn": ">=41.0.1", "prettier": ">=2.6.0", "@typescript-eslint/eslint-plugin": ">=5.15.0" } }