apple2js/package.json

50 lines
1.3 KiB
JSON
Raw Normal View History

{
"name": "apple2js",
"version": "0.0.1",
"description": "Apple II Emulator in JavaScript",
"scripts": {
2019-03-01 10:14:34 -08:00
"build": "webpack --mode=production",
2019-03-04 19:55:35 -08:00
"dev": "webpack-dev-server",
2020-06-18 02:34:31 -07:00
"index": "bin/index > json/disks/index.js",
2020-11-07 15:49:05 -08:00
"lint": "eslint '**/*.js' '**/*.ts'",
2019-03-26 21:02:27 -07:00
"start": "webpack-dev-server",
"test": "jest"
},
2019-09-07 11:18:42 -07:00
"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",
2019-02-28 21:21:18 -08:00
"devDependencies": {
2020-03-22 16:35:27 -07:00
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@types/jest": "^26.0.14",
2020-11-07 15:49:05 -08:00
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
2020-03-22 16:35:27 -07:00
"ajv": "^6.12.0",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"file-loader": "^6.0.0",
"jest": "^25.5.4",
2020-09-20 06:42:29 -07:00
"node-forge": "^0.10.0",
"raw-loader": "^4.0.0",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.5",
"typescript": "^4.0.3",
2020-03-22 16:35:27 -07:00
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
2020-09-07 12:49:06 -07:00
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
2020-03-22 16:35:27 -07:00
"micromodal": "^0.4.2"
}
}