-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.82 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.82 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "jsgui3-server",
"main": "module.js",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.29.0",
"@babel/generator": "^7.29.0",
"@babel/parser": "^7.29.0",
"cookies": "^0.9.1",
"esbuild": "^0.27.1",
"fnl": "^0.0.37",
"fnlfs": "^0.0.34",
"jsgui3-client": "^0.0.129",
"jsgui3-html": "^0.0.186",
"jsgui3-webpage": "^0.0.8",
"jsgui3-website": "^0.0.8",
"lang-tools": "^0.0.45",
"mocha": "^11.7.5",
"multiparty": "^4.2.3",
"ncp": "^2.0.0",
"obext": "^0.0.34",
"rimraf": "^6.1.2",
"sass": "^1.77.6",
"stream-to-array": "^2.3.0",
"url-parse": "^1.5.10"
},
"devDependencies": {
"playwright": "^1.58.2",
"puppeteer": "^19.11.1"
},
"commentDeps": {
"babel-plugin-minify-dead-code-elimination": "^0.5.0",
"babel-plugin-remove-comments": "^2.0.0",
"babel-plugin-transform-class": "^0.3.0",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-es2015-object-super": "^6.24.1"
},
"engines": {
"node": ">=15.0.0"
},
"description": "ES6 JSGUI Server. Delivers the client to the browser.",
"author": "James Vickers <james@metabench.com>",
"repository": {
"type": "git",
"url": "https://github.com/metabench/jsgui3-server.git"
},
"version": "0.0.155",
"scripts": {
"cli": "node cli.js",
"serve": "node cli.js serve",
"test": "node tests/test-runner.js",
"test:mocha": "mocha tests/**/*.test.js",
"test:bundlers": "node tests/test-runner.js --test=bundlers.test.js",
"test:assigners": "node tests/test-runner.js --test=assigners.test.js",
"test:publishers": "node tests/test-runner.js --test=publishers.test.js",
"test:config": "node tests/test-runner.js --test=configuration-validation.test.js",
"test:admin-ui": "node tests/test-runner.js --test=admin-ui-render.test.js",
"test:serve": "node tests/test-runner.js --test=serve.test.js",
"test:serve:resources": "node tests/test-runner.js --test=serve-resources.test.js",
"test:resources:process": "node tests/test-runner.js --test=process-resource.test.js",
"test:resources:remote": "node tests/test-runner.js --test=remote-process-resource.test.js",
"test:resources:pool": "node tests/test-runner.js --test=server-resource-pool.test.js",
"test:sse": "node tests/test-runner.js --test=http-sse-publisher.test.js",
"test:e2e": "node tests/test-runner.js --test=end-to-end.test.js",
"test:content": "node tests/test-runner.js --test=content-analysis.test.js",
"test:bundler:cache": "node tests/test-runner.js --test=control-optimizer-cache-behavior.test.js",
"test:bundler:elimination:static-brackets": "node tests/test-runner.js --test=control-elimination-static-bracket-access.test.js",
"test:bundler:elimination:root-features": "node tests/test-runner.js --test=control-elimination-root-feature-pruning.test.js",
"test:performance": "node tests/test-runner.js --test=performance.test.js",
"test:errors": "node tests/test-runner.js --test=error-handling.test.js",
"test:examples:controls": "node tests/test-runner.js --test=examples-controls.e2e.test.js",
"test:playwright:install": "npx playwright install chromium",
"test:playwright:smoke": "node tests/test-runner.js --test=playwright-smoke.test.js",
"test:puppeteer:bundling": "node tests/test-runner.js --test=bundling-default-control-elimination.puppeteer.test.js",
"test:puppeteer:project-local-controls": "node tests/test-runner.js --test=project-local-controls-bundling.puppeteer.test.js",
"test:puppeteer:windows": "node tests/test-runner.js --test=window-examples.puppeteer.test.js",
"test:puppeteer:resources": "node tests/test-runner.js --test=window-resource-integration.puppeteer.test.js",
"test:debug": "node tests/test-runner.js --debug",
"test:verbose": "node tests/test-runner.js --verbose"
}
}