-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
52
53
54
55
56
57
58
{
"name": "apple1js",
"version": "0.0.1",
"description": "An Apple 1 Emulator in Javascript",
"main": "dist/index.js",
"engines": {
"node": ">= 18"
},
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack-dev-server",
"lint": "eslint js",
"lint-fix": "eslint --fix js",
"start": "webpack-dev-server",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/whscullin/apple1js"
},
"keywords": [
"Apple 1",
"Emulator",
"Javascript"
],
"author": "Will Scullin",
"license": "MIT",
"bugs": {
"url": "https://github.com/whscullin/apple1js/issues"
},
"homepage": "https://github.com/whscullin/apple1js#readme",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@types/micromodal": "^0.3.3",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@types/jest": "^29.5.3",
"@types/node": "^18.19.39",
"ajv": "^6.9.2",
"babel-jest": "^29.5.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"node-forge": "^1.3.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.64.4",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"@whscullin/cpu6502": "file:submodules/cpu6502",
"micromodal": "^0.4.9"
}
}