woocommerce/tools/code-analyzer/package.json

45 lines
1.2 KiB
JSON
Raw Normal View History

{
"name": "code-analyzer",
"version": "1.0.0",
"description": "A tool to analyze code changes in WooCommerce Monorepo.",
"author": "Automattic",
"homepage": "https://github.com/woocommerce/woocommerce",
"license": "GPLv2",
"repository": "woocommerce/woocommerce",
"dependencies": {
"@actions/core": "^1.10.0",
"@commander-js/extra-typings": "^10.0.3",
"@oclif/core": "^2.4.0",
"@tsconfig/node16": "^1.0.3",
"@types/uuid": "^8.3.4",
"@woocommerce/monorepo-utils": "workspace:*",
"commander": "^9.4.0",
"dotenv": "^10.0.0",
"simple-git": "^3.10.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^16.18.18",
"@woocommerce/eslint-plugin": "workspace:*",
"eslint": "^8.32.0",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
2023-08-08 04:35:31 +00:00
"typescript": "^5.1.6"
},
"scripts": {
"lint": "eslint . --ext .ts",
"turbo:test": "jest",
"test": "pnpm test:js",
"test:js": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name",
"analyzer": "node -r ts-node/register ./src/commands/analyzer/index.ts"
},
"engines": {
"node": "^16.14.1",
"pnpm": "^8.6.7"
},
"types": "dist/index.d.ts"
}