public-js/keep-updated

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "keep-updated",
  "version": "2.1.1",
  "description": "",
  "scripts": {
    "___ Manual Lint ___": "",
    "man:space:format": "npm run ci:space:format -- --write",
    "man:space:lint": "npm run ci:root:lint -- --fix && npm run ci:all:lint -- --fix",
    "man:staged:lint": "lint-staged --concurrent false",
    "___ CI Lint ___": "",
    "ci:space:format": "prettier '**/*.{js,ts,scss,html,md,json,yml,*\\w\\wrc}'",
    "ci:root:lint": "eslint '*.{js,ts}' --no-ignore",
    "ci:all:lint": "nx run-many --target lint --all --parallel",
    "___ CI Checks ___": "",
    "ci:affect:test": "nx affected --target test --parallel",
    "ci:affect:build": "nx affected --target build --parallel",
    "ci:all:test": "nx run-many --target test --all --parallel --codeCoverage --coverageReporters=lcov",
    "ci:all:build": "nx run-many --target build --all --parallel",
    "___ CD Tasks ___": "",
    "cd:all:publish": "nx run-many --target publish --all",
    "cd:version-bump": "standard-version",
    "cd:github-release": "cc-github-releaser --prefix v",
    "___ Miscellaneous ___": "",
    "man:dev:update": "keep-updated update --audit-fix",
    "man:nx:migrate": "npx nx migrate latest && npx nx migrate --run-migrations ; npm run man:dev:update && rm -f migrations.json",
    "prepare": "is-ci || husky install"
  },
  "private": true,
  "dependencies": {
    "chalk": "^4.0.0",
    "tslib": "^2.0.0",
    "yargs": "^16.0.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.0.0",
    "@commitlint/config-conventional": "^17.0.0",
    "@nrwl/cli": "14.4.3",
    "@nrwl/eslint-plugin-nx": "14.4.3",
    "@nrwl/jest": "14.4.3",
    "@nrwl/js": "14.4.3",
    "@nrwl/linter": "14.4.3",
    "@nrwl/node": "14.4.3",
    "@nrwl/nx-cloud": "14.2.0",
    "@nrwl/workspace": "14.4.3",
    "@public-js/cc-github-releaser": "latest",
    "@public-js/eslint-plugin-node": "latest",
    "@public-js/keep-updated": "latest",
    "@types/jest": "27.4.1",
    "@types/node": "^18.0.0",
    "@typescript-eslint/eslint-plugin": "~5.30.0",
    "@typescript-eslint/parser": "~5.30.0",
    "eslint": "~8.15.0",
    "eslint-config-prettier": "^8.1.0",
    "eslint-plugin-import": "^2.25.0",
    "eslint-plugin-prettier": "^4.0.0",
    "husky": "^8.0.0",
    "is-ci": "^3.0.0",
    "jest": "27.5.1",
    "lint-staged": "^13.0.0",
    "nx": "14.4.3",
    "prettier": "^2.7.0",
    "standard-version": "^9.0.0",
    "ts-jest": "27.1.4",
    "typescript": "4.7.4"
  },
  "keepUpdated": [
    "@commitlint/*",
    "@public-js/*",
    "@types/*",
    "@typescript-eslint/*",
    "chalk",
    "eslint",
    "husky",
    "is-ci",
    "lint-staged",
    "prettier",
    "standard-version",
    "tslib",
    "typescript"
  ],
  "nx-managed": [
    "@nrwl/cli",
    "@nrwl/eslint-plugin-nx",
    "@nrwl/jest",
    "@nrwl/js",
    "@nrwl/linter",
    "@nrwl/node",
    "@nrwl/nx-cloud",
    "@nrwl/tao",
    "@nrwl/workspace",
    "@types/jest",
    "@typescript-eslint/eslint-plugin",
    "@typescript-eslint/parser",
    "eslint",
    "eslint-config-prettier",
    "jest",
    "ts-jest",
    "tslib",
    "typescript"
  ],
  "license": "MIT",
  "author": "Public JS <public-js@muffin.blue> (https://github.com/public-js/public-js)",
  "repository": "https://github.com/public-js/keep-updated",
  "homepage": "https://github.com/public-js/keep-updated",
  "lint-staged": {
    "*.{js,ts,css,scss,html,md,json}": "prettier --write",
    "*.{js,ts}": "eslint --fix"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "engines": {
    "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  }
}