forked from Emerald2013/coding-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·49 lines (49 loc) · 1.57 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
{
"name": "@xwp/site-counts",
"version": "1.0.0",
"private": true,
"description": "Post and taxonomy counts for your WordPress site.",
"author": "XWP",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/xwp/site-counts/issues"
},
"homepage": "https://github.com/xwp/site-counts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/xwp/site-counts.git"
},
"engines": {
"node": ">=10",
"npm": ">=6.9"
},
"scripts": {
"postinstall": "composer install",
"dev": "wp-scripts start",
"build": "wp-scripts build",
"lint": "npm-run-all --parallel lint:*",
"lint:js": "wp-scripts lint-js js/src",
"lint:php": "composer lint",
"lint:php:fix": "composer lint-fix",
"packages-update": "wp-scripts packages-update",
"test": "npm-run-all --parallel test:js test:php",
"test:coverage": "npm-run-all --parallel test:js:coverage test:php:coverage",
"test:js": "wp-scripts test-unit-js",
"test:js:coverage": "wp-scripts test-unit-js --coverage --coverageDirectory=tests/coverage/js",
"test:php": "composer test -- --no-coverage",
"test:php:coverage": "composer test"
},
"devDependencies": {
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.0.0",
"@wordpress/block-editor": "6.1.13",
"@wordpress/blocks": "9.1.5",
"@wordpress/eslint-plugin": "9.0.6",
"@wordpress/i18n": "4.1.1",
"@wordpress/scripts": "16.1.4",
"@wordpress/server-side-render": "2.1.11",
"npm-run-all": "4.1.5",
"prettier": "2.3.2"
},
"dependencies": {}
}