-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
43 lines (43 loc) · 1.42 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
{
"name": "wordpress-base-plugin",
"author": "Daniel M. Hendricks",
"license": "GPL-2.0-or-later",
"private": true,
"config": {
"plugin_name": "WordPress Base Plugin",
"plugin_short_name": "Base Plugin",
"username": "dmhendricks",
"php_namespace": "VendorName\\PluginName",
"prefix": "wpbp"
},
"scripts": {
"translate": "wp-pot --src 'app/**/*.php' --dest-file ./languages/$npm_package_name.pot --package $npm_package_name",
"zip": "zip -q -r ../$npm_package_name.zip * -x 'node_modules/*' '.git*' './src/*' './.*' './package*.*' './composer.*' './*.md' './*.bak' './bower.json' './gulpfile.js' ",
"zip-dev": "zip -q -r ../$npm_package_name.zip * -x 'node_modules/*' '.git*' '.DS_Store' './*.bak' "
},
"devDependencies": {
"del": "^3.0",
"gulp": "^4.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-batch-replace": "*",
"gulp-concat": "^2.6.1",
"gulp-filter": "^5.1.0",
"gulp-line-ending-corrector": "^1.0.3",
"gulp-merge-media-queries": "^0.2.1",
"gulp-notify": "^3.1.0",
"gulp-plumber": "^1.2",
"gulp-rename": "^1.4.0",
"gulp-sass": "^3.2.1",
"gulp-simple-rename": "^0.1.3",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^3.0.1",
"gulp-uglifycss": "^1.1.0",
"vinyl-paths": "^2.1.0",
"wp-pot-cli": "^1.0"
},
"repository": {
"type": "git",
"url": "git://github.com/dmhendricks/wordpress-base-plugin.git"
},
"dependencies": {}
}