-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·43 lines (43 loc) · 1.47 KB
/
package.json
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
{
"name": "@xwp/formation",
"version": "1.0.0",
"description": "Formation for WordPress.",
"author": "xwp",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/xwp/formation/issues"
},
"homepage": "https://github.com/xwp/formation#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/xwp/formation.git"
},
"scripts": {
"postinstall": "composer install",
"dev": "wp-scripts start",
"build": "wp-scripts build",
"lint": "npm-run-all --parallel lint:*",
"lint:js": "eslint js/src",
"lint:php": "composer lint",
"test": "npm-run-all --parallel test:*",
"test:php": "composer test -- --no-coverage",
"test:php:coverage": "composer test -- --coverage-html tests/reports/coverage/",
"coverage": "npm-run-all --parallel coverage:*",
"coverage:php": "composer coverage",
"docker": "docker-compose run --workdir=/var/www/html/wp-content/plugins/formation wordpress",
"vagrant": "vagrant ssh -- COMPOSE_FILE=/vagrant/docker-compose.yml docker-compose run --workdir=/var/www/html/wp-content/plugins/formation wordpress"
},
"devDependencies": {
"@wordpress/block-editor": "3.3.0",
"@wordpress/eslint-plugin": "3.2.0",
"@wordpress/scripts": "6.0.0",
"eslint": "6.7.2",
"npm-run-all": "4.1.5",
"mini-css-extract-plugin": "^0.8.0",
"css-loader": "^3.3.2",
"sass-loader": "^8.0.0",
"node-sass": "^4.13.0",
"react-select": "^3.0.8"
},
"dependencies": {}
}