-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 2.21 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
{
"name": "@aprismlab/aprismwarp",
"version": "26.0.0-alpha.1",
"private": true,
"description": "AprismWarp native project and IR tooling",
"license": "GPL-3.0-only",
"type": "commonjs",
"scripts": {
"test": "node --test test/ir/validate.test.js test/aep/inspect.test.js test/awe/inspect.test.js test/awp/archive.test.js test/awp/archive-schema.test.js test/schema/validate.test.js test/schema/awp-schemas.test.js test/extension/manifest.test.js test/extension/lock.test.js test/extension/lock.aje.test.js test/extension/lock.awe.test.js test/compile/aep.test.js test/compile/aje.test.js test/compile/integration.test.js test/compile/java.test.js test/compile/target-profile.test.js test/wizard/project.test.js test/projects/store.test.js test/bridge/server.test.js test/bridge/store-endpoints.test.js",
"validate:example": "node scripts/validate-example.js",
"test:aep": "node --test test/aep/inspect.test.js",
"inspect:aep": "node scripts/inspect-aep.js",
"inspect:awe": "node scripts/inspect-awe.js",
"test:awp": "node --test test/awp/archive.test.js",
"test:awp:schema": "node --test test/awp/archive-schema.test.js",
"test:extension": "node --test test/extension/manifest.test.js",
"test:lock": "node --test test/extension/lock.test.js",
"test:lock:aje": "node --test test/extension/lock.aje.test.js",
"test:compile": "node --test test/compile/aep.test.js",
"test:compile:aje": "node --test test/compile/aje.test.js",
"test:compile:java": "node --test test/compile/java.test.js",
"test:compile:profile": "node --test test/compile/target-profile.test.js",
"test:bridge": "node --test test/bridge/server.test.js",
"test:desktop": "node --test desktop/test/app-core.test.js",
"desktop": "npm --prefix desktop start",
"test:schema": "node --test test/schema/validate.test.js test/schema/awp-schemas.test.js",
"test:ir": "node --test test/ir/validate.test.js",
"generate:aep": "node scripts/generate-aep.js",
"generate:aje": "node scripts/generate-aje.js",
"verify:aep-lock": "node scripts/verify-aep-lock.js",
"verify:aje-lock": "node scripts/verify-aje-lock.js",
"host:bridge": "node scripts/host-bridge.js"
},
"engines": {
"node": ">=20"
}
}