mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
73 lines
2.1 KiB
JSON
73 lines
2.1 KiB
JSON
{
|
|
"name": "apple2js",
|
|
"version": "0.0.1",
|
|
"description": "Apple II Emulator in JavaScript",
|
|
"scripts": {
|
|
"build": "rimraf dist/* && webpack --mode=production",
|
|
"dev": "webpack serve --mode=development",
|
|
"index": "bin/index > json/disks/index.js",
|
|
"lint": "eslint '**/*.js' '**/*.ts' '**/*.tsx'",
|
|
"start": "webpack serve --mode=development --progress",
|
|
"test": "jest"
|
|
},
|
|
"engines": {
|
|
"node": ">= 6"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/whscullin/apple2js.git"
|
|
},
|
|
"author": "Will Scullin",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/whscullin/apple2js/issues"
|
|
},
|
|
"homepage": "https://github.com/whscullin/apple2js#readme",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.9.0",
|
|
"@babel/plugin-transform-react-jsx": "^7.17.3",
|
|
"@babel/preset-env": "^7.9.0",
|
|
"@babel/preset-typescript": "^7.16.7",
|
|
"@testing-library/dom": "^7.30.3",
|
|
"@testing-library/jest-dom": "^5.16.4",
|
|
"@testing-library/preact": "^3.0.1",
|
|
"@testing-library/user-event": "^13.1.3",
|
|
"@types/jest": "^27.0.2",
|
|
"@types/jest-image-snapshot": "^4.3.1",
|
|
"@types/micromodal": "^0.3.2",
|
|
"@types/wicg-file-system-access": "^2020.9.5",
|
|
"@typescript-eslint/eslint-plugin": "^5.27.0",
|
|
"@typescript-eslint/parser": "^5.27.0",
|
|
"ajv": "^6.12.0",
|
|
"babel-jest": "^27.2.4",
|
|
"canvas": "^2.8.0",
|
|
"css-loader": "^6.7.1",
|
|
"eslint": "^8.17.0",
|
|
"eslint-plugin-jest": "^26.4.3",
|
|
"eslint-plugin-react": "^7.30.0",
|
|
"eslint-plugin-react-hooks": "^4.5.0",
|
|
"file-loader": "^6.0.0",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"jest": "^27.2.4",
|
|
"jest-image-snapshot": "^4.5.1",
|
|
"node-forge": "^1.3.0",
|
|
"raw-loader": "^4.0.0",
|
|
"rimraf": "^3.0.2",
|
|
"style-loader": "^3.3.1",
|
|
"ts-jest": "^27.0.5",
|
|
"ts-loader": "^9.3.0",
|
|
"typescript": "^4.7.3",
|
|
"webpack": "^5.28.0",
|
|
"webpack-cli": "^4.9.1",
|
|
"webpack-dev-server": "^4.6.0",
|
|
"webpack-merge": "^5.8.0",
|
|
"y18n": "^4.0.1"
|
|
},
|
|
"dependencies": {
|
|
"apple2shader": "0.0.3",
|
|
"classnames": "^2.3.1",
|
|
"micromodal": "^0.4.2",
|
|
"preact": "^10.7.1"
|
|
}
|
|
}
|