-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 978 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
36
37
{
"name": "chip-8-emulator",
"version": "0.0.1",
"description": "A Chip-8 emulator written in TypeScript",
"private": true,
"scripts": {
"start": "ts-node -r tsconfig-paths/register",
"build": "webpack",
"build:watch": "webpack --watch",
"test": "mocha --check-leaks -r ts-node/register -r tsconfig-paths/register \"src/test/**/*.spec.ts\""
},
"keywords": [
"Chip-8",
"Emulator",
"Interpreter",
"TypeScript"
],
"author": "Jack Hodgkiss",
"license": "MIT",
"devDependencies": {
"@types/chai": "4.3.0",
"@types/mocha": "9.1.0",
"@types/node": "17.0.23",
"chai": "4.3.6",
"css-loader": "6.7.1",
"html-webpack-plugin": "5.5.0",
"mini-css-extract-plugin": "2.6.0",
"mocha": "9.2.2",
"ts-loader": "9.2.8",
"ts-node": "10.7.0",
"tsconfig-paths": "3.14.1",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.6.3",
"webpack": "5.70.0",
"webpack-cli": "4.9.2"
}
}