{ "name": "@woocommerce/explat", "version": "2.3.0", "description": "WooCommerce component and utils for A/B testing.", "author": "Automattic", "license": "GPL-2.0-or-later", "engines": { "node": "^16.14.1", "pnpm": "^8.6.7" }, "keywords": [ "wordpress", "woocommerce", "abtest", "explat" ], "homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/explat/README.md", "repository": { "type": "git", "url": "https://github.com/woocommerce/woocommerce.git" }, "bugs": { "url": "https://github.com/woocommerce/woocommerce/issues" }, "main": "build/index.js", "module": "build-module/index.js", "types": "build-types", "scripts": { "build": "pnpm --if-present --filter=\"$npm_package_name...\" run build:project", "build:project": "pnpm --if-present run /^build:project:.*$/", "build:project:cjs": "wireit", "build:project:esm": "wireit", "changelog": "composer install && composer exec -- changelogger", "lint": "pnpm --if-present run '/^lint:lang:.*$/'", "lint:fix": "pnpm --if-present run '/^lint:fix:lang:.*$/'", "lint:fix:lang:js": "eslint src --fix", "lint:lang:js": "eslint --output-file eslint_report.json --format json src", "prepack": "pnpm run build", "test": "pnpm --if-present run '/^test:lang:.*$/'", "test:lang:js": "wireit", "watch:build": "pnpm run build:project --watch" }, "lint-staged": { "*.(t|j)s?(x)": [ "pnpm lint:fix", "pnpm test-staged" ] }, "dependencies": { "@automattic/explat-client": "^0.0.3", "@automattic/explat-client-react-helpers": "^0.0.4", "@wordpress/api-fetch": "wp-6.0", "@wordpress/hooks": "wp-6.0", "cookie": "^0.4.2", "qs": "^6.11.2" }, "devDependencies": { "@babel/core": "^7.23.5", "@types/cookie": "^0.4.1", "@types/jest": "^27.5.2", "@types/node": "^16.18.68", "@types/qs": "^6.9.10", "@types/react": "^17.0.71", "@woocommerce/eslint-plugin": "workspace:*", "@woocommerce/internal-js-tests": "workspace:*", "concurrently": "^7.6.0", "eslint": "^8.55.0", "jest": "~27.5.1", "jest-cli": "~27.5.1", "rimraf": "^3.0.2", "ts-jest": "~29.1.1", "typescript": "^5.3.3", "wireit": "^0.14.1" }, "publishConfig": { "access": "public" }, "wireit": { "build:project:cjs": { "command": "tsc --project tsconfig-cjs.json", "files": [ "tsconfig-cjs.json", "src/**/*.{js,jsx,ts,tsx}", "typings/**/*.ts" ], "output": [ "build" ], "dependencies": [ "dependencyOutputs" ] }, "build:project:esm": { "command": "tsc --project tsconfig.json", "files": [ "tsconfig.json", "src/**/*.{js,jsx,ts,tsx}", "typings/**/*.ts" ], "output": [ "build-module", "./build-types" ], "dependencies": [ "dependencyOutputs" ] }, "test:lang:js": { "command": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name", "dependencies": [ "build:project" ] }, "dependencyOutputs": { "allowUsuallyExcludedPaths": true, "files": [ "required" ] } } }