-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
35 lines (35 loc) · 1.22 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
{
"name": "edit-author-slug",
"version": "1.9.1",
"main": "Gruntfile.js",
"author": "Brandon Allen",
"description": "Allows an admin (or capable user) to edit the author slug of a user, and change the author base.",
"license": "GPL-2.0-or-later",
"repository": "github:thebrandonallen/edit-author-slug",
"devDependencies": {
"@wordpress/env": "~10.3.0",
"@wordpress/eslint-plugin": "~16.0.13",
"eslint": "~8.57.0",
"grunt": "~1.6.1",
"grunt-checktextdomain": "~1.0.1",
"grunt-contrib-clean": "~2.0.1",
"grunt-contrib-concat": "~2.1.0",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-watch": "~1.1.0",
"grunt-legacy-util": "~2.0.1",
"grunt-string-replace": "~1.3.3",
"grunt-wp-i18n": "~1.0.3",
"grunt-wp-readme-to-markdown": "~2.1.0",
"matchdep": "~2.0.0",
"terser": "~5.31.3"
},
"scripts": {
"grunt": "grunt",
"eslint": "eslint",
"eslint:fix": "eslint --fix",
"build:js": "terser js/edit-author-slug.js --compress --mangle --output js/edit-author-slug.min.js --format",
"version": "npm --no-git-tag-version version",
"wp-env": "wp-env",
"test-php": "npm run wp-env run cli -- --env-cwd=wp-content/plugins/edit-author-slug composer test"
}
}