{ "name": "code-analyzer", "version": "0.0.0", "description": "A tool to analyze code changes in WooCommerce Monorepo.", "author": "Automattic", "bin": { "code-analyzer": "./bin/run" }, "homepage": "https://github.com/woocommerce/woocommerce", "license": "GPLv2", "main": "dist/index.js", "repository": "woocommerce/woocommerce", "files": [ "/bin", "/dist", "/npm-shrinkwrap.json", "/oclif.manifest.json" ], "dependencies": { "@oclif/core": "^1", "@oclif/plugin-help": "^5", "@oclif/plugin-plugins": "^2.0.1", "@types/uuid": "^8.3.4", "simple-git": "^3.10.0", "uuid": "^8.3.2" }, "devDependencies": { "@types/node": "^16.9.4", "eslint": "^7.32.0", "globby": "^11", "oclif": "^2", "shx": "^0.3.3", "ts-node": "^10.2.1", "tslib": "^2.3.1", "typescript": "^4.4.3" }, "oclif": { "bin": "code-analyzer", "dirname": "code-analyzer", "commands": "./dist/commands", "plugins": [ "@oclif/plugin-help", "@oclif/plugin-plugins" ], "topicSeparator": " ", "topics": { "analyzer": { "description": "Analyzes code changes in the monorepo." } } }, "scripts": { "turbo:build": "shx rm -rf dist && tsc -b", "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name -- --", "lint": "eslint . --ext .ts --config .eslintrc", "postpack": "shx rm -f oclif.manifest.json", "posttest": "pnpm lint", "prepack": "pnpm build && oclif manifest" }, "engines": { "node": ">=12.0.0" }, "types": "dist/index.d.ts" }