UNPKG

list-dependents

Version:

Lists all dependents of a project, using npm or ecosyste.ms

69 lines (68 loc) 2.19 kB
{ "name": "list-dependents", "version": "2.2.2", "description": "Lists all dependents of a project, using npm or ecosyste.ms", "homepage": "http://github.com/voxpelli/list-dependents", "repository": { "type": "git", "url": "git://github.com/voxpelli/list-dependents.git" }, "keywords": [], "author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)", "license": "MIT", "engines": { "node": ">=20.0.0" }, "type": "module", "exports": "./index.js", "types": "index.d.ts", "files": [ "cli.js", "index.js", "index.d.ts", "index.d.ts.map", "lib/**/*.js", "lib/**/*.d.ts", "lib/**/*.d.ts.map" ], "scripts": { "build:0": "run-s clean", "build:1-declaration": "tsc -p declaration.tsconfig.json", "build:2-add-ignores": "ts-ignore-import '**/*.d.ts' --allow='bunyan-adaptor' --allow='got'", "build": "run-s build:*", "check:installed-check": "installed-check -i @voxpelli/eslint-config -i eslint", "check:knip": "knip", "check:lint": "eslint --report-unused-disable-directives .", "check:tsc": "tsc", "check:type-coverage": "type-coverage --detail --strict --at-least 99 --ignore-files 'test/*'", "check": "run-s clean && run-p check:*", "clean:declarations-top": "rm -rf $(find . -maxdepth 1 -type f -name '*.d.ts*' ! -name 'index.d.ts')", "clean:declarations-lib": "rm -rf $(find lib -type f -name '*.d.ts*' ! -name '*-types.d.ts')", "clean": "run-p clean:*", "prepare": "husky", "prepublishOnly": "run-s build", "test": "run-s check" }, "devDependencies": { "@types/node": "^20.16.5", "@voxpelli/eslint-config": "^21.0.0", "@voxpelli/tsconfig": "^14.0.0", "eslint": "^9.10.0", "husky": "^9.1.6", "installed-check": "^9.3.0", "knip": "^5.30.2", "npm-run-all2": "^6.2.2", "read-pkg": "^9.0.1", "ts-ignore-import": "^4.0.1", "type-coverage": "^2.29.1", "typescript": "~5.5.4", "validate-conventional-commit": "^1.0.4" }, "dependencies": { "async-sema": "^3.1.1", "buffered-async-iterable": "^1.0.0", "bunyan-adaptor": "^6.0.1", "got": "^14.3.0", "pony-cause": "^2.1.11" } }