-
-
Notifications
You must be signed in to change notification settings - Fork 424
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 2.11 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 2.11 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
{
"name": "php-debugbar",
"version": "1.0.0",
"description": "[](https://packagist.org/packages/php-debugbar/php-debugbar) [](https://packagist.org/packages/php-debugbar/php-debugbar) [](https://packagist.org/packages/php-debugbar/php-debugbar) [](https://github.com/php-debugbar/php-debugbar/actions/workflows/run-tests.yml)",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"type": "module",
"scripts": {
"build": "npm run build:hljs && npm run build:sqlformatter && npm run build:icons && npm run build:assets && npm run build:minify",
"build:assets": "php build/build-assets.php",
"build:hljs": "esbuild build/build-hljs.js --bundle --minify --format=iife --outfile=resources/vendor/highlightjs/highlight.pack.js",
"build:sqlformatter": "esbuild build/build-sqlformatter.js --bundle --minify --format=iife --outfile=resources/vendor/sql-formatter/sql-formatter.min.js",
"build:icons": "node build/build-icons.js",
"build:minify": "php build/build-assets.php && node build/build-minify.js",
"docs": "npm run build && php vendor/bin/phpunit --filter=testDocs && php build/build-docs.php && mkdocs build",
"lint": "eslint resources/**/*.js",
"lint:fix": "eslint resources/**/*.js --fix",
"lint:report": "eslint resources/**/*.js --output-file eslint-report.txt --format unix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@antfu/eslint-config": "^6.7.1",
"@eslint/js": "^9.39.2",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"eslint-plugin-jquery": "^1.5.1",
"globals": "^16.5.0"
},
"dependencies": {
"@sqltools/formatter": "^1.2.5",
"@tabler/icons": "^3.36.0",
"highlight.js": "^11.11.1"
}
}