58 lines
1.7 KiB
JSON
58 lines
1.7 KiB
JSON
{
|
|
"name": "@woocommerce/internal-js-tests",
|
|
"version": "1.1.0",
|
|
"description": "JavaScript test tooling.",
|
|
"author": "Automattic",
|
|
"license": "GPL-2.0-or-later",
|
|
"engines": {
|
|
"node": "^16.14.1",
|
|
"pnpm": "^8.6.7"
|
|
},
|
|
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/internal-js-tests/README.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/woocommerce/woocommerce.git",
|
|
"directory": "packages/internal-js-tests"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/woocommerce/woocommerce/issues"
|
|
},
|
|
"private": true,
|
|
"main": "build/util/index.js",
|
|
"module": "build-module/util/index.js",
|
|
"scripts": {
|
|
"turbo:build": "tsc --project tsconfig.json && tsc --project tsconfig-cjs.json",
|
|
"build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name",
|
|
"lint": "eslint --output-file eslint_report.json --format json src",
|
|
"ts:check": "tsc --noEmit --project ./tsconfig.json",
|
|
"clean": "pnpm exec rimraf *.tsbuildinfo build build-*",
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
"lint:fix": "eslint src --fix"
|
|
},
|
|
"dependencies": {
|
|
"@testing-library/jest-dom": "^5.16.2",
|
|
"@testing-library/react": "^12.1.3",
|
|
"@wordpress/data": "wp-6.0",
|
|
"@wordpress/i18n": "wp-6.0",
|
|
"@wordpress/jest-console": "^5.0.1",
|
|
"regenerator-runtime": "^0.13.9"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.17.5",
|
|
"@woocommerce/eslint-plugin": "workspace:*",
|
|
"eslint": "^8.32.0",
|
|
"jest": "^27.5.1",
|
|
"jest-cli": "^27.5.1",
|
|
"resize-observer-polyfill": "1.5.1",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^27.1.3",
|
|
"babel-jest": "^27.5.1",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"lint-staged": {
|
|
"*.(t|j)s?(x)": [
|
|
"pnpm lint:fix"
|
|
]
|
|
}
|
|
}
|