UNPKG

list-installed

Version:

Checks that all dependencies in your package.json have supported versions installed

79 lines (78 loc) 2.44 kB
{ "name": "list-installed", "version": "5.3.1", "description": "Checks that all dependencies in your package.json have supported versions installed", "homepage": "http://github.com/voxpelli/list-installed", "repository": { "type": "git", "url": "git://github.com/voxpelli/list-installed.git" }, "type": "module", "exports": "./index.js", "types": "index.d.ts", "files": [ "/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": "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 100 --ignore-files 'test/*'", "check": "run-s clean && run-p check:*", "clean:declarations": "rm -rf $(find . -maxdepth 2 -type f -name '*.d.ts*')", "clean": "run-p clean:*", "prepare": "husky", "prepublishOnly": "run-s build", "test:mocha": "c8 --reporter=lcov --reporter text mocha 'test/**/*.spec.js'", "test-ci": "run-s test:*", "test": "run-s check test:*" }, "keywords": [], "author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)", "license": "0BSD", "engines": { "node": ">=18.6.0" }, "dependencies": { "buffered-async-iterable": "^1.0.1", "pony-cause": "^2.1.10", "read-pkg": "^9.0.1", "read-workspaces": "^1.2.0" }, "devDependencies": { "@types/chai": "^4.3.16", "@types/chai-as-promised": "^7.1.8", "@types/chai-quantifiers": "^1.0.4", "@types/mocha": "^10.0.7", "@types/node": "^18.19.39", "@types/sinon": "^17.0.3", "@types/sinon-chai": "^3.2.12", "@voxpelli/eslint-config": "^20.0.0-beta.3", "@voxpelli/tsconfig": "^12.0.1", "c8": "^10.1.2", "chai": "^4.4.1", "chai-as-promised": "^7.1.2", "chai-quantifiers": "^1.0.18", "desm": "^1.3.1", "eslint": "^9.5.0", "husky": "^9.0.11", "installed-check": "^9.3.0", "knip": "^5.23.0", "mocha": "^10.5.1", "npm-run-all2": "^6.2.0", "sinon": "^18.0.0", "sinon-chai": "^3.7.0", "type-coverage": "^2.29.0", "typescript": "~5.5.2", "validate-conventional-commit": "^1.0.3" } }