apple2js/package.json

38 lines
946 B
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",
"lint": "eslint js",
2019-03-27 04:02:27 +00:00
"start": "webpack-dev-server",
"test": "jest"
},
"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": {
2019-03-27 04:02:27 +00:00
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
2019-03-01 05:21:18 +00:00
"ajv": "^6.9.2",
2019-03-27 04:02:27 +00:00
"babel-jest": "^24.5.0",
2019-06-26 21:42:22 +00:00
"eslint": "^5.16.0",
"jest": "^24.8.0",
2019-03-01 05:21:18 +00:00
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"micromodal": "^0.3.2"
}
}