forked from cedx/php-minifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.16 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
{
"bugs": "https://github.com/cedx/gulp-php-minify/issues",
"description": "Gulp plug-in minifying PHP source code by removing comments and whitespace.",
"homepage": "https://dev.belin.io/gulp-php-minify",
"license": "MIT",
"main": "lib/index.js",
"name": "@cedx/gulp-php-minify",
"repository": "github:cedx/gulp-php-minify",
"type": "module",
"version": "10.0.0",
"author": {
"email": "[email protected]",
"name": "Cédric Belin",
"url": "https://belin.io"
},
"dependencies": {
"@cedx/which": "^6.0.0",
"fancy-log": "^1.3.3",
"node-fetch": "^2.6.0",
"vinyl": "^2.2.0"
},
"devDependencies": {
"@cedx/coveralls": "^9.0.0",
"chai": "^4.2.0",
"del": "^5.0.0",
"eslint": "^6.0.1",
"esm": "^3.2.25",
"gulp": "^4.0.2",
"jsdoc": "^3.6.2",
"mocha": "^6.1.4",
"nyc": "^14.1.1"
},
"engines": {
"node": ">=12.6.0",
"npm": ">=6.9.0"
},
"keywords": [
"compress",
"esm",
"gulp",
"gulpplugin",
"minify",
"php"
],
"peerDependencies": {
"gulp": ">=4.0.0"
},
"scripts": {
"coverage": "gulp coverage",
"start": "gulp watch",
"test": "gulp test"
}
}