2022-05-17 01:47:17 +00:00
|
|
|
{
|
|
|
|
"name": "code-analyzer",
|
2023-08-01 01:47:10 +00:00
|
|
|
"version": "1.0.0",
|
2022-05-17 01:47:17 +00:00
|
|
|
"description": "A tool to analyze code changes in WooCommerce Monorepo.",
|
|
|
|
"author": "Automattic",
|
|
|
|
"homepage": "https://github.com/woocommerce/woocommerce",
|
|
|
|
"license": "GPLv2",
|
|
|
|
"repository": "woocommerce/woocommerce",
|
|
|
|
"dependencies": {
|
2023-03-01 22:36:38 +00:00
|
|
|
"@actions/core": "^1.10.0",
|
2023-08-01 01:47:10 +00:00
|
|
|
"@commander-js/extra-typings": "^10.0.3",
|
2023-03-01 22:36:38 +00:00
|
|
|
"@oclif/core": "^2.4.0",
|
2022-09-10 21:55:53 +00:00
|
|
|
"@tsconfig/node16": "^1.0.3",
|
2022-07-14 03:39:38 +00:00
|
|
|
"@types/uuid": "^8.3.4",
|
2023-08-09 01:05:00 +00:00
|
|
|
"@woocommerce/monorepo-utils": "workspace:*",
|
2022-09-10 21:55:53 +00:00
|
|
|
"commander": "^9.4.0",
|
|
|
|
"dotenv": "^10.0.0",
|
2022-07-14 03:39:38 +00:00
|
|
|
"simple-git": "^3.10.0",
|
2023-03-01 22:36:38 +00:00
|
|
|
"uuid": "^8.3.2"
|
2022-05-17 01:47:17 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-08-09 01:05:00 +00:00
|
|
|
"@types/jest": "^27.4.1",
|
2023-03-24 01:02:20 +00:00
|
|
|
"@types/node": "^16.18.18",
|
2022-10-12 02:05:01 +00:00
|
|
|
"@woocommerce/eslint-plugin": "workspace:*",
|
2023-02-02 10:25:04 +00:00
|
|
|
"eslint": "^8.32.0",
|
2023-08-09 01:05:00 +00:00
|
|
|
"jest": "^29.6.2",
|
|
|
|
"ts-jest": "^29.1.1",
|
2022-05-17 01:47:17 +00:00
|
|
|
"ts-node": "^10.2.1",
|
|
|
|
"tslib": "^2.3.1",
|
2023-08-08 04:35:31 +00:00
|
|
|
"typescript": "^5.1.6"
|
2022-05-17 01:47:17 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2022-10-12 02:05:01 +00:00
|
|
|
"lint": "eslint . --ext .ts",
|
2023-08-09 01:05:00 +00:00
|
|
|
"turbo:test": "jest",
|
|
|
|
"test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name",
|
2022-09-10 21:55:53 +00:00
|
|
|
"analyzer": "node -r ts-node/register ./src/commands/analyzer/index.ts"
|
2022-05-17 01:47:17 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2023-04-25 06:49:30 +00:00
|
|
|
"node": "^16.14.1",
|
2023-07-18 02:27:18 +00:00
|
|
|
"pnpm": "^8.6.7"
|
2022-05-17 01:47:17 +00:00
|
|
|
},
|
|
|
|
"types": "dist/index.d.ts"
|
|
|
|
}
|