{
  "name": "depdrift",
  "version": "0.1.0",
  "description": "A tool to analyze dependency drift in JavaScript projects",
  "type": "module",
  "main": "src/index.js",
  "bin": {
    "depdrift": "bin/depdrift"
  },
  "scripts": {
    "start": "node bin/depdrift",
    "test": "NODE_OPTIONS=--experimental-vm-modules jest --config=jest.config.mjs",
    "test:ci": "NODE_OPTIONS=--experimental-vm-modules jest --config=jest.config.mjs --testPathIgnorePatterns=test/integration",
    "test:cli": "NODE_OPTIONS=--experimental-vm-modules jest --config=jest.config.mjs test/unit/cli",
    "test:graphbuilder": "node test/run-graphbuilder-tests.js",
    "test:graphbuilder:unit": "node test/run-graphbuilder-tests.js --unit",
    "test:graphbuilder:integration": "node test/run-graphbuilder-tests.js --integration",
    "test:graphbuilder:performance": "node test/run-graphbuilder-tests.js --performance",
    "test:graphbuilder:coverage": "node test/run-graphbuilder-tests.js --all --coverage",
    "self-analyze": "node bin/depdrift",
    "lint": "eslint src",
    "prepublishOnly": "npm run test:ci"
  },
  "keywords": [
    "dependencies",
    "drift",
    "npm",
    "analysis",
    "outdated",
    "security",
    "vulnerabilities",
    "version",
    "dependency-management",
    "dependency-check"
  ],
  "author": "Tirtha Sarker",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tirtha4/DepDrift.git"
  },
  "bugs": {
    "url": "https://github.com/tirtha4/DepDrift/issues"
  },
  "homepage": "https://github.com/tirtha4/DepDrift#readme",
  "files": [
    "bin/",
    "src/",
    "LICENSE",
    "README.md"
  ],
  "dependencies": {
    "axios": "^1.6.8",
    "chalk": "^4.1.2",
    "cli-table3": "^0.6.3",
    "fs-extra": "^11.2.0",
    "glob": "^10.4.5",
    "semver": "^7.6.0",
    "yargs": "^17.7.2"
  },
  "devDependencies": {
    "@babel/core": "^7.27.1",
    "@babel/plugin-transform-modules-commonjs": "^7.27.1",
    "@babel/preset-env": "^7.27.1",
    "@npmcli/arborist": "^8.0.0",
    "babel-jest": "^29.7.0",
    "eslint": "^9.25.1",
    "jest": "^29.7.0"
  },
  "engines": {
    "node": ">=14.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
