-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.1 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
{
"name": "from-zero-to-computer",
"version": "1.0.0",
"description": "From Zero to Computer TS",
"author": "Sereno",
"license": "ISC",
"@std/esm": "cjs",
"main": "main.js",
"dependencies": {
"benchmark": "^2.1.4",
"colors": "^1.4.0"
},
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/chai": "^4.2.4",
"@types/colors": "^1.2.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.6",
"chai": "^4.2.0",
"fast-check": "^1.18.1",
"mocha": "^6.2.2",
"npm": "^6.13.4",
"ts-node": "^8.4.1",
"typescript": "^3.7.2"
},
"scripts": {
"6502": "npm run build; node build/6502/main.js",
"build": "tsc",
"test": "mocha -r ts-node/register test/**/*.test.ts",
"sap1": "npm run build; node build/sap1/main.js",
"6502emu": "npm run build; node build/6502-emu/main.js",
"perf": "npm run build; node build/performance.js",
"prof": "npm run build; node --prof --cpu-profiler-sampling-interval=10 build/performance.js"
}
}