{ "name": "version-guard", "version": "1.1.2", "description": "Used to ensure modern CLI scripts fail silently on old js versions. Useful for static analysis tools and similar", "homepage": "http://github.com/voxpelli/version-guard", "repository": { "type": "git", "url": "git://github.com/voxpelli/version-guard.git" }, "main": "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 --ignore-dev", "check:lint": "eslint --report-unused-disable-directives .", "check:tsc": "tsc", "check:type-coverage": "type-coverage --detail --strict --at-least 95", "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-ci": "node test/run.js && node test/bin/run.js", "test": "run-s check test-ci" }, "keywords": [], "author": "Pelle Wessman (http://kodfabrik.se/)", "license": "0BSD", "engines": { "node": ">=0.10.48" }, "devDependencies": { "@types/node": "^14.18.63", "@voxpelli/eslint-config": "^19.0.0", "@voxpelli/tsconfig": "^11.0.0", "eslint": "^8.57.0", "eslint-plugin-es-x": "^7.6.0", "eslint-plugin-import": "^2.29.1", "eslint-plugin-jsdoc": "^46.10.1", "eslint-plugin-mocha": "^10.4.1", "eslint-plugin-n": "^16.6.2", "eslint-plugin-promise": "^6.1.1", "eslint-plugin-security": "^1.7.1", "eslint-plugin-sort-destructure-keys": "^1.5.0", "eslint-plugin-unicorn": "^48.0.1", "husky": "^9.0.11", "installed-check": "^9.1.1", "npm-run-all2": "^6.1.2", "type-coverage": "^2.28.1", "typescript": "~5.4.4" } }