-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
37 lines (37 loc) · 1.21 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
{
"title": "Simple User Listing",
"name": "simple-user-listing",
"version": "2.0.3",
"description": "Display a directory WordPress users",
"main": "Gruntfile.js",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/helgatheviking/simple-user-listing"
},
"bugs": {
"url": "https://github.com/helgatheviking/simple-user-listing/issues"
},
"author": "helgatheviking",
"devDependencies": {
"@wordpress/scripts": "^27.2.0",
"grunt": "^1.6.1",
"grunt-contrib-clean": "~2.0.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-copy": "~1.0.0",
"grunt-text-replace": "^0.4.0",
"grunt-wp-i18n": "~1.0.3",
"grunt-wp-readme-to-markdown": "~2.1.0",
"load-grunt-tasks": "~5.1.0"
},
"scripts": {
"build": "wp-scripts build --output-path=\"dist\" --webpack-copy-php",
"deploy": "npm run build && npm run makepot && grunt deploy",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"makepot": "composer run-script makepot",
"release": "npm run build && npm run makepot && grunt build",
"start": "wp-scripts start --output-path=\"dist\" --webpack-copy-php"
}
}