woocommerce/package.json

100 lines
2.8 KiB
JSON
Raw Normal View History

2015-07-10 21:34:15 +00:00
{
"name": "woocommerce",
"title": "WooCommerce",
"version": "4.0.0",
2016-07-05 22:52:16 +00:00
"homepage": "https://woocommerce.com/",
2015-07-10 21:34:15 +00:00
"repository": {
"type": "git",
"url": "https://github.com/woocommerce/woocommerce.git"
2015-07-10 21:34:15 +00:00
},
2015-07-11 03:33:12 +00:00
"license": "GPL-3.0+",
2015-07-10 21:34:15 +00:00
"main": "Gruntfile.js",
2017-02-28 20:00:12 +00:00
"scripts": {
"build": "grunt && npm run makepot",
"build-watch": "grunt watch",
2018-11-06 20:11:52 +00:00
"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": "composer run-script makepot",
"packages:fix:textdomain": "node ./bin/package-update-textdomain.js",
2019-01-17 18:46:11 +00:00
"git:update-hooks": "rm -r .git/hooks && mkdir -p .git/hooks && node ./node_modules/husky/husky.js install"
2017-02-28 20:00:12 +00:00
},
2015-07-10 21:34:15 +00:00
"devDependencies": {
2020-02-01 00:49:30 +00:00
"@babel/cli": "7.8.4",
2020-04-01 15:12:00 +00:00
"@babel/core": "7.9.0",
"@babel/polyfill": "7.8.7",
"@babel/preset-env": "7.9.0",
"@babel/register": "7.9.0",
"@jest/test-sequencer": "^25.0.0",
"@wordpress/e2e-test-utils": "4.3.1",
"autoprefixer": "9.7.5",
2020-03-01 00:58:43 +00:00
"babel-eslint": "10.1.0",
2019-01-08 11:07:32 +00:00
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
2020-03-01 01:36:22 +00:00
"commander": "4.1.1",
2020-04-01 01:48:55 +00:00
"config": "3.3.1",
2019-10-02 16:27:27 +00:00
"cross-env": "6.0.3",
2019-12-20 21:37:35 +00:00
"eslint": "6.8.0",
"eslint-config-wpcalypso": "5.0.0",
"eslint-plugin-jest": "23.8.2",
"github-contributors-list": "https://github.com/woocommerce/github-contributors-list/tarball/master",
2020-04-01 02:37:12 +00:00
"grunt": "1.1.0",
"grunt-contrib-clean": "2.0.0",
2019-01-08 11:07:32 +00:00
"grunt-contrib-concat": "1.0.1",
2019-02-23 01:00:47 +00:00
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-cssmin": "3.0.0",
"grunt-contrib-jshint": "2.1.0",
"grunt-contrib-uglify": "4.0.1",
2019-01-08 11:07:32 +00:00
"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",
2019-08-14 12:02:16 +00:00
"grunt-sass": "3.1.0",
"grunt-shell": "3.0.1",
"grunt-stylelint": "0.14.0",
2020-02-01 02:51:32 +00:00
"husky": "4.2.1",
2019-01-08 11:07:32 +00:00
"istanbul": "1.0.0-alpha.2",
2020-01-22 01:36:42 +00:00
"jest": "25.1.0",
"jest-puppeteer": "4.4.0",
"lint-staged": "9.5.0",
2020-02-01 02:52:04 +00:00
"mocha": "7.0.1",
2019-10-24 06:55:38 +00:00
"node-sass": "4.13.0",
2018-11-06 20:45:03 +00:00
"prettier": "github:automattic/calypso-prettier#c56b4251",
"puppeteer": "2.0.0",
2020-02-18 19:31:04 +00:00
"puppeteer-utils": "github:Automattic/puppeteer-utils#0f3ec50",
2019-12-25 13:21:34 +00:00
"stylelint": "12.0.1",
"stylelint-config-wordpress": "16.0.0",
"wp-textdomain": "^1.0.1"
2015-07-10 21:34:15 +00:00
},
"engines": {
"node": ">=10.15.0",
"npm": ">=6.4.1"
2018-05-21 14:28:32 +00:00
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-merge": "./bin/post-merge.sh"
}
},
"lint-staged": {
2019-07-08 17:55:44 +00:00
"*.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"
]
2015-07-10 21:34:15 +00:00
}