66 lines
2.0 KiB
JSON
66 lines
2.0 KiB
JSON
{
|
|
"name": "@woocommerce/experimental",
|
|
"version": "1.5.0",
|
|
"description": "WooCommerce experimental components.",
|
|
"author": "Automattic",
|
|
"license": "GPL-3.0-or-later",
|
|
"keywords": [
|
|
"wordpress",
|
|
"woocommerce",
|
|
"experimental"
|
|
],
|
|
"homepage": "https://github.com/woocommerce/woocommerce-admin/tree/main/packages/experimental/README.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/woocommerce/woocommerce-admin.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/woocommerce/woocommerce-admin/issues"
|
|
},
|
|
"main": "build/index.js",
|
|
"module": "build-module/index.js",
|
|
"react-native": "src/index",
|
|
"sideEffects": [
|
|
"build-style/**",
|
|
"src/**/*.scss"
|
|
],
|
|
"dependencies": {
|
|
"@babel/runtime": "7.14.0",
|
|
"@woocommerce/components": "file:../components",
|
|
"@wordpress/components": "10.2.0",
|
|
"@wordpress/element": "2.19.0",
|
|
"@wordpress/i18n": "3.17.0",
|
|
"@wordpress/icons": "2.10.3",
|
|
"@wordpress/keycodes": "2.18.0",
|
|
"classnames": "^2.3.1",
|
|
"dompurify": "2.2.9",
|
|
"gridicons": "3.3.1",
|
|
"moment": "2.29.1",
|
|
"react-transition-group": "4.4.1",
|
|
"react-visibility-sensor": "5.1.1"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@storybook/addon-console": "1.2.3",
|
|
"@storybook/react": "6.2.9",
|
|
"@testing-library/react": "11.2.7",
|
|
"@testing-library/user-event": "13.1.9",
|
|
"@types/dompurify": "2.2.2",
|
|
"@types/react-transition-group": "4.4.1",
|
|
"concurrently": "5.3.0"
|
|
},
|
|
"scripts": {
|
|
"clean": "npx rimraf build build-*",
|
|
"build": "npm run build:js && npm run build:css",
|
|
"build:js": "tsc --build ./tsconfig.json ./tsconfig-cjs.json",
|
|
"build:css": "node ../../bin/packages/build.js src/style.scss",
|
|
"start": "concurrently \"tsc --build --watch\" \"node ../../bin/packages/watch.js ./src\"",
|
|
"prepack": "npm run clean && npm run build",
|
|
"test": "lerna run build && npm run test:nobuild",
|
|
"test:nobuild": "jest --config ./jest.config.json",
|
|
"test-staged": "jest --bail --config ./jest.config.json --findRelatedTests"
|
|
}
|
|
}
|