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.",
|
2023-12-06 19:36:12 +00:00
|
|
|
"author": "Automattic",
|
2022-05-17 01:47:17 +00:00
|
|
|
"homepage": "https://github.com/woocommerce/woocommerce",
|
2023-12-06 17:32:32 +00:00
|
|
|
"license": "GPLv2",
|
2023-12-06 19:36:12 +00:00
|
|
|
"repository": "woocommerce/woocommerce",
|
2023-11-02 23:06:59 +00:00
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"scripts": {
|
|
|
|
"analyzer": "node -r ts-node/register ./src/commands/analyzer/index.ts",
|
|
|
|
"lint": "eslint . --ext .ts",
|
|
|
|
"test": "pnpm test:js",
|
|
|
|
"test:js": "jest"
|
|
|
|
},
|
2022-05-17 01:47:17 +00:00
|
|
|
"dependencies": {
|
2023-12-09 15:12:20 +00:00
|
|
|
"@actions/core": "^1.10.1",
|
2023-08-01 01:47:10 +00:00
|
|
|
"@commander-js/extra-typings": "^10.0.3",
|
2023-12-09 15:12:20 +00:00
|
|
|
"@oclif/core": "^2.15.0",
|
|
|
|
"@tsconfig/node16": "^1.0.4",
|
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:*",
|
2023-12-09 15:12:20 +00:00
|
|
|
"commander": "^9.5.0",
|
2022-09-10 21:55:53 +00:00
|
|
|
"dotenv": "^10.0.0",
|
2023-12-09 15:12:20 +00:00
|
|
|
"simple-git": "^3.21.0",
|
2023-03-01 22:36:38 +00:00
|
|
|
"uuid": "^8.3.2"
|
2022-05-17 01:47:17 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-12-09 15:12:20 +00:00
|
|
|
"@types/jest": "^27.5.2",
|
|
|
|
"@types/node": "^16.18.68",
|
2022-10-12 02:05:01 +00:00
|
|
|
"@woocommerce/eslint-plugin": "workspace:*",
|
2023-12-09 15:12:20 +00:00
|
|
|
"eslint": "^8.55.0",
|
2023-12-05 08:36:30 +00:00
|
|
|
"jest": "~27.5.1",
|
|
|
|
"ts-jest": "~29.1.1",
|
2023-12-09 15:12:20 +00:00
|
|
|
"ts-node": "^10.9.2",
|
|
|
|
"tslib": "^2.6.2",
|
2023-10-23 21:05:59 +00:00
|
|
|
"typescript": "^5.3.3",
|
2024-01-15 22:06:55 +00:00
|
|
|
"wireit": "0.14.3"
|
2023-12-06 19:36:12 +00:00
|
|
|
},
|
2022-05-17 01:47:17 +00:00
|
|
|
"engines": {
|
2023-04-25 06:49:30 +00:00
|
|
|
"node": "^16.14.1",
|
2023-12-18 07:31:49 +00:00
|
|
|
"pnpm": "^8.12.1"
|
2024-01-13 04:32:14 +00:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"ci": {
|
|
|
|
"lint": {
|
|
|
|
"command": "lint",
|
|
|
|
"changes": "src/**/*.ts"
|
|
|
|
},
|
|
|
|
"tests": [
|
|
|
|
{
|
|
|
|
"name": "JavaScript",
|
|
|
|
"command": "test:js",
|
|
|
|
"changes": [
|
|
|
|
"jest.config.js",
|
|
|
|
"tsconfig.json",
|
|
|
|
"src/**/*.ts"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2023-11-02 23:06:59 +00:00
|
|
|
}
|
2022-05-17 01:47:17 +00:00
|
|
|
}
|