2018-04-17 21:03:14 +00:00
|
|
|
{
|
2020-02-14 02:23:21 +00:00
|
|
|
"name": "@woocommerce/admin-library",
|
2020-03-19 19:05:58 +00:00
|
|
|
"version": "1.0.3",
|
2020-02-14 02:23:21 +00:00
|
|
|
"homepage": "https://woocommerce.github.io/woocommerce-admin/",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com:woocommerce/woocommerce-admin.git"
|
|
|
|
},
|
|
|
|
"license": "GPL-3.0-or-later",
|
|
|
|
"author": "Automattic",
|
|
|
|
"files": [
|
|
|
|
"dist/**/*.css",
|
|
|
|
"dist/**/*.js",
|
|
|
|
"dist/feature-config-core.php",
|
|
|
|
"includes/class-wc-admin-loader.php",
|
|
|
|
"includes/features/**/*.php",
|
|
|
|
"languages/**/*.json",
|
|
|
|
"license.txt"
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"prebuild": "npm run -s install-if-deps-outdated && php ./bin/update-version.php",
|
|
|
|
"build": "npm run build:feature-config && npm run build:packages && cross-env NODE_ENV=production webpack",
|
|
|
|
"postbuild": "npm run -s i18n:pot && npm run -s i18n:build",
|
|
|
|
"build:feature-config": "php bin/generate-feature-config.php",
|
|
|
|
"build:packages": "node ./bin/packages/build.js",
|
|
|
|
"build:release": "./bin/build-plugin-zip.sh",
|
|
|
|
"clean": "rimraf ./dist ./packages/*/build ./packages/*/build-module ./packages/*/build-style",
|
|
|
|
"predev": "npm run -s install-if-deps-outdated && php ./bin/update-version.php",
|
|
|
|
"dev": "cross-env WC_ADMIN_PHASE=development npm run build:feature-config && cross-env WC_ADMIN_PHASE=development npm run build:packages && cross-env WC_ADMIN_PHASE=development webpack",
|
|
|
|
"docs": "node ./bin/generate-docs",
|
|
|
|
"i18n": "npm run -s i18n:js && npm run -s i18n:check && npm run -s i18n:pot && npm run -s i18n:build",
|
|
|
|
"i18n:build": "php bin/combine-pot-files.php languages/woocommerce-admin.po languages/woocommerce-admin.pot",
|
|
|
|
"i18n:check": "grunt checktextdomain",
|
|
|
|
"i18n:js": "npm run clean && cross-env NODE_ENV=production babel client packages -o /dev/null",
|
|
|
|
"i18n:json": "./bin/make-i18n-json.sh",
|
|
|
|
"i18n:pot": "grunt makepot",
|
|
|
|
"install-if-deps-outdated": "node bin/install-if-deps-outdated.js",
|
|
|
|
"install-if-no-packages": "node bin/install-if-no-packages.js",
|
|
|
|
"jest:update": "jest -u --config=tests/js/jest.config.json",
|
|
|
|
"lint": "npm run lint:js && npm run lint:css",
|
|
|
|
"lint:css": "stylelint '**/*.scss'",
|
|
|
|
"lint:css-fix": "stylelint '**/*.scss' --fix",
|
|
|
|
"lint:js": "eslint packages --ext=js,jsx && eslint client --ext=js,jsx",
|
|
|
|
"lint:js-fix": "eslint packages --ext=js,jsx --fix && eslint client --ext=js,jsx --fix",
|
|
|
|
"lint:php": "./vendor/bin/phpcs --standard=phpcs.xml.dist $(git ls-files | grep .php$)",
|
|
|
|
"lint:php-fix": "./vendor/bin/phpcbf --standard=phpcs.xml.dist $(git ls-files | grep .php$)",
|
|
|
|
"reformat-files": "prettier --ignore-path .eslintignore --write \"**/*.{js,jsx,json,ts,tsx}\"",
|
|
|
|
"prepack": "npm install && npm run lint && npm run test && cross-env WC_ADMIN_PHASE=core npm run build",
|
|
|
|
"publish-packages:check": "npm run build:packages && lerna updated",
|
|
|
|
"publish-packages:dev": "npm run build:packages && lerna publish from-package --npm-tag next",
|
|
|
|
"publish-packages:prod": "npm run build:packages && lerna publish from-package",
|
|
|
|
"postshrinkwrap": "replace --silent 'http://' 'https://' ./package-lock.json",
|
|
|
|
"prestart": "npm run -s install-if-deps-outdated && php ./bin/update-version.php",
|
|
|
|
"start": "cross-env WC_ADMIN_PHASE=development npm run build:packages && cross-env WC_ADMIN_PHASE=development npm run build:feature-config && concurrently \"cross-env WC_ADMIN_PHASE=development webpack --watch\" \"node ./bin/packages/watch.js\"",
|
|
|
|
"pretest": "npm run -s install-if-no-packages",
|
|
|
|
"test": "wp-scripts test-unit-js --config tests/js/jest.config.json",
|
|
|
|
"test:help": "wp-scripts test-unit-js --help",
|
|
|
|
"test:update-snapshots": "jest --updateSnapshot --config tests/js/jest.config.json",
|
|
|
|
"test:watch": "npm run test -- --watch",
|
Merge final `version/1.0` branch with `master` (https://github.com/woocommerce/woocommerce-admin/pull/3848)
* Try: Moving Customers to main Woo Menu (https://github.com/woocommerce/woocommerce-admin/pull/3632)
* Only add onboarding settings on wc-admin pages when task list should be shown. (https://github.com/woocommerce/woocommerce-admin/pull/3722)
* Use cron for unsnoozing admin notes (https://github.com/woocommerce/woocommerce-admin/pull/3662)
* Use wp-cron for admin note snoozing.
* Remove "unsnooze" scheduled action.
* Use correct version.
* Avoid using deprecated method for unscheduling actions.
* Onboarding: Fix toggle tracking events (https://github.com/woocommerce/woocommerce-admin/pull/3645)
* Fix errant wcadmin prefix on event name
* Track the onboarding toggle on the option in case enable_onboarding isn't used
* Move toggle actions to separate function
* Move onboarding actions
* Move onboarding filters
* Move help tab updates to add_toggle_actions
* Only run onboarding actions when enabled
* Onboarding: Add tracks events when profiler steps are completed (https://github.com/woocommerce/woocommerce-admin/pull/3726)
* Add tracks for store profiler step completion
* Record event when profiler is completed
* Ensure continue setup loads the onboarding profiler (https://github.com/woocommerce/woocommerce-admin/pull/3646)
* 'All that include' option removed when input field is empty (https://github.com/woocommerce/woocommerce-admin/pull/3700)
* 'All that include' option removed when input field is empty
Added a control to check that when the input field 'Search by customer name' is empty, the 'All that include' option is not appearing.
* Const name improved
The constant name hasValues was changed to optionsHaveValues (more descriptive)
* Fix select text alignment (https://github.com/woocommerce/woocommerce-admin/pull/3723)
* Stock panel indicator - cache and use lookup tables. (https://github.com/woocommerce/woocommerce-admin/pull/3729)
* Stock panel indicator - cache and use lookup tables.
* Revise query, clear transient on product update.
* Fix error, ht Josh.
* Checklist: Remove sideloaded images to reduce build size, take 2 (https://github.com/woocommerce/woocommerce-admin/pull/3731)
* Remove homepage template images.
* Use other-small on all industries, adjust text color.
* Remove background dim and opacity set to 0
* Fix/3631 (https://github.com/woocommerce/woocommerce-admin/pull/3730)
* Added CBD as an industry type
CBD was added as an industry type in API
* Industries options modified
Modified the industries options. Now we are able to choose if we will use an input or not in the option.
* API control changed for industries.
API control changed for industries. Now it accepts the data type we need.
* Added input in Industries list for the option "Other"
Added an input for the option "Other" in the industries list
* Added suggested changes in review comments.
* Added data preparation for recordEvent
* Changed variable to snake_case
The variable "industriesWithDetail" was changed to "industries_with_detail" (snake_case)
* Onboarding: Create homepage without redirect (https://github.com/woocommerce/woocommerce-admin/pull/3727)
* Add link to edit homepage instead of redirect
* Add busy state to homepage creation button
* Publish homepage on create via API
* Update homepage notice to show on first post update
* Update homepage creation notice per design
* Record event on customize homepage
* Set homepage to frontpage on creation
* Add deactivation note for feature plugin (https://github.com/woocommerce/woocommerce-admin/pull/3687)
* Add version deactivation note
* Add the note to deactivate if the version is older than the current WC version
* Deactivate wc admin feature plugin on action click
* Add notes version hooks
* change the Package class namespace to exclude from standalone autoloader
* add use statement for FeaturePlugin
* add note explaining namespace
* use wc-admin-deactivate-plugin note name
* Rename file and class to WC_Admin_Notes_Deactivate_Plugin
Co-authored-by: Ron Rennick <ron@ronandandrea.com>
Co-authored-by: Paul Sealock <psealock@gmail.com>
* Add Travis tests on GH for release branch (https://github.com/woocommerce/woocommerce-admin/pull/3751)
* Add Travis tests on GH for release branch
* fix linter errors
* ActivityPanels.php -> use public static functions
* Remove free text Search option when no query exists (https://github.com/woocommerce/woocommerce-admin/pull/3755)
* Revert changes in woocommerce/woocommerce-admin#3700
* Don't add free text search if no query exists
* Add tests for Search without query
* Add test for showing free text search option
* Fix image sideloading for store industries. (https://github.com/woocommerce/woocommerce-admin/pull/3743)
* Fix image sideloading for store industries.
Data format changed in https://github.com/woocommerce/woocommerce-admin/pull/3730
* Fix industry image sideload in cases where the count is less than requested.
* Be backwards compatible with the old industry data format.
* Added event props to identify stores with WCS and Jetpack installed (https://github.com/woocommerce/woocommerce-admin/pull/3750)
* Added event props to identify stores with WCS and Jetpack installed
Also, added Jeckpack connected status
* Improved variable name
* Simplified method
Simplified method. "intersection" check was removed
* Tests errors repeared
The method "clear_low_out_of_stock_count_transient" now is static.
* OBW: fix sideloading image test error (https://github.com/woocommerce/woocommerce-admin/pull/3762)
* Release 0.26.0 changes (https://github.com/woocommerce/woocommerce-admin/pull/3753)
* add deactivation hook to Package.php (https://github.com/woocommerce/woocommerce-admin/pull/3770)
* Add active version functions (https://github.com/woocommerce/woocommerce-admin/pull/3772)
* add active version functions to Package.php
Co-authored-by: Joshua T Flowers <joshuatf@gmail.com>
* 0.26.1 changes (https://github.com/woocommerce/woocommerce-admin/pull/3773)
* Customers Report: fix missing report param in search (https://github.com/woocommerce/woocommerce-admin/pull/3778)
* Product titles include encoded entities (https://github.com/woocommerce/woocommerce-admin/pull/3765)
* Stripped HTML from product titles and decoded before displaying them
Stripped html from product titles and entities are decoded before displaying them
* Stripped HTML from product titles and decoded in Stock report
Stripped html from product titles and entities are decoded before displaying them. Now in Stock report
* Added support for HTML tags and encoded entities on product titles
Added support for HTML tags and encoded entities on filtered product list, dropdown menus and tag names.
Also, strip_tags() function was replaced with wp_strip_all_tags() instead.
* strip_tags() function was replaced with wp_strip_all_tags() instead.
* Added control for a variable
Added control for "item->data" before applying wp_strip_all_tags method.
* pre-commit changes
* Test text corrected
* Enable taxes on automatic tax setup (https://github.com/woocommerce/woocommerce-admin/pull/3795)
* Update Country Labeling to Match Core (https://github.com/woocommerce/woocommerce-admin/pull/3790)
* Updated country labeling
Country labeling on Customer Report was updated
* Updated country labeling in other files
* remove .jitm-card notice padding (https://github.com/woocommerce/woocommerce-admin/pull/3814)
* OBW Connect: Fix requesting state (https://github.com/woocommerce/woocommerce-admin/pull/3786)
* OBW Connect: Fix requesting state
* pass down setIsPending
* setIspending propType
* defaultProps
* test
* Revert "test"
This reverts commit e921092b19401931cc1aec8ee84fa53c53b67f36.
* better comparison for redirect
* Fixes Taxes Report search bug and adds initial documentation. (https://github.com/woocommerce/woocommerce-admin/pull/3816)
* Initial Taxes Report documentation.
* Fix taxes endpoint search parameter.
* OBW: Fix retry plugin install button disappearing (https://github.com/woocommerce/woocommerce-admin/pull/3787)
* OBW: Fix retry plugin install btn disappearing
* try suggestion
* Revert "try suggestion"
This reverts commit 5b9386957a501ac3e729e5f16b0ee71c9d792859.
* Fix special character escaping in search. (https://github.com/woocommerce/woocommerce-admin/pull/3826)
* Properly prepare/escape special characters in Product search.
* Properly prepare/escape special characters in Coupon search.
* Properly prepare/escape special characters in Tax code search.
* Fix tracking on migrated options (https://github.com/woocommerce/woocommerce-admin/pull/3828)
* Don't track onboarding toggle if migrating options
* Prevent WC_Tracks from recording event post types not yet registered
* Activity Panels: Remove W Panel (https://github.com/woocommerce/woocommerce-admin/pull/3827)
* Remove W Notif Panel.
* Add back in trapping logic, and hide on non-embed pages.
* add npm run test:zip command (https://github.com/woocommerce/woocommerce-admin/pull/3823)
* add npm run test:zip command
* 1.0.0 release changes🎉 (https://github.com/woocommerce/woocommerce-admin/pull/3831)
* 1.0.0 release changes🎉
* changelog
* 0.26.1 changelog
* Add Report Extension Example: Add default props to ReportFilters (https://github.com/woocommerce/woocommerce-admin/pull/3830)
* ReportFilters component: Add sane defaults
* styles
* add required column
* add left join to sku ordering (https://github.com/woocommerce/woocommerce-admin/pull/3845)
* Deal with lint errors, and improperly merged files
* regenerate package-lock.json
* attempting to resolve package lock conflict.
Co-authored-by: Jeff Stieler <jeff.m.stieler@gmail.com>
Co-authored-by: Joshua T Flowers <joshuatf@gmail.com>
Co-authored-by: Ron Rennick <ron@ronandandrea.com>
Co-authored-by: Fernando <ultimoround@gmail.com>
Co-authored-by: edmundcwm <edmundcwm@gmail.com>
Co-authored-by: Paul Sealock <psealock@gmail.com>
2020-03-10 02:47:39 +00:00
|
|
|
"test:zip": "./bin/build-test-zip.sh",
|
2020-02-14 02:23:21 +00:00
|
|
|
"example": "webpack --config docs/examples/extensions/examples.config.js --watch",
|
|
|
|
"pre-release": "./bin/pre-release.sh",
|
2020-02-24 02:25:26 +00:00
|
|
|
"create-wc-extension": "node ./bin/starter-pack/starter-pack.js",
|
|
|
|
"storybook": "start-storybook -c ./storybook -p 6007 --ci",
|
2020-03-12 21:21:11 +00:00
|
|
|
"build-storybook": "build-storybook -c ./storybook",
|
|
|
|
"changelog": "node ./bin/changelog --changelogSrcType='ZENHUB_RELEASE'"
|
|
|
|
},
|
|
|
|
"changelog": {
|
|
|
|
"labelPrefix": "[Type]",
|
|
|
|
"skipLabel": "skip-changelog",
|
|
|
|
"defaultPrefix": "dev",
|
|
|
|
"repo": "woocommerce/woocommerce-admin"
|
2020-02-14 02:23:21 +00:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged",
|
|
|
|
"pre-push": "npm run -s install-if-no-packages && node bin/pre-push-hook.js"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.scss": [
|
|
|
|
"npm run lint:css"
|
|
|
|
],
|
|
|
|
"*.js": [
|
|
|
|
"prettier --write",
|
|
|
|
"npm run lint:js"
|
|
|
|
],
|
|
|
|
"*.php": [
|
|
|
|
"php -d display_errors=1 -l",
|
|
|
|
"composer run-script phpcs"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@fresh-data/framework": "0.6.1",
|
|
|
|
"@wordpress/api-fetch": "2.2.8",
|
|
|
|
"@wordpress/components": "8.5.0",
|
2020-03-24 00:43:32 +00:00
|
|
|
"@wordpress/data": "4.14.2",
|
2020-02-14 02:23:21 +00:00
|
|
|
"@wordpress/date": "3.8.0",
|
|
|
|
"@wordpress/dom": "2.8.0",
|
|
|
|
"@wordpress/element": "2.11.0",
|
|
|
|
"@wordpress/hooks": "2.7.0",
|
|
|
|
"@wordpress/html-entities": "2.6.0",
|
|
|
|
"@wordpress/i18n": "3.9.0",
|
|
|
|
"@wordpress/keycodes": "2.9.0",
|
|
|
|
"@wordpress/notices": "1.12.0",
|
|
|
|
"@wordpress/scripts": "3.4.0",
|
2020-02-27 14:14:31 +00:00
|
|
|
"@wordpress/url": "2.11.0",
|
2020-03-24 00:43:32 +00:00
|
|
|
"@wordpress/viewport": "2.13.2",
|
2020-02-14 02:23:21 +00:00
|
|
|
"browser-filesaver": "1.1.1",
|
|
|
|
"classnames": "2.2.6",
|
|
|
|
"core-js": "2.6.11",
|
|
|
|
"d3-axis": "1.0.12",
|
|
|
|
"d3-format": "1.4.3",
|
|
|
|
"d3-scale": "2.2.2",
|
|
|
|
"d3-scale-chromatic": "1.5.0",
|
|
|
|
"d3-selection": "1.4.1",
|
|
|
|
"d3-shape": "1.3.7",
|
|
|
|
"d3-time-format": "2.2.3",
|
|
|
|
"debug": "4.1.1",
|
|
|
|
"dompurify": "2.0.8",
|
|
|
|
"emoji-flags": "1.2.0",
|
|
|
|
"gridicons": "3.3.1",
|
|
|
|
"history": "4.10.1",
|
|
|
|
"interpolate-components": "1.1.1",
|
|
|
|
"marked": "0.8.0",
|
|
|
|
"memoize-one": "5.1.1",
|
|
|
|
"prismjs": "1.19.0",
|
|
|
|
"qs": "6.9.1",
|
|
|
|
"react-click-outside": "3.0.1",
|
2020-02-20 18:47:09 +00:00
|
|
|
"react-dates": "21.8.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"react-router-dom": "5.1.2",
|
2020-03-24 00:46:41 +00:00
|
|
|
"react-transition-group": "4.3.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"react-visibility-sensor": "5.1.1",
|
|
|
|
"redux": "4.0.5"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@automattic/color-studio": "2.2.1",
|
|
|
|
"@babel/cli": "7.8.4",
|
2020-03-09 15:59:55 +00:00
|
|
|
"@babel/core": "7.8.7",
|
2020-02-14 02:23:21 +00:00
|
|
|
"@babel/plugin-transform-async-to-generator": "7.8.3",
|
|
|
|
"@babel/plugin-transform-react-jsx": "7.8.3",
|
2020-03-09 15:59:55 +00:00
|
|
|
"@babel/runtime-corejs2": "7.8.7",
|
2020-03-12 21:21:11 +00:00
|
|
|
"@octokit/graphql": "4.3.1",
|
2020-03-24 00:31:33 +00:00
|
|
|
"@storybook/addon-a11y": "5.3.17",
|
|
|
|
"@storybook/addon-actions": "5.3.17",
|
|
|
|
"@storybook/addon-docs": "5.3.17",
|
|
|
|
"@storybook/addon-knobs": "5.3.17",
|
|
|
|
"@storybook/addon-links": "5.3.17",
|
|
|
|
"@storybook/addon-storysource": "5.3.17",
|
|
|
|
"@storybook/addon-viewport": "5.3.17",
|
|
|
|
"@storybook/addons": "5.3.17",
|
|
|
|
"@storybook/react": "5.3.17",
|
2020-02-14 02:23:21 +00:00
|
|
|
"@wordpress/babel-plugin-import-jsx-pragma": "1.1.3",
|
|
|
|
"@wordpress/babel-plugin-makepot": "2.1.3",
|
|
|
|
"@wordpress/babel-preset-default": "3.0.2",
|
2020-02-27 14:14:31 +00:00
|
|
|
"@wordpress/base-styles": "1.4.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"@wordpress/browserslist-config": "2.6.0",
|
|
|
|
"@wordpress/custom-templated-path-webpack-plugin": "1.6.0",
|
2020-02-27 14:14:31 +00:00
|
|
|
"@wordpress/eslint-plugin": "3.4.1",
|
2020-02-14 02:23:21 +00:00
|
|
|
"@wordpress/jest-preset-default": "5.4.0",
|
|
|
|
"@wordpress/postcss-themes": "1.0.5",
|
|
|
|
"ast-types": "0.13.2",
|
|
|
|
"autoprefixer": "9.7.4",
|
|
|
|
"babel-core": "7.0.0-bridge.0",
|
2020-03-09 15:59:55 +00:00
|
|
|
"babel-eslint": "10.1.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"babel-loader": "8.0.6",
|
|
|
|
"babel-plugin-transform-class-properties": "6.24.1",
|
|
|
|
"babel-plugin-transform-es2015-template-literals": "6.22.0",
|
|
|
|
"chalk": "3.0.0",
|
|
|
|
"concurrently": "5.1.0",
|
|
|
|
"copy-webpack-plugin": "5.1.1",
|
2020-03-10 19:37:42 +00:00
|
|
|
"cross-env": "7.0.2",
|
2020-02-14 02:23:21 +00:00
|
|
|
"css-loader": "3.4.2",
|
|
|
|
"deasync": "0.1.19",
|
|
|
|
"deep-freeze": "0.0.1",
|
|
|
|
"docsify-cli": "4.4.0",
|
|
|
|
"enzyme-adapter-react-16": "1.15.2",
|
|
|
|
"eslint": "6.8.0",
|
|
|
|
"eslint-config-prettier": "6.10.0",
|
|
|
|
"eslint-loader": "3.0.3",
|
2020-03-09 16:18:50 +00:00
|
|
|
"eslint-plugin-jest": "23.8.2",
|
2020-02-14 02:23:21 +00:00
|
|
|
"eslint-plugin-jsx-a11y": "6.2.3",
|
2020-03-24 00:28:38 +00:00
|
|
|
"eslint-plugin-react": "7.19.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"eslint-plugin-wpcalypso": "4.1.0",
|
|
|
|
"fs-extra": "8.1.0",
|
2020-03-24 00:47:35 +00:00
|
|
|
"grunt": "1.1.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"grunt-checktextdomain": "1.0.1",
|
|
|
|
"grunt-wp-i18n": "1.0.3",
|
2020-02-20 01:16:54 +00:00
|
|
|
"husky": "4.2.3",
|
2020-02-14 02:23:21 +00:00
|
|
|
"lerna": "3.20.2",
|
2020-03-03 02:04:05 +00:00
|
|
|
"lint-staged": "10.0.8",
|
2020-02-14 02:23:21 +00:00
|
|
|
"locutus": "2.0.11",
|
2020-03-12 21:21:11 +00:00
|
|
|
"merge-config": "2.0.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"mini-css-extract-plugin": "0.9.0",
|
|
|
|
"node-sass": "4.13.1",
|
|
|
|
"node-watch": "0.6.3",
|
|
|
|
"postcss-color-function": "4.1.0",
|
|
|
|
"postcss-loader": "3.0.0",
|
|
|
|
"prettier": "npm:wp-prettier@1.19.1",
|
|
|
|
"promptly": "3.0.3",
|
|
|
|
"prop-types": "15.7.2",
|
2020-02-20 19:38:28 +00:00
|
|
|
"raw-loader": "4.0.0",
|
2020-03-09 16:22:08 +00:00
|
|
|
"react-docgen": "5.3.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"readline-sync": "1.4.10",
|
2020-03-10 19:47:16 +00:00
|
|
|
"recast": "0.18.7",
|
2020-02-14 02:23:21 +00:00
|
|
|
"replace": "1.1.5",
|
|
|
|
"request-promise": "4.2.5",
|
|
|
|
"rimraf": "2.7.1",
|
|
|
|
"rtlcss": "2.5.0",
|
|
|
|
"sass-loader": "7.3.1",
|
|
|
|
"style-loader": "0.23.1",
|
|
|
|
"stylelint": "9.10.1",
|
|
|
|
"stylelint-config-wordpress": "13.1.0",
|
|
|
|
"url-loader": "1.1.2",
|
2020-03-10 19:52:13 +00:00
|
|
|
"webpack": "4.42.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"webpack-cli": "3.3.11",
|
|
|
|
"webpack-fix-style-only-entries": "0.4.0",
|
2020-03-12 21:21:11 +00:00
|
|
|
"webpack-rtl-plugin": "2.0.0",
|
|
|
|
"zenhub-api": "0.2.0"
|
2020-02-14 02:23:21 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=8.0.0",
|
Merge final `version/1.0` branch with `master` (https://github.com/woocommerce/woocommerce-admin/pull/3848)
* Try: Moving Customers to main Woo Menu (https://github.com/woocommerce/woocommerce-admin/pull/3632)
* Only add onboarding settings on wc-admin pages when task list should be shown. (https://github.com/woocommerce/woocommerce-admin/pull/3722)
* Use cron for unsnoozing admin notes (https://github.com/woocommerce/woocommerce-admin/pull/3662)
* Use wp-cron for admin note snoozing.
* Remove "unsnooze" scheduled action.
* Use correct version.
* Avoid using deprecated method for unscheduling actions.
* Onboarding: Fix toggle tracking events (https://github.com/woocommerce/woocommerce-admin/pull/3645)
* Fix errant wcadmin prefix on event name
* Track the onboarding toggle on the option in case enable_onboarding isn't used
* Move toggle actions to separate function
* Move onboarding actions
* Move onboarding filters
* Move help tab updates to add_toggle_actions
* Only run onboarding actions when enabled
* Onboarding: Add tracks events when profiler steps are completed (https://github.com/woocommerce/woocommerce-admin/pull/3726)
* Add tracks for store profiler step completion
* Record event when profiler is completed
* Ensure continue setup loads the onboarding profiler (https://github.com/woocommerce/woocommerce-admin/pull/3646)
* 'All that include' option removed when input field is empty (https://github.com/woocommerce/woocommerce-admin/pull/3700)
* 'All that include' option removed when input field is empty
Added a control to check that when the input field 'Search by customer name' is empty, the 'All that include' option is not appearing.
* Const name improved
The constant name hasValues was changed to optionsHaveValues (more descriptive)
* Fix select text alignment (https://github.com/woocommerce/woocommerce-admin/pull/3723)
* Stock panel indicator - cache and use lookup tables. (https://github.com/woocommerce/woocommerce-admin/pull/3729)
* Stock panel indicator - cache and use lookup tables.
* Revise query, clear transient on product update.
* Fix error, ht Josh.
* Checklist: Remove sideloaded images to reduce build size, take 2 (https://github.com/woocommerce/woocommerce-admin/pull/3731)
* Remove homepage template images.
* Use other-small on all industries, adjust text color.
* Remove background dim and opacity set to 0
* Fix/3631 (https://github.com/woocommerce/woocommerce-admin/pull/3730)
* Added CBD as an industry type
CBD was added as an industry type in API
* Industries options modified
Modified the industries options. Now we are able to choose if we will use an input or not in the option.
* API control changed for industries.
API control changed for industries. Now it accepts the data type we need.
* Added input in Industries list for the option "Other"
Added an input for the option "Other" in the industries list
* Added suggested changes in review comments.
* Added data preparation for recordEvent
* Changed variable to snake_case
The variable "industriesWithDetail" was changed to "industries_with_detail" (snake_case)
* Onboarding: Create homepage without redirect (https://github.com/woocommerce/woocommerce-admin/pull/3727)
* Add link to edit homepage instead of redirect
* Add busy state to homepage creation button
* Publish homepage on create via API
* Update homepage notice to show on first post update
* Update homepage creation notice per design
* Record event on customize homepage
* Set homepage to frontpage on creation
* Add deactivation note for feature plugin (https://github.com/woocommerce/woocommerce-admin/pull/3687)
* Add version deactivation note
* Add the note to deactivate if the version is older than the current WC version
* Deactivate wc admin feature plugin on action click
* Add notes version hooks
* change the Package class namespace to exclude from standalone autoloader
* add use statement for FeaturePlugin
* add note explaining namespace
* use wc-admin-deactivate-plugin note name
* Rename file and class to WC_Admin_Notes_Deactivate_Plugin
Co-authored-by: Ron Rennick <ron@ronandandrea.com>
Co-authored-by: Paul Sealock <psealock@gmail.com>
* Add Travis tests on GH for release branch (https://github.com/woocommerce/woocommerce-admin/pull/3751)
* Add Travis tests on GH for release branch
* fix linter errors
* ActivityPanels.php -> use public static functions
* Remove free text Search option when no query exists (https://github.com/woocommerce/woocommerce-admin/pull/3755)
* Revert changes in woocommerce/woocommerce-admin#3700
* Don't add free text search if no query exists
* Add tests for Search without query
* Add test for showing free text search option
* Fix image sideloading for store industries. (https://github.com/woocommerce/woocommerce-admin/pull/3743)
* Fix image sideloading for store industries.
Data format changed in https://github.com/woocommerce/woocommerce-admin/pull/3730
* Fix industry image sideload in cases where the count is less than requested.
* Be backwards compatible with the old industry data format.
* Added event props to identify stores with WCS and Jetpack installed (https://github.com/woocommerce/woocommerce-admin/pull/3750)
* Added event props to identify stores with WCS and Jetpack installed
Also, added Jeckpack connected status
* Improved variable name
* Simplified method
Simplified method. "intersection" check was removed
* Tests errors repeared
The method "clear_low_out_of_stock_count_transient" now is static.
* OBW: fix sideloading image test error (https://github.com/woocommerce/woocommerce-admin/pull/3762)
* Release 0.26.0 changes (https://github.com/woocommerce/woocommerce-admin/pull/3753)
* add deactivation hook to Package.php (https://github.com/woocommerce/woocommerce-admin/pull/3770)
* Add active version functions (https://github.com/woocommerce/woocommerce-admin/pull/3772)
* add active version functions to Package.php
Co-authored-by: Joshua T Flowers <joshuatf@gmail.com>
* 0.26.1 changes (https://github.com/woocommerce/woocommerce-admin/pull/3773)
* Customers Report: fix missing report param in search (https://github.com/woocommerce/woocommerce-admin/pull/3778)
* Product titles include encoded entities (https://github.com/woocommerce/woocommerce-admin/pull/3765)
* Stripped HTML from product titles and decoded before displaying them
Stripped html from product titles and entities are decoded before displaying them
* Stripped HTML from product titles and decoded in Stock report
Stripped html from product titles and entities are decoded before displaying them. Now in Stock report
* Added support for HTML tags and encoded entities on product titles
Added support for HTML tags and encoded entities on filtered product list, dropdown menus and tag names.
Also, strip_tags() function was replaced with wp_strip_all_tags() instead.
* strip_tags() function was replaced with wp_strip_all_tags() instead.
* Added control for a variable
Added control for "item->data" before applying wp_strip_all_tags method.
* pre-commit changes
* Test text corrected
* Enable taxes on automatic tax setup (https://github.com/woocommerce/woocommerce-admin/pull/3795)
* Update Country Labeling to Match Core (https://github.com/woocommerce/woocommerce-admin/pull/3790)
* Updated country labeling
Country labeling on Customer Report was updated
* Updated country labeling in other files
* remove .jitm-card notice padding (https://github.com/woocommerce/woocommerce-admin/pull/3814)
* OBW Connect: Fix requesting state (https://github.com/woocommerce/woocommerce-admin/pull/3786)
* OBW Connect: Fix requesting state
* pass down setIsPending
* setIspending propType
* defaultProps
* test
* Revert "test"
This reverts commit e921092b19401931cc1aec8ee84fa53c53b67f36.
* better comparison for redirect
* Fixes Taxes Report search bug and adds initial documentation. (https://github.com/woocommerce/woocommerce-admin/pull/3816)
* Initial Taxes Report documentation.
* Fix taxes endpoint search parameter.
* OBW: Fix retry plugin install button disappearing (https://github.com/woocommerce/woocommerce-admin/pull/3787)
* OBW: Fix retry plugin install btn disappearing
* try suggestion
* Revert "try suggestion"
This reverts commit 5b9386957a501ac3e729e5f16b0ee71c9d792859.
* Fix special character escaping in search. (https://github.com/woocommerce/woocommerce-admin/pull/3826)
* Properly prepare/escape special characters in Product search.
* Properly prepare/escape special characters in Coupon search.
* Properly prepare/escape special characters in Tax code search.
* Fix tracking on migrated options (https://github.com/woocommerce/woocommerce-admin/pull/3828)
* Don't track onboarding toggle if migrating options
* Prevent WC_Tracks from recording event post types not yet registered
* Activity Panels: Remove W Panel (https://github.com/woocommerce/woocommerce-admin/pull/3827)
* Remove W Notif Panel.
* Add back in trapping logic, and hide on non-embed pages.
* add npm run test:zip command (https://github.com/woocommerce/woocommerce-admin/pull/3823)
* add npm run test:zip command
* 1.0.0 release changes🎉 (https://github.com/woocommerce/woocommerce-admin/pull/3831)
* 1.0.0 release changes🎉
* changelog
* 0.26.1 changelog
* Add Report Extension Example: Add default props to ReportFilters (https://github.com/woocommerce/woocommerce-admin/pull/3830)
* ReportFilters component: Add sane defaults
* styles
* add required column
* add left join to sku ordering (https://github.com/woocommerce/woocommerce-admin/pull/3845)
* Deal with lint errors, and improperly merged files
* regenerate package-lock.json
* attempting to resolve package lock conflict.
Co-authored-by: Jeff Stieler <jeff.m.stieler@gmail.com>
Co-authored-by: Joshua T Flowers <joshuatf@gmail.com>
Co-authored-by: Ron Rennick <ron@ronandandrea.com>
Co-authored-by: Fernando <ultimoround@gmail.com>
Co-authored-by: edmundcwm <edmundcwm@gmail.com>
Co-authored-by: Paul Sealock <psealock@gmail.com>
2020-03-10 02:47:39 +00:00
|
|
|
"npm": ">=6.14.2"
|
2020-02-14 02:23:21 +00:00
|
|
|
}
|
2018-04-17 21:03:14 +00:00
|
|
|
}
|