homelab/services/parts-inventory/api/node_modules/dynamic-dedupe/package.json
Dan V deb6c38d7b chore: commit homelab setup — deployment, services, orchestration, skill
- Add .gitignore: exclude compiled binaries, build artifacts, and Helm
  values files containing real secrets (authentik, prometheus)
- Add all Kubernetes deployment manifests (deployment/)
- Add services source code: ha-sync, device-inventory, games-console,
  paperclip, parts-inventory
- Add Ansible orchestration: playbooks, roles, inventory, cloud-init
- Add hardware specs, execution plans, scripts, HOMELAB.md
- Add skills/homelab/SKILL.md + skills/install.sh to preserve Copilot skill
- Remove previously-tracked inventory-cli binary from git index

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-09 08:10:32 +02:00

44 lines
1.1 KiB
JSON

{
"name": "dynamic-dedupe",
"version": "0.3.0",
"description": "Dedupes node modules as they are being required which works even when dependencies are linked via ln -s or npm link.",
"main": "index.js",
"scripts": {
"test-main": "tap test/*.js",
"test-0.8": "nave use 0.8 npm run test-main",
"test-0.10": "nave use 0.10 npm run test-main",
"test-all": "npm run test-main && npm run test-0.8 && npm run test-0.10",
"test": "if [ -e $TRAVIS ]; then npm run test-all; else npm run test-main; fi"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/dynamic-dedupe.git"
},
"homepage": "https://github.com/thlorenz/dynamic-dedupe",
"dependencies": {
"xtend": "^4.0.0"
},
"devDependencies": {
"nave": "~0.4.3",
"tap": "~0.4.3"
},
"keywords": [
"dedupe",
"npm",
"require",
"extension",
"link"
],
"author": {
"name": "Thorsten Lorenz",
"email": "thlorenz@gmx.de",
"url": "http://thlorenz.com"
},
"license": {
"type": "MIT",
"url": "https://github.com/thlorenz/dynamic-dedupe/blob/master/LICENSE"
},
"engine": {
"node": ">=0.6"
}
}