UNPKG

@apolitical/mrlint

Version:

Node.js library to mantain GitLab MRs linted within a set of rules

46 lines (45 loc) 1.17 kB
{ "name": "@apolitical/mrlint", "version": "1.0.1", "description": "Node.js library to mantain GitLab MRs linted within a set of rules", "author": "Apolitical Group Limited <engineering@apolitical.co>", "license": "MIT", "main": "index.js", "files": [ "index.js" ], "scripts": { "test": "danger test", "lint": "eslint --ext .js .", "format": "prettier --write '*.+(js|json)'", "lint-format": "lint-staged" }, "keywords": [ "Javscript", "Library", "GitLab" ], "dependencies": { "danger": "11.2.3", "danger-plugin-istanbul-coverage": "1.6.2", "danger-plugin-npm-outdated": "1.0.0", "danger-plugin-yarn": "1.6.0", "lodash.isequal": "4.5.0" }, "devDependencies": { "@apolitical/eslint-config": "2.1.0", "husky": "8.0.3", "lint-staged": "13.1.0" }, "eslintConfig": { "extends": "@apolitical/eslint-config/base.config" }, "prettier": "@apolitical/eslint-config/prettier.config", "engines": { "node": ">=16.13.0" }, "lint-staged": { "*.js": "eslint --cache --fix --ignore-path .gitignore", "*.+(js|json)": "prettier --write --ignore-path .gitignore" } }