-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.52 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
{
"name": "show-hide-section",
"version": "3.0.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.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@happyprime/eslint-config": "^0.0.12",
"@wordpress/browserslist-config": "^6.11.0",
"@wordpress/dependency-extraction-webpack-plugin": "^6.11.0",
"@wordpress/npm-package-json-lint-config": "^5.11.0",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"npm-package-json-lint": "^8.0.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"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 ./"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"npmpackagejsonlint": {
"extends": "@wordpress/npm-package-json-lint-config"
}
}