forked from EduMake/walking-cpu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 KB
/
package.json
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
{
"name": "walking-cpu",
"version": "0.0.2",
"engines": {
"node": "16.x"
},
"description": "Educational exercise about the Fetch Decode Execute cycle",
"main": "schoolcpu.js",
"dependencies": {
"clone": "~0.1.15",
"mustache": "~0.8.1",
"handlebars": "~2.0.0-alpha.4",
"rng": "~0.2.2",
"array-shuffle": "~1.0.0",
"argparse": "~1.0.2"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-oe": "node schoolcpu.js -n 3,3,3,3 -o build -l UTCOLPOpenEvening -r UTCOLPOpenEvening -g 'Open Evening' ",
"build": "node schoolcpu.js -n 21,21,1,1 -o build -l OCR-GCSE -r UTCOLP -g Y9CO1 ",
"start": "npm run build; npx http-server build/"
},
"glitch": {
"projectType": "generated_static",
"watch": {
"install": {
"include": [
"^package\\.json$"
],
"exclude": []
},
"restart": {
"include": [
""
],
"exclude": []
},
"noSavedEvents": true
}
},
"repository": {
"type": "git",
"url": "git://github.com/UTCSheffield/walking-cpu.git"
},
"author": "Martyn Eggleton",
"license": "MIT",
"bugs": {
"url": "https://github.com/UTCSheffield/walking-cpu/issues"
}
}