148 lines
3.8 KiB
JSON
148 lines
3.8 KiB
JSON
{
|
|
"name": "@woocommerce/date",
|
|
"version": "4.2.0",
|
|
"description": "WooCommerce date utilities.",
|
|
"author": "Automattic",
|
|
"license": "GPL-3.0-or-later",
|
|
"keywords": [
|
|
"wordpress",
|
|
"woocommerce",
|
|
"date"
|
|
],
|
|
"engines": {
|
|
"node": "^16.14.1",
|
|
"pnpm": "^8.12.1"
|
|
},
|
|
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/date/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",
|
|
"react-native": "src/index",
|
|
"files": [
|
|
"build",
|
|
"build-module",
|
|
"build-types"
|
|
],
|
|
"dependencies": {
|
|
"@types/d3-time-format": "^2.3.4",
|
|
"@wordpress/date": "wp-6.0",
|
|
"@wordpress/i18n": "wp-6.0",
|
|
"moment": "^2.29.4",
|
|
"moment-timezone": "^0.5.43",
|
|
"qs": "^6.11.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.23.5",
|
|
"@types/jest": "^27.5.2",
|
|
"@types/lodash": "^4.14.202",
|
|
"@types/node": "^16.18.68",
|
|
"@types/qs": "^6.9.10",
|
|
"@woocommerce/eslint-plugin": "workspace:*",
|
|
"@woocommerce/internal-js-tests": "workspace:*",
|
|
"concurrently": "^7.6.0",
|
|
"d3-time-format": "^2.3.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"
|
|
},
|
|
"peerDependencies": {
|
|
"lodash": "^4.17.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "WIREIT_LOGGER='quiet-ci' pnpm --if-present --workspace-concurrency=Infinity --stream --filter=\"$npm_package_name...\" build:project",
|
|
"build:project": "pnpm --if-present /^build:project:.*$/",
|
|
"build:project:cjs": "wireit",
|
|
"build:project:esm": "wireit",
|
|
"changelog": "composer install && composer exec -- changelogger",
|
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
|
"lint:fix:lang:js": "eslint src --fix",
|
|
"lint:lang:js": "eslint src",
|
|
"prepack": "pnpm build",
|
|
"test:js": "wireit",
|
|
"watch:build": "WIREIT_LOGGER='quiet-ci' pnpm --if-present --workspace-concurrency=Infinity --filter=\"$npm_package_name...\" --parallel watch:build:project",
|
|
"watch:build:project": "pnpm --if-present run '/^watch:build:project:.*$/'",
|
|
"watch:build:project:cjs": "wireit",
|
|
"watch:build:project:esm": "wireit"
|
|
},
|
|
"lint-staged": {
|
|
"*.(t|j)s?(x)": [
|
|
"pnpm lint:fix",
|
|
"pnpm test-staged"
|
|
]
|
|
},
|
|
"wireit": {
|
|
"build:project:cjs": {
|
|
"command": "tsc --project tsconfig-cjs.json",
|
|
"clean": "if-file-deleted",
|
|
"files": [
|
|
"tsconfig-cjs.json",
|
|
"src/**/*.{js,jsx,ts,tsx}",
|
|
"typings/**/*.ts"
|
|
],
|
|
"output": [
|
|
"build"
|
|
],
|
|
"dependencies": [
|
|
"dependencyOutputs"
|
|
]
|
|
},
|
|
"watch:build:project:cjs": {
|
|
"command": "tsc --project tsconfig-cjs.json --watch",
|
|
"service": true
|
|
},
|
|
"build:project:esm": {
|
|
"command": "tsc --project tsconfig.json",
|
|
"clean": "if-file-deleted",
|
|
"files": [
|
|
"tsconfig.json",
|
|
"src/**/*.{js,jsx,ts,tsx}",
|
|
"typings/**/*.ts"
|
|
],
|
|
"output": [
|
|
"build-module",
|
|
"build-types"
|
|
],
|
|
"dependencies": [
|
|
"dependencyOutputs"
|
|
]
|
|
},
|
|
"watch:build:project:esm": {
|
|
"command": "tsc --project tsconfig.json --watch",
|
|
"service": true
|
|
},
|
|
"test:js": {
|
|
"command": "jest --config ./jest.config.json --passWithNoTests",
|
|
"dependencies": [
|
|
"build:project"
|
|
]
|
|
},
|
|
"dependencyOutputs": {
|
|
"allowUsuallyExcludedPaths": true,
|
|
"files": [
|
|
"node_modules/@woocommerce/internal-js-tests/build",
|
|
"node_modules/@woocommerce/internal-js-tests/build-module",
|
|
"node_modules/@woocommerce/internal-js-tests/jest-preset.js",
|
|
"node_modules/@woocommerce/eslint-plugin/configs",
|
|
"node_modules/@woocommerce/eslint-plugin/rules",
|
|
"node_modules/@woocommerce/eslint-plugin/index.js",
|
|
"package.json"
|
|
]
|
|
}
|
|
}
|
|
}
|