-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.11 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
{
"bugs": "https://github.com/cedx/php-minifier/issues",
"description": "Minify PHP source code by removing comments and whitespace.",
"homepage": "https://github.com/cedx/php-minifier",
"license": "MIT",
"name": "@cedx/php-minifier",
"repository": "cedx/php-minifier",
"type": "module",
"version": "5.0.2",
"author": {
"email": "[email protected]",
"name": "Cédric Belin",
"url": "https://belin.io"
},
"bin": {
"php_minifier": "bin/php_minifier.js"
},
"dependencies": {
"fancy-log": "^2.0.0",
"plugin-error": "^2.0.1"
},
"devDependencies": {
"@coffeelint/cli": "^5.2.11",
"@types/fancy-log": "^2.0.2",
"@types/gulp": "^4.0.17",
"@types/node": "^22.9.0",
"coffeescript": "^2.7.0",
"gulp": "^5.0.0",
"vinyl": "^3.0.0"
},
"engines": {
"node": ">=22.0.0"
},
"exports": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"files": [
"lib/",
"src/",
"www/"
],
"keywords": [
"compress",
"gulp",
"gulpplugin",
"minify",
"php"
],
"peerDependencies": {
"gulp": ">=5.0.0"
},
"scripts": {
"start": "node bin/php_minifier.js --help",
"test": "gulp test"
}
}