2022-05-17 01:47:17 +00:00
|
|
|
{
|
|
|
|
"name": "code-analyzer",
|
2022-09-10 21:55:53 +00:00
|
|
|
"version": "0.0.1",
|
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": {
|
2022-09-10 21:55:53 +00:00
|
|
|
"@commander-js/extra-typings": "^0.1.0",
|
|
|
|
"@tsconfig/node16": "^1.0.3",
|
2022-07-14 03:39:38 +00:00
|
|
|
"@types/uuid": "^8.3.4",
|
2022-09-10 21:55:53 +00:00
|
|
|
"cli-core": "workspace:*",
|
|
|
|
"commander": "^9.4.0",
|
|
|
|
"dotenv": "^10.0.0",
|
2022-07-14 03:39:38 +00:00
|
|
|
"simple-git": "^3.10.0",
|
|
|
|
"uuid": "^8.3.2"
|
2022-05-17 01:47:17 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/node": "^16.9.4",
|
2022-10-12 02:05:01 +00:00
|
|
|
"@woocommerce/eslint-plugin": "workspace:*",
|
|
|
|
"eslint": "^8.12.0",
|
2022-05-17 01:47:17 +00:00
|
|
|
"ts-node": "^10.2.1",
|
|
|
|
"tslib": "^2.3.1",
|
2022-09-29 21:59:07 +00:00
|
|
|
"typescript": "^4.8.3"
|
2022-05-17 01:47:17 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2022-10-12 02:05:01 +00:00
|
|
|
"lint": "eslint . --ext .ts",
|
2022-05-17 01:47:17 +00:00
|
|
|
"posttest": "pnpm lint",
|
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": {
|
2022-09-26 22:30:52 +00:00
|
|
|
"node": "^16.13.1",
|
2022-10-10 03:59:51 +00:00
|
|
|
"pnpm": "^7.13.3"
|
2022-05-17 01:47:17 +00:00
|
|
|
},
|
|
|
|
"types": "dist/index.d.ts"
|
|
|
|
}
|