-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.46 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.46 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
{
"name": "queryjson",
"version": "1.0.0",
"description": "Transform, query, and explore JSON data with an interactive table viewer and SQL queries powered by PGLite",
"main": "index.html",
"scripts": {
"start": "npx http-server -p 8000 -o",
"dev": "npx http-server -p 8000 -o -c-1",
"minify:js": "terser static/js/app.js -o static/js/app.min.js --compress --mangle",
"minify:css": "csso static/css/styles.css --output static/css/styles.min.css",
"cache-bust": "node scripts/cache-bust.js",
"minify": "npm run minify:js && npm run minify:css && npm run cache-bust",
"build": "npm run minify",
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug"
},
"devDependencies": {
"terser": "^5.36.0",
"csso-cli": "^4.0.2",
"@playwright/test": "^1.40.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dinesh-it/queryjson.git"
},
"keywords": [
"json",
"table",
"converter",
"sql",
"query",
"pglite",
"json-viewer",
"json-explorer",
"data-analysis",
"data-transformation",
"csv-export",
"postgresql",
"browser-database"
],
"author": "Dinesh D",
"license": "MIT",
"bugs": {
"url": "https://github.com/dinesh-it/queryjson/issues"
},
"homepage": "https://github.com/dinesh-it/queryjson#readme"
}