100 lines
2.6 KiB
JSON
100 lines
2.6 KiB
JSON
{
|
|
"name": "woocommerce",
|
|
"title": "WooCommerce",
|
|
"version": "3.9.0",
|
|
"homepage": "https://woocommerce.com/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/woocommerce/woocommerce.git"
|
|
},
|
|
"license": "GPL-3.0+",
|
|
"main": "Gruntfile.js",
|
|
"scripts": {
|
|
"build": "grunt",
|
|
"build-watch": "grunt watch",
|
|
"lint:js": "eslint assets/js --ext=js",
|
|
"test:e2e": "./tests/bin/e2e-test-integration.js",
|
|
"test:e2e-dev": "./tests/bin/e2e-test-integration.js --dev",
|
|
"makepot": "grunt makepot",
|
|
"git:update-hooks": "rm -r .git/hooks && mkdir -p .git/hooks && node ./node_modules/husky/husky.js install"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "7.7.7",
|
|
"@babel/core": "7.7.7",
|
|
"@babel/polyfill": "7.7.0",
|
|
"@babel/preset-env": "7.7.7",
|
|
"@babel/register": "7.7.7",
|
|
"@wordpress/e2e-test-utils": "2.4.3",
|
|
"autoprefixer": "9.7.3",
|
|
"babel-eslint": "10.0.3",
|
|
"chai": "4.2.0",
|
|
"chai-as-promised": "7.1.1",
|
|
"commander": "3.0.2",
|
|
"eslint-plugin-jest": "23.1.1",
|
|
"config": "3.2.4",
|
|
"cross-env": "6.0.3",
|
|
"eslint": "6.7.2",
|
|
"eslint-config-wpcalypso": "5.0.0",
|
|
"github-contributors-list": "https://github.com/woocommerce/github-contributors-list/tarball/master",
|
|
"grunt": "1.0.4",
|
|
"grunt-checktextdomain": "1.0.1",
|
|
"grunt-contrib-clean": "2.0.0",
|
|
"grunt-contrib-concat": "1.0.1",
|
|
"grunt-contrib-copy": "1.0.0",
|
|
"grunt-contrib-cssmin": "3.0.0",
|
|
"grunt-contrib-jshint": "2.1.0",
|
|
"grunt-contrib-uglify": "4.0.1",
|
|
"grunt-contrib-watch": "1.1.0",
|
|
"grunt-phpcs": "0.4.0",
|
|
"grunt-postcss": "0.9.0",
|
|
"grunt-prompt": "1.3.3",
|
|
"grunt-rtlcss": "2.0.2",
|
|
"grunt-sass": "3.1.0",
|
|
"grunt-shell": "3.0.1",
|
|
"grunt-stylelint": "0.13.0",
|
|
"grunt-wp-i18n": "1.0.3",
|
|
"husky": "3.1.0",
|
|
"istanbul": "1.0.0-alpha.2",
|
|
"jest": "24.9.0",
|
|
"jest-puppeteer": "4.4.0",
|
|
"lint-staged": "9.5.0",
|
|
"mocha": "6.2.2",
|
|
"node-sass": "4.13.0",
|
|
"prettier": "github:automattic/calypso-prettier#c56b4251",
|
|
"puppeteer": "2.0.0",
|
|
"stylelint": "12.0.0",
|
|
"stylelint-config-wordpress": "15.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.15.0",
|
|
"npm": ">=6.4.1"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.php": [
|
|
"php -d display_errors=1 -l",
|
|
"composer run-script phpcs-pre-commit"
|
|
],
|
|
"*.scss": [
|
|
"stylelint --syntax=scss --fix",
|
|
"git add"
|
|
],
|
|
"*.js": [
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"browserslist": [
|
|
"> 0.1%",
|
|
"ie 8",
|
|
"ie 9"
|
|
],
|
|
"dependencies": {
|
|
"@jest/test-sequencer": "^24.9.0"
|
|
}
|
|
}
|