-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "js86emu",
"version": "0.3.0",
"description": "x86 emulator written in Javascript.",
"author": "Chad Rempp",
"license": "MIT",
"repository": "https://github.com/crempp/js86emu",
"homepage": "http://js86emu.chadrempp.com",
"main": "./dist/cli/cli.js",
"dependencies": {
"@babel/runtime": "^7.17.2",
"browser-process-hrtime": "^1.0.0",
"browserfs": "^2.0.0",
"bson": "^4.2.2",
"compression": "^1.7.4",
"next": "^12.1.0",
"pngjs": "^6.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"serve-static": "^1.14.1"
},
"devDependencies": {
"jest": "^27.5.1",
"jest-each": "^27.5.1",
"jest-junit": "^13.0.0"
},
"scripts": {
"build:web": "next build",
"build:cli": "babel src -d dist/cli --ignore src/site,src/web.js --source-maps --presets env -r babel-polyfill",
"test": "jest",
"start:cli": "node ./dist/cli/cli.js",
"start:web": "next start",
"start:dev": "next dev"
},
"jest": {
"verbose": false,
"testEnvironment": "node",
"testResultsProcessor": "jest-junit"
},
"jest-junit": {
"suiteName": "js86emu tests",
"output": "./coverage/junit.xml",
"classNameTemplate": "{classname}-{title}",
"titleTemplate": "{classname}-{title}",
"ancestorSeparator": " › ",
"usePathForSuiteName": "true"
}
}