-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.97 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "wp-bulk-process-template",
"version": "1.0.0",
"description": "A WordPress plugin template to perform a bulk process with Ajax without worrying about memory exceed or timeout problems.",
"main": "gulpfile.js",
"scripts": {
"preinstall": "npx npm-force-resolutions",
"dev": "gulp watch",
"build": "gulp build",
"makepot": "gulp makepot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vijayhardaha/wp-bulk-process-template.git"
},
"keywords": [
"wordpress",
"wordpress-plugin",
"wordpress-site",
"wordpress-ajax",
"wordpress-development-kit",
"wp-ajax-handler",
"wp-ajax",
"wp-ajax-boilerplate",
"wp-async",
"wp-ajax-async"
],
"author": "Vijay Hardaha <https://twitter.com/vijayhardaha>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vijayhardaha/wp-bulk-process-template/issues"
},
"homepage": "https://github.com/vijayhardaha/wp-bulk-process-template#readme",
"devDependencies": {
"asset-builder": "^2.0.0",
"autoprefixer": "^10.4.0",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-cssbeautify": "^3.0.0",
"gulp-group-css-media-queries": "^1.2.2",
"gulp-jshint": "^2.1.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.0.0",
"gulp-strip-css-comments": "^2.0.0",
"gulp-terser": "^2.1.0",
"jshint": "^2.13.1",
"lazypipe": "^1.0.2",
"merge-stream": "^2.0.0",
"ora": "^5.4.1",
"postcss": "^8.4.3",
"postcss-discard-duplicates": "^5.0.1",
"prompts": "^2.4.2",
"replace-in-file": "^6.3.2",
"rimraf": "^3.0.2",
"sass": "^1.43.5",
"wp-pot": "^1.9.9"
},
"resolutions": {
"ansi-regex": "^=5.0.1",
"glob-parent": "^=5.1.2",
"json-schema": "^0.4.0",
"nth-check": "^=2.0.1",
"object-path": "^0.11.8",
"semver-regex": "^3.1.3",
"trim-newlines": "^=3.0.1"
}
}