2019-01-09 08:51:25 +00:00
|
|
|
{
|
|
|
|
"name": "apple2js",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "Apple II Emulator in JavaScript",
|
|
|
|
"scripts": {
|
2019-03-01 18:14:34 +00:00
|
|
|
"build": "webpack --mode=production",
|
2021-03-26 18:42:30 +00:00
|
|
|
"dev": "webpack serve --mode=development",
|
2020-06-18 09:34:31 +00:00
|
|
|
"index": "bin/index > json/disks/index.js",
|
2020-11-07 23:49:05 +00:00
|
|
|
"lint": "eslint '**/*.js' '**/*.ts'",
|
2021-03-26 20:26:29 +00:00
|
|
|
"start": "webpack serve --mode=development",
|
2019-03-27 04:02:27 +00:00
|
|
|
"test": "jest"
|
2019-01-09 08:51:25 +00:00
|
|
|
},
|
2019-09-07 18:18:42 +00:00
|
|
|
"engines": {
|
|
|
|
"node": ">= 6"
|
|
|
|
},
|
2019-01-09 08:51:25 +00:00
|
|
|
"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",
|
2019-03-01 05:21:18 +00:00
|
|
|
"devDependencies": {
|
2020-03-22 23:35:27 +00:00
|
|
|
"@babel/core": "^7.9.0",
|
|
|
|
"@babel/preset-env": "^7.9.0",
|
2020-10-17 23:53:33 +00:00
|
|
|
"@types/jest": "^26.0.14",
|
2021-03-31 00:27:44 +00:00
|
|
|
"@types/micromodal": "^0.3.2",
|
2020-11-07 23:49:05 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.6.1",
|
|
|
|
"@typescript-eslint/parser": "^4.6.1",
|
2020-03-22 23:35:27 +00:00
|
|
|
"ajv": "^6.12.0",
|
2021-03-25 14:48:47 +00:00
|
|
|
"babel-jest": "^26.6.3",
|
|
|
|
"eslint": "^7.22.0",
|
2020-03-22 23:35:27 +00:00
|
|
|
"file-loader": "^6.0.0",
|
2021-02-08 04:52:16 +00:00
|
|
|
"jest": "^26.6.3",
|
2020-09-20 13:42:29 +00:00
|
|
|
"node-forge": "^0.10.0",
|
2020-01-02 19:11:04 +00:00
|
|
|
"raw-loader": "^4.0.0",
|
2021-02-08 04:52:16 +00:00
|
|
|
"ts-jest": "^26.5.0",
|
|
|
|
"ts-loader": "^8.0.15",
|
|
|
|
"typescript": "^4.1.3",
|
2021-03-25 14:48:47 +00:00
|
|
|
"webpack": "^5.28.0",
|
|
|
|
"webpack-cli": "^4.5.0",
|
2021-03-26 20:21:45 +00:00
|
|
|
"webpack-dev-server": "^4.0.0-beta.1"
|
2019-03-13 04:11:00 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-03-23 20:02:31 +00:00
|
|
|
"apple2shader": "whscullin/apple2shader#f42252d8c2ad7055e3e5f5c39e235a710804e7a6",
|
2020-03-22 23:35:27 +00:00
|
|
|
"micromodal": "^0.4.2"
|
2019-01-09 08:51:25 +00:00
|
|
|
}
|
|
|
|
}
|