-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.08 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.08 KB
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
{
"author": "Cédric Belin <cedx@outlook.com>",
"bugs": "https://github.com/cedx/php-minifier.js/issues",
"description": "Minify PHP source code by removing comments and whitespace.",
"homepage": "https://github.com/cedx/php-minifier.js",
"license": "MIT",
"name": "@cedx/php-minifier",
"repository": "cedx/php-minifier.js",
"type": "module",
"version": "8.0.0",
"bin": {
"PhpMinifier": "bin/PhpMinifier.js"
},
"dependencies": {
"fancy-log": "^2.0.0",
"plugin-error": "^2.0.1",
"vinyl": "^3.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/fancy-log": "^2.0.2",
"@types/gulp": "^4.0.17",
"@types/node": "^25.5.0",
"@types/vinyl": "^2.0.12",
"gulp": "^5.0.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
},
"engines": {
"node": ">=24.0.0"
},
"exports": {
"types": "./lib/Main.d.ts",
"default": "./lib/Main.js"
},
"files": [
"lib/",
"src/",
"www/"
],
"keywords": [
"compress",
"gulp",
"gulpplugin",
"minify",
"php"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "pwsh Invoke.ps1 Test"
}
}