npm-ls-flat
Version:
detects dependency version mismatches for streamlined dependency management
62 lines (61 loc) • 1.43 kB
JSON
{
"name": "npm-ls-flat",
"version": "0.0.5",
"type": "module",
"description": "detects dependency version mismatches for streamlined dependency management",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/**.*"
],
"bin": {
"npm-ls-flat": "dist/index.js"
},
"scripts": {
"format": "biome check --write",
"format:check": "biome check",
"typecheck": "tsc --noEmit",
"build": "tsc",
"check": "npm run format:check && npm run typecheck && npm run test",
"preversion": "npm run check",
"start": "ts-node-esm ./src/index.ts",
"postversion": "git push && git push --tags && npm publish --access public",
"prepublishOnly": "npm run build",
"test": "jest"
},
"author": "Jakub Gereg",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "1.8.0",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.12",
"@types/lodash": "4.17.4",
"@types/node": "20.14.2",
"@types/semver": "7.5.8",
"jest": "29.7.0",
"ts-jest": "29.1.4",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"keywords": [
"npm",
"dependency",
"management",
"flat",
"list",
"ls",
"detect",
"mismatch",
"version",
"npm-ls",
"package",
"invalid",
"check"
],
"dependencies": {
"chalk": "5.3.0",
"fs-extra": "11.2.0",
"lodash": "4.17.21",
"semver": "7.6.2"
}
}