apple2js/package.json

29 lines
723 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",
2019-03-05 03:55:35 +00:00
"lint": "eslint js"
},
"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": {
"ajv": "^6.9.2",
"eslint": "^5.12.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
}
}