-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 926 Bytes
/
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": "8-bit-cpu-emulator",
"version": "1.0.0",
"description": "",
"main": "emulator.js",
"scripts": {
"build": "webpack",
"start": "webpack serve --open",
"test": "jest",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/addamichal/8-bit-cpu-emulator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/addamichal/8-bit-cpu-emulator/issues"
},
"homepage": "https://github.com/addamichal/8-bit-cpu-emulator#readme",
"devDependencies": {
"@types/jest": "^29.5.0",
"http-server": "^14.1.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.3",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3"
}
}