UNPKG

eslint-plugin-package-lock

Version:

An eslint plugin that will let you lint the package-lock.json

64 lines (63 loc) 2.04 kB
{ "name": "eslint-plugin-package-lock", "version": "1.0.0", "description": "An eslint plugin that will let you lint the package-lock.json", "main": "dist/main.js", "scripts": { "build": "tsc --project tsconfig.json", "lint": "npm run lint:prettier && npm run lint:eslint", "lint:eslint": "eslint src/**/*.ts", "lint:prettier": "prettier -w ./**/*.{json,ts,md}", "prepack": "npm run build", "semantic-release": "semantic-release", "test": "ts-node src/main.spec.ts" }, "repository": { "type": "git", "url": "https://github.com/lucavb/eslint-plugin-package-lock" }, "keywords": [ "eslint", "package-lock" ], "author": { "name": "Luca Becker", "email": "luca.becker@sunbury.xyz", "url": "https://sunbury.xyz" }, "bugs": { "url": "https://github.com/lucavb/eslint-plugin-package-lock/issues" }, "homepage": "https://github.com/lucavb/eslint-plugin-package-lock#readme", "files": [ "dist/main.js" ], "license": "MIT", "devDependencies": { "@commitlint/cli": "16.2.1", "@commitlint/config-conventional": "16.2.1", "@semantic-release/changelog": "6.0.1", "@semantic-release/git": "10.0.1", "@semantic-release/npm": "9.0.0", "@types/eslint": "8.4.1", "@types/node": "16.11.7", "@typescript-eslint/eslint-plugin": "5.12.1", "@typescript-eslint/parser": "5.12.1", "eslint": "8.10.0", "eslint-config-google": "0.14.0", "eslint-config-prettier": "8.4.0", "eslint-plugin-import": "2.25.4", "eslint-plugin-prettier": "4.0.0", "eslint-plugin-unused-imports": "2.0.0", "prettier": "2.5.1", "semantic-release": "19.0.2", "ts-node": "10.5.0", "typescript": "4.5.5" }, "dependencies": { "eslint-plugin-json-es": "1.5.4" }, "peerDependencies": { "eslint": ">= 7" } }