-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 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
{
"name": "my-plugin-manager",
"version": "1.0.0",
"description": "A suggested plugin manager drop-in script for WordPress themes and plugins.",
"main": "gulpfile.js",
"scripts": {
"build": "npm run clean && gulp --gulpfile ./build/gulpfile.js",
"build:example": "gulp --gulpfile ./build/gulpfile.js build-example",
"build:php": "gulp --gulpfile ./build/gulpfile.js build-php",
"build:css": "gulp --gulpfile ./build/gulpfile.js build-css",
"build:js:notices": "gulp --gulpfile ./build/gulpfile.js build-js-notices",
"build:js:manager": "gulp --gulpfile ./build/gulpfile.js build-js-manager",
"build:js": "gulp --gulpfile ./build/gulpfile.js build-js",
"clean": "gulp --gulpfile ./build/gulpfile.js clean"
},
"repository": {
"type": "git",
"url": "https://github.com/themeblvd/my-plugin-manager.git"
},
"author": "Jason Bobich",
"license": "GPL-2.0+",
"bugs": {
"url": "https://github.com/themeblvd/my-plugin-manager/issues"
},
"homepage": "http://mypluginmanager.com",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^5.0.0",
"gulp-clean-css": "^3.9.4",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-replace-name": "^1.0.1",
"gulp-sass": "^4.0.1",
"unminified-webpack-plugin": "^2.0.0",
"webpack": "^4.16.2",
"webpack-stream": "^5.0.0"
}
}