-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.81 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
{
"name": "show-hide-section",
"version": "3.1.0",
"description": "Display an accessible show/hide interface with details and summary elements.",
"author": "Happy Prime",
"license": "GPL-2.0-or-later",
"keywords": [
"plugin",
"wordpress"
],
"homepage": "https://github.com/happyprime/show-hide-section-block/",
"repository": {
"type": "git",
"url": "git+https://github.com/happyprime/show-hide-section-block.git"
},
"bugs": {
"url": "https://github.com/happyprime/show-hide-section-block/"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/plugin-transform-runtime": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/preset-react": "^7.29.7",
"@happyprime/eslint-config": "^1.0.0",
"@playwright/test": "^1.60.0",
"@wordpress/dependency-extraction-webpack-plugin": "^6.48.0",
"@wordpress/e2e-test-utils-playwright": "1.46.0",
"@wordpress/env": "^11.7.0",
"@wordpress/npm-package-json-lint-config": "^5.48.0",
"babel-loader": "^10.1.1",
"copy-webpack-plugin": "^14.0.0",
"npm-package-json-lint": "^10.4.0",
"webpack": "^5.107.2",
"webpack-cli": "^7.0.3"
},
"scripts": {
"build": "webpack --mode production",
"start": "webpack --mode development --watch",
"lint": "eslint .",
"fix": "eslint . --fix",
"lint:package": "node ./node_modules/npm-package-json-lint/dist/cli.js ./",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"env:start": "wp-env start",
"env:update": "wp-env start --update",
"env:stop": "wp-env stop",
"env:destroy": "wp-env destroy",
"env:cli": "wp-env run cli",
"env:logs": "wp-env logs"
},
"npmpackagejsonlint": {
"extends": "@wordpress/npm-package-json-lint-config"
}
}