-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "wp-maintenance-mode",
"version": "2.6.23",
"author": "Themeisle",
"homepage": "https://themeisle.com/",
"license": "GPL-3.0+",
"bugs": {
"url": "https://github.com/codeinwp/WP-Maintenance-Mode/issues"
},
"scripts": {
"build": "grunt",
"dist": "bash ./bin/dist.sh",
"release": "npx semantic-release",
"wp-env": "wp-env",
"env:start": "node bin/wp-env-up.js",
"env:stop": "wp-env stop",
"env:cleanup": "wp-env cleanup",
"lint:php": "wp-env run --env-cwd=wp-content/plugins/wp-maintenance-mode cli composer run-script lint",
"format:php": "wp-env run --env-cwd=wp-content/plugins/wp-maintenance-mode cli composer run-script format",
"test:unit:php:setup": "npm run env:start",
"test:unit:php:base": "wp-env run --env-cwd=wp-content/plugins/wp-maintenance-mode cli bash -c 'WORDPRESS_TABLE_PREFIX=wptests_ composer run-script phpunit'",
"test:unit:php": "npm-run-all test:unit:php:setup test:unit:php:base",
"test:e2e": "playwright test --config tests/e2e/playwright.config.js",
"test:e2e:ui": "playwright test --config tests/e2e/playwright.config.js --ui"
},
"main": "Gruntfile.js",
"devDependencies": {
"@playwright/test": "^1.61.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@wordpress/e2e-test-utils-playwright": "^1.51.0",
"@wordpress/env": "^11.11.0",
"@wordpress/eslint-plugin": "^14.0.0",
"autoprefixer": "^9.8.6",
"conventional-changelog-simple-preset": "^1.0.14",
"cssnano": "^4.1.11",
"grunt": "^1.4.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-uglify-es": "^3.3.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-postcss": "^0.9.0",
"grunt-version": "^3.0.0",
"grunt-wp-readme-to-markdown": "^2.1.0",
"npm-run-all": "^4.1.5",
"replace-in-file": "^6.1.0",
"semantic-release": "^17.3.7",
"semantic-release-slack-bot": "^3.5.3",
"time-grunt": "^2.0.0"
}
}