99 lines
2.9 KiB
JSON
99 lines
2.9 KiB
JSON
{
|
|
"name": "woocommerce-product-blocks",
|
|
"title": "WooCommerce Blocks",
|
|
"version": "2.0.0-dev",
|
|
"homepage": "https://woocommerce.com/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com:woocommerce/woocommerce-gutenberg-products-block.git"
|
|
},
|
|
"license": "GPL-3.0+",
|
|
"main": "Gruntfile.js",
|
|
"scripts": {
|
|
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack",
|
|
"start": "cross-env BABEL_ENV=default webpack --watch",
|
|
"lint": "npm run lint:css && npm run lint:js",
|
|
"lint:css": "stylelint assets/css",
|
|
"lint:js": "eslint assets/js --ext=js,jsx",
|
|
"test": "wp-scripts test-unit-js --config tests/js/jest.config.json",
|
|
"test:help": "wp-scripts test-unit-js --help",
|
|
"test:update": "wp-scripts test-unit-js --updateSnapshot --config tests/js/jest.config.json",
|
|
"test:watch": "npm run test -- --watch"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.3.4",
|
|
"@wordpress/babel-plugin-import-jsx-pragma": "1.1.3",
|
|
"@wordpress/babel-preset-default": "3.0.2",
|
|
"@wordpress/blocks": "6.0.7",
|
|
"@wordpress/components": "7.0.8",
|
|
"@wordpress/date": "3.0.1",
|
|
"@wordpress/editor": "9.0.11",
|
|
"@wordpress/element": "2.1.9",
|
|
"@wordpress/i18n": "3.1.1",
|
|
"@wordpress/jest-preset-default": "3.0.3",
|
|
"@wordpress/rich-text": "3.0.7",
|
|
"@wordpress/scripts": "2.5.0",
|
|
"autoprefixer": "9.4.9",
|
|
"babel-core": "7.0.0-bridge.0",
|
|
"babel-eslint": "10.0.1",
|
|
"babel-loader": "8.0.5",
|
|
"classnames": "2.2.6",
|
|
"clean-webpack-plugin": "1.0.1",
|
|
"core-js": "2.6.5",
|
|
"cross-env": "5.2.0",
|
|
"css-loader": "2.1.0",
|
|
"cssnano": "4.1.10",
|
|
"eslint": "5.14.1",
|
|
"eslint-config-wordpress": "2.0.0",
|
|
"eslint-plugin-jest": "22.3.0",
|
|
"eslint-plugin-jsx-a11y": "6.2.1",
|
|
"eslint-plugin-react": "7.12.4",
|
|
"eslint-plugin-wordpress": "git://github.com/WordPress-Coding-Standards/eslint-plugin-wordpress.git#1774343f6226052a46b081e01db3fca8793cc9f1",
|
|
"har-validator": "5.1.3",
|
|
"husky": "1.3.1",
|
|
"interpolate-components": "1.1.1",
|
|
"lint-staged": "8.1.4",
|
|
"mini-css-extract-plugin": "0.5.0",
|
|
"node-sass": "4.11.0",
|
|
"postcss-loader": "3.0.0",
|
|
"react-test-renderer": "16.8.3",
|
|
"rimraf": "2.6.3",
|
|
"sass-loader": "7.1.0",
|
|
"style-loader": "0.23.1",
|
|
"stylelint": "9.10.1",
|
|
"stylelint-config-wordpress": "13.1.0",
|
|
"webpack": "4.29.5",
|
|
"webpack-cli": "3.2.3"
|
|
},
|
|
"engines": {
|
|
"node": "10.15.1",
|
|
"npm": "6.8.0"
|
|
},
|
|
"dependencies": {
|
|
"@woocommerce/components": "1.6.0",
|
|
"gridicons": "^3.1.1"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"linters": {
|
|
"*.php": [
|
|
"php -d display_errors=1 -l",
|
|
"composer run-script phpcs"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
"assets/**",
|
|
"build/**",
|
|
"includes/**",
|
|
"languages/**",
|
|
"license.txt",
|
|
"readme.txt",
|
|
"woocommerce-gutenberg-products-block.php"
|
|
]
|
|
}
|