apple2js/package.json

43 lines
1.0 KiB
JSON
Raw Normal View History

{
"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",
2019-03-05 03:55:35 +00:00
"dev": "webpack-dev-server",
"index": "scripts/index.pl > json/disks/index.js",
2020-04-24 03:57:59 +00:00
"lint": "eslint .",
2019-03-27 04:02:27 +00:00
"start": "webpack-dev-server",
"test": "jest"
},
2019-09-07 18:18:42 +00: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-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",
"ajv": "^6.12.0",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"file-loader": "^6.0.0",
"jest": "^25.1.0",
"raw-loader": "^4.0.0",
2020-03-22 23:35:27 +00:00
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
2020-03-22 23:35:27 +00:00
"micromodal": "^0.4.2"
}
}