-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.19 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.19 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
{
"name": "larc",
"private": true,
"type": "module",
"version": "1.1.0",
"description": "LARC (Lightweight Asynchronous Relay Core) — Page Area Network (PAN) examples and tests",
"scripts": {
"build": "node scripts/build.js",
"build:docs": "node scripts/render-markdown.mjs",
"build:api-docs": "node scripts/generate-docs.mjs",
"build:all": "npm run build && npm run build:docs && npm run build:api-docs",
"serve": "node scripts/dev-server.mjs",
"test": "node tests/lib/run-tests-with-server.mjs",
"test:headed": "node tests/lib/run-tests-with-server.mjs --headed",
"test:watch": "node tests/lib/run-tests-with-server.mjs --watch",
"test:file": "node tests/lib/run-tests-with-server.mjs",
"test:server": "node tests/lib/test-server.mjs",
"test:no-server": "node tests/lib/cli-runner.mjs",
"test:browser": "echo 'Open tests/index.html in your browser'",
"packages:sync": "node scripts/sync-dist.js",
"registry:build": "node scripts/build-registry.js",
"conformance:badge": "node scripts/run-conformance.mjs"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@playwright/test": "^1.55.1",
"esbuild": "^0.25.11"
}
}