-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.04 KB
/
package.json
File metadata and controls
23 lines (23 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "sysclone",
"version": "1.0.0",
"description": "Universal Web Interpreter/JIT compiler",
"type": "module",
"scripts": {
"build:catalog": "node tools/build_catalog.js",
"build:truth": "node tools/build_truth.js",
"truth:qbasic": "node tools/build_truth.js --target=qbasic && node tools/run_truth.js --target=qbasic",
"truth:pascal": "node tools/build_truth.js --target=pascal && node tools/run_truth.js --target=pascal",
"start": "npm run build:truth && npm run build:catalog && node server.js",
"test": "npm run build:truth && node tests/orchestrator.js",
"test:qbasic": "node tools/build_truth.js --target=qbasic && node tests/orchestrator.js qbasic",
"test:pascal": "node tools/build_truth.js --target=pascal && node tests/orchestrator.js pascal",
"test:hardware": "node tests/orchestrator.js hardware"
},
"repository": {
"type": "git",
"url": "git+[https://github.com/jfrelat-lab/sysclone.git](https://github.com/jfrelat-lab/sysclone.git)"
},
"author": "jfrelat-lab",
"license": "MIT"
}