-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
50 lines (50 loc) · 1.51 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
44
45
46
47
48
49
50
{
"name": "widget-context",
"description": "WordPress plugin for showing or hiding widgets on specific posts, pages and sections of a site.",
"private": true,
"homepage": "https://widgetcontext.com",
"author": {
"name": "Kaspars Dambis",
"url": "https://widgetcontext.com/about"
},
"engineStrict": true,
"engines": {
"node": ">=14"
},
"scripts": {
"grunt": "grunt",
"build": "composer release && grunt build",
"deploy": "composer release && grunt deploy",
"deploy-trunk": "composer release && grunt deploy-trunk",
"test": "docker-compose run --remove-orphans --workdir=/var/www/html/wp-content/plugins/widget-context-src wordpress vendor/bin/phpunit",
"lint": "composer lint && npm run lint-js",
"lint-js": "eslint *.js assets/js",
"coverage": "composer coverage",
"mess": "composer mess",
"postinstall": "composer install",
"wp-cli": "docker-compose run --remove-orphans wp-cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kasparsd/widget-context-wporg.git"
},
"bugs": {
"url": "https://github.com/kasparsd/widget-context-wporg/issues"
},
"keywords": [
"wordpress",
"wordpress plugin"
],
"license": "GPL-2.0",
"devDependencies": {
"@wordpress/eslint-plugin": "^9.2.0",
"eslint": "^7.32.0",
"grunt": "^1.4.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0",
"grunt-contrib-copy": "^1.0",
"grunt-wp-deploy": "^2.1",
"handlebars": "^4.7.7",
"load-grunt-tasks": "^5.1"
}
}