-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
117 lines (117 loc) · 3.86 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "wp-parsely",
"version": "3.17.0",
"private": true,
"description": "The Parse.ly plugin facilitates real-time and historical analytics to your content through a platform designed and built for digital publishing.",
"author": "parsely, hbbtstar, jblz, mikeyarce, GaryJ, parsely_mike, acicovic, mehmoodak, vaurdan",
"license": "GPL-2.0-or-later",
"keywords": [
"analytics",
"parse.ly",
"parsely",
"parsley"
],
"homepage": "https://github.com/Parsely/wp-parsely",
"repository": {
"type": "git",
"url": "git+https://github.com/Parsely/wp-parsely.git"
},
"bugs": {
"url": "https://github.com/Parsely/wp-parsely/issues"
},
"engines": {
"node": ">=18.12.0",
"npm": ">=8.19.2"
},
"directories": {
"test": "tests"
},
"files": [
"build/",
"src/",
"uninstall.php",
"wp-parsely.php"
],
"browserslist": [
"defaults"
],
"dependencies": {
"@types/js-cookie": "^3.0.6",
"@wordpress/dom-ready": "^4.11.0",
"js-cookie": "^3.0.5",
"lodash.debounce": "^4.0.8"
},
"devDependencies": {
"@playwright/test": "^1.48.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/lodash.debounce": "^4.0.9",
"@types/wordpress__block-editor": "^11.5.15",
"@types/wordpress__blocks": "^12.5.14",
"@types/wordpress__edit-post": "^8.4.0",
"@types/wordpress__editor": "^14.3.1",
"@types/wordpress__wordcount": "^2.4.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@wordpress/api-fetch": "^7.11.0",
"@wordpress/babel-preset-default": "^7.42.0",
"@wordpress/block-editor": "^14.6.0",
"@wordpress/blocks": "^14.0.0",
"@wordpress/components": "^28.11.0",
"@wordpress/compose": "^7.11.0",
"@wordpress/core-data": "^7.11.0",
"@wordpress/data": "^10.11.0",
"@wordpress/e2e-test-utils-playwright": "^1.11.0",
"@wordpress/edit-post": "^8.11.0",
"@wordpress/editor": "^14.11.0",
"@wordpress/element": "^6.11.0",
"@wordpress/env": "^10.11.0",
"@wordpress/eslint-plugin": "^21.4.0",
"@wordpress/hooks": "^4.11.0",
"@wordpress/i18n": "^5.11.0",
"@wordpress/icons": "^10.11.0",
"@wordpress/plugins": "^7.11.0",
"@wordpress/scripts": "^27.9.0",
"@wordpress/url": "^4.11.0",
"@wordpress/wordcount": "^4.11.0",
"concurrently": "^9.0.1",
"eslint-plugin-jest": "^28.8.3",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3"
},
"devDependenciesComments": {
"@wordpress/babel-preset-default": "Don't upgrade to v8 or greater until the plugin requires WordPress 6.6. See https://github.com/WordPress/gutenberg/pull/62265/files",
"@wordpress/scripts": "Don't upgrade to v28 or greater until the plugin requires WordPress 6.6. See https://github.com/WordPress/gutenberg/pull/62265/files"
},
"overrides": {
"puppeteer-core": "^23.1.0"
},
"overridesComments": {
"puppeteer-core": "Remove once we have upgraded @wordpress/scripts to v29 or greater. See https://github.com/WordPress/gutenberg/pull/64597"
},
"scripts": {
"build": "wp-scripts build",
"dev:logs": "wp-env logs",
"dev:start": "wp-env start",
"dev:stop": "wp-env stop",
"lint": "concurrently \"npm:lint:*\"",
"lint:composer": "composer lint",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"plugin-zip": "wp-scripts plugin-zip",
"prepare": "husky",
"start": "wp-scripts start",
"test": "npm run test:unit",
"test:e2e": "wp-scripts test-playwright --config tests/e2e/playwright.config.ts",
"test:e2e:debug": "wp-scripts test-playwright --config tests/e2e/playwright.config.ts --ui",
"test:e2e:help": "wp-scripts test-e2e --help",
"test:unit": "wp-scripts test-unit-js",
"test:unit:debug": "wp-scripts --inspect-brk test-unit-js --runInBand --no-cache",
"test:unit:help": "wp-scripts test-unit-js --help",
"test:unit:watch": "wp-scripts test-unit-js --watch",
"wp-env": "wp-env"
}
}