-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.6 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
51
52
{
"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": "14",
"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",
"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.16.1",
"@testing-library/react": "12.1.2",
"@wordpress/eslint-plugin": "9.3.0",
"@wordpress/scripts": "19.2.3",
"acorn": "8.7.0",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"typescript": "4.5.4"
},
"dependencies": {
"@wordpress/block-editor": "8.0.13",
"@wordpress/blocks": "11.1.5",
"@wordpress/server-side-render": "3.0.17",
"react": "16.14.0",
"react-dom": "16.14.0"
}
}