2021-07-14 20:38:57 +00:00
|
|
|
{
|
2022-05-31 22:42:00 +00:00
|
|
|
"name": "@woocommerce/internal-js-tests",
|
2021-07-14 20:38:57 +00:00
|
|
|
"version": "1.1.0",
|
|
|
|
"description": "JavaScript test tooling.",
|
2023-12-06 19:36:12 +00:00
|
|
|
"author": "Automattic",
|
|
|
|
"license": "GPL-2.0-or-later",
|
|
|
|
"engines": {
|
|
|
|
"node": "^16.14.1",
|
|
|
|
"pnpm": "^8.6.7"
|
2023-12-06 17:32:32 +00:00
|
|
|
},
|
2023-12-06 19:36:12 +00:00
|
|
|
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/internal-js-tests/README.md",
|
2021-07-14 20:38:57 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-04-07 08:50:40 +00:00
|
|
|
"url": "https://github.com/woocommerce/woocommerce.git",
|
2022-05-31 22:42:00 +00:00
|
|
|
"directory": "packages/internal-js-tests"
|
2021-07-14 20:38:57 +00:00
|
|
|
},
|
2023-12-06 19:36:12 +00:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/woocommerce/woocommerce/issues"
|
|
|
|
},
|
|
|
|
"private": true,
|
2021-07-14 20:38:57 +00:00
|
|
|
"main": "build/util/index.js",
|
2022-03-04 04:01:16 +00:00
|
|
|
"module": "build-module/util/index.js",
|
2021-07-14 20:38:57 +00:00
|
|
|
"scripts": {
|
2023-11-02 21:49:41 +00:00
|
|
|
"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",
|
|
|
|
"watch:build": "pnpm run build:project --watch"
|
2022-03-04 04:01:16 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-12-05 08:36:30 +00:00
|
|
|
"@testing-library/jest-dom": "5.16.2",
|
|
|
|
"@testing-library/react": "12.1.3",
|
2023-03-08 21:13:25 +00:00
|
|
|
"@wordpress/data": "wp-6.0",
|
|
|
|
"@wordpress/i18n": "wp-6.0",
|
2023-12-09 15:12:20 +00:00
|
|
|
"@wordpress/jest-console": "^5.4.0",
|
|
|
|
"regenerator-runtime": "^0.13.11"
|
2022-03-15 03:04:46 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-12-09 15:12:20 +00:00
|
|
|
"@babel/core": "^7.23.5",
|
2022-04-26 23:16:35 +00:00
|
|
|
"@woocommerce/eslint-plugin": "workspace:*",
|
2023-12-09 15:12:20 +00:00
|
|
|
"babel-jest": "~27.5.1",
|
|
|
|
"eslint": "^8.55.0",
|
2023-12-05 08:36:30 +00:00
|
|
|
"jest": "~27.5.1",
|
|
|
|
"jest-cli": "~27.5.1",
|
2023-02-28 18:10:12 +00:00
|
|
|
"resize-observer-polyfill": "1.5.1",
|
2022-03-15 03:04:46 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2023-12-05 08:36:30 +00:00
|
|
|
"ts-jest": "~29.1.1",
|
2023-10-23 21:05:59 +00:00
|
|
|
"typescript": "^5.3.3",
|
|
|
|
"wireit": "^0.14.1"
|
2023-12-06 17:32:32 +00:00
|
|
|
},
|
2023-12-06 19:36:12 +00:00
|
|
|
"lint-staged": {
|
|
|
|
"*.(t|j)s?(x)": [
|
|
|
|
"pnpm lint:fix"
|
|
|
|
]
|
2023-11-02 21:49:41 +00:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
],
|
|
|
|
"dependencies": [
|
|
|
|
"dependencyOutputs"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"dependencyOutputs": {
|
|
|
|
"allowUsuallyExcludedPaths": true,
|
|
|
|
"files": [
|
|
|
|
"required"
|
|
|
|
]
|
|
|
|
}
|
2021-07-14 20:38:57 +00:00
|
|
|
}
|
2023-11-02 21:49:41 +00:00
|
|
|
}
|