-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
85 lines (85 loc) · 2.52 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "6502.ts",
"version": "1.1.4",
"description": "A 6502 emulator written in typescript",
"author": "[email protected]",
"license": "MIT",
"files": [
"lib"
],
"keywords": [
"emulation",
"6502",
"vcs",
"atari",
"2600"
],
"repository": {
"type": "git",
"url": "https://github.com/6502ts/6502.ts.git"
},
"dependencies": {
"async-mutex": "^0.4.0",
"dasm": "^6.0.1",
"md5": "^2.3.0",
"microevent.ts": "^0.2.1",
"screenfull": "^6.0.2",
"seedrandom": "^3.0.3",
"setimmediate2": "^3.0.0",
"thumbulator.ts": "^0.3.1",
"tslib": "^2.4.0",
"worker-rpc": "^0.2.0"
},
"devDependencies": {
"@progress/jszip-esm": "^1.0.3",
"@types/argparse": "^2.0.0",
"@types/deep-equal": "^1.0.1",
"@types/file-saver": "^2.0.1",
"@types/md5": "^2.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.16",
"@types/seedrandom": "^3.0.2",
"argparse": "^2.0.1",
"buffer": "^6.0.3",
"css-loader": "^6.7.1",
"deep-equal": "^2.0.3",
"dexie": "^3.2.2",
"elm": "^0.19.1-5",
"elm-format": "^0.8.5",
"elm-test": "^0.19.1-revision9",
"elm-webpack-loader": "^8.0.0",
"file-saver": "^2.0.2",
"filemanager-webpack-plugin": "^7.0.0",
"inversify": "^6.0.1",
"live-server": "^1.2.2",
"mini-css-extract-plugin": "^2.6.1",
"mocha": "^10.0.0",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rangetouch": "^2.0.1",
"reflect-metadata": "^0.1.13",
"sass": "^1.54.9",
"sass-loader": "^13.0.2",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typedoc": "^0.26.5",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.0",
"webpack-merge": "^5.8.0",
"workbox-cli": "^6.5.4"
},
"resolutions": {
"find-elm-dependencies": "DirtyHairy/find-elm-dependencies#fix-leading-block-comment"
},
"scripts": {
"test": "mocha --require ts-node/register -u tdd -R spec 'tests/ts/**/*.ts' && elm-test",
"build": "rm -fr dist; webpack --mode production -c ./webpack.config.js && workbox generateSW ./workbox.config.js && typedoc",
"watch": "rm -fr dist-dev; mkdir -p dist-dev && cp html/dev-index.html dist-dev/index.html && webpack --watch --mode development -c ./webpack.config.js",
"serve": "node node_modules/.bin/live-server --no-browser --port=6502 --no-css-inject ./dist-dev",
"start": "run-p watch serve",
"prepublishOnly": "rm -fr lib; tsc -p tsconfig.npm.json"
}
}