-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 4.52 KB
/
package.json
File metadata and controls
133 lines (133 loc) · 4.52 KB
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "wp-parsely",
"version": "3.22.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": ">=22.15.0",
"npm": ">=10.9.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.37.0",
"js-cookie": "^3.0.5",
"lodash.debounce": "^4.0.8"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/jest": "^30.0.0",
"@types/js-cookie": "^3.0.6",
"@types/lodash.debounce": "^4.0.9",
"@types/react-router": "^5.1.20",
"@types/wordpress__block-editor": "^11.5.17",
"@types/wordpress__blocks": "^12.5.18",
"@types/wordpress__edit-post": "^8.4.2",
"@types/wordpress__wordcount": "^2.4.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@wordpress/api-fetch": "7.37",
"@wordpress/babel-preset-default": "^7.42.0",
"@wordpress/block-editor": "^15.9.0",
"@wordpress/blocks": "^15.10.0",
"@wordpress/components": "^31.0.0",
"@wordpress/compose": "^7.37.0",
"@wordpress/core-data": "^7.37.0",
"@wordpress/data": "^10.37.0",
"@wordpress/date": "^5.37.0",
"@wordpress/e2e-test-utils-playwright": "^1.37.0",
"@wordpress/edit-post": "^8.37.0",
"@wordpress/editor": "^14.37.0",
"@wordpress/element": "^6.37.0",
"@wordpress/env": "^10.37.0",
"@wordpress/eslint-plugin": "^23.0.0",
"@wordpress/hooks": "^4.37.0",
"@wordpress/i18n": "^6.10.0",
"@wordpress/icons": "^11.4.0",
"@wordpress/plugins": "^7.37.0",
"@wordpress/scripts": "^27.9.0",
"@wordpress/url": "^4.37.0",
"@wordpress/wordcount": "^4.37.0",
"concurrently": "^9.2.1",
"eslint-plugin-jest": "^28.14.0",
"husky": "^9.1.7",
"lodash.debounce": "^4.0.8",
"prettier": "^3.7.4",
"react-router": "^7.12.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.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": {
"del": "^6.1.1",
"express": "^4.22.0",
"glob": "^10.5.0",
"js-yaml@^3": "3.14.2",
"node-forge": "^1.3.2",
"puppeteer-core": "^23.1.0",
"qs": "^6.14.1"
},
"overridesComments": {
"del": "Fixes `npm run build`.",
"express": "Security update to v4.22.0 or later. Keep until @wordpress/scripts gets upgraded.",
"glob": "Security update to v10.5.0 or later.",
"js-yaml@^3": "Security update to v3.14.2. Keep until @wordpress/scripts gets upgraded.",
"node-forge": "Security update to v1.3.2 or later. Keep until @wordpress/scripts gets upgraded.",
"puppeteer-core": "Security update to v23.1.0 or later. Keep until @wordpress/scripts gets upgraded.",
"qs": "Security update to v6.14.1 or later. Keep until @wordpress/scripts gets upgraded."
},
"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"
}
}