UNPKG

installed-check-core

Version:

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

82 lines (81 loc) 2.61 kB
{ "name": "installed-check-core", "version": "8.3.1", "description": "Checks that all dependencies in your package.json have supported versions installed", "homepage": "http://github.com/voxpelli/node-installed-check-core", "repository": { "type": "git", "url": "git://github.com/voxpelli/node-installed-check-core.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 -i @voxpelli/semver-set", "check:knip": "knip", "check:lint": "eslint", "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:mocha": "c8 --reporter=lcov --reporter text mocha 'test/**/*.spec.js'", "test-ci": "run-s test:*", "test": "run-s clean check test:*" }, "keywords": [], "author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)", "license": "MIT", "engines": { "node": ">=18.6.0" }, "dependencies": { "@voxpelli/semver-set": "^6.0.0", "@voxpelli/typed-utils": "^1.10.2", "is-glob": "^4.0.3", "list-installed": "^5.3.1", "picomatch": "^4.0.1", "semver": "^7.6.0" }, "devDependencies": { "@types/chai": "^4.3.19", "@types/chai-as-promised": "^7.1.8", "@types/is-glob": "^4.0.4", "@types/mocha": "^10.0.8", "@types/node": "^18.19.50", "@types/picomatch": "^3.0.1", "@types/semver": "^7.5.8", "@voxpelli/eslint-config": "^21.0.0", "@voxpelli/tsconfig": "^14.0.0", "c8": "^10.1.2", "chai": "^4.5.0", "chai-as-promised": "^7.1.2", "desm": "^1.3.1", "eslint": "^9.10.0", "expect-type": "^0.20.0", "husky": "^9.1.6", "installed-check": "^9.3.0", "knip": "^5.30.2", "mocha": "^10.7.3", "npm-run-all2": "^6.2.2", "read-pkg": "^9.0.1", "tempy": "^3.1.0", "type-coverage": "^2.29.1", "typescript": "~5.5.4", "validate-conventional-commit": "^1.0.4" } }