UNPKG

libyear

Version:

A simple measure of software dependency freshness

91 lines (90 loc) 2.53 kB
{ "name": "libyear", "version": "0.8.0", "description": "A simple measure of software dependency freshness", "author": "Joshua David <@jdanil>", "contributors": [ "Jared Beck <@jaredbeck>", "Leon Miller-Out <@sbleon>" ], "license": "LGPL-3.0", "homepage": "https://github.com/jdanil/libyear", "repository": { "type": "git", "url": "https://github.com/jdanil/libyear.git" }, "bugs": { "url": "https://github.com/jdanil/libyear/issues" }, "main": "./src", "exports": "./src", "bin": "./bin/libyear.js", "type": "module", "types": "./src", "files": [ "bin/**/*.d.ts", "bin/**/*.js", "src/**/*.d.ts", "src/**/*.js" ], "keywords": [ "debt", "dependency", "drift", "fitness", "libyear", "outdated" ], "engines": { "node": ">=14" }, "packageManager": "yarn@3.2.1", "scripts": { "audit-ci": "audit-ci --config .auditcirc.json", "clean": "tsc --build --clean", "compile": "tsc --build", "format": "prettier", "format:all": "yarn format .", "format:diff": "pretty-quick", "libyear": "node --loader ts-node/esm --es-module-specifier-resolution=node ./bin/libyear", "lint": "eslint --cache --cache-strategy=content", "lint:all": "yarn lint \"**/*\"", "lint:diff": "FILES=$(git diff --diff-filter=ACMRTUB --name-only --relative master); [ -z ${FILES} ] || yarn lint --no-error-on-unmatched-pattern ${FILES}", "prepack": "tsc --build --force", "prepare": "is-ci || husky install", "test": "jest --config .jestrc.json --passWithNoTests", "test:ci": "yarn test --ci", "test:ci:branch": "yarn test:ci --changedSince=master" }, "dependencies": { "chalk": "^5.0.1", "cosmiconfig": "^7.0.1", "date-fns": "^2.28.0", "execa": "^6.1.0", "lodash-es": "^4.17.21", "mri": "^1.2.0", "semver": "^7.3.7" }, "devDependencies": { "@commitlint/cli": "^17.0.1", "@commitlint/config-conventional": "^17.0.0", "@jest/globals": "^28.1.0", "@types/lodash-es": "^4.14.182", "@types/node": "^17.0.36", "@types/semver": "^7.3.9", "@typescript-eslint/eslint-plugin": "^5.27.0", "@typescript-eslint/parser": "^5.27.0", "audit-ci": "^6.3.0", "eslint": "^8.16.0", "husky": "^8.0.1", "is-ci": "^3.0.1", "jest": "^28.1.0", "lint-staged": "^12.4.3", "prettier": "^2.6.2", "pretty-quick": "^3.1.3", "ts-jest": "^28.0.3", "ts-node": "^10.8.0", "tslib": "^2.4.0", "typescript": "^4.7.2" } }