{
  "name": "m68kdecode",
  "version": "1.1.4",
  "description": "Port of deplinenoise/m68kdecode to Typescript",
  "main": "out/src/index.js",
  "engines": {
    "node": "*"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/grahambates/m68kdecode"
  },
  "keywords": [
    "m68k",
    "68000",
    "assembly",
    "asm",
    "amiga",
    "commodore",
    "atari"
  ],
  "scripts": {
    "check": "npm run lint && npm run type-check && npm run test",
    "build": "tsc -p . --declaration",
    "watch": "npm run build -- --watch",
    "type-check": "npm run build -- --noEmit",
    "clean": "rimraf ./out/*",
    "lint": "eslint . --ext .ts",
    "lint-fix": "eslint . --ext .ts --fix",
    "test": "jest",
    "test-coverage": "jest --coverage",
    "prepare": "husky install",
    "generate": "python3 gendecoder.py imask.txt src/decode.ts"
  },
  "license": "MIT",
  "dependencies": {},
  "devDependencies": {
    "@types/jest": "^27.5.1",
    "@types/node": "^17.0.31",
    "@typescript-eslint/eslint-plugin": "^5.22.0",
    "@typescript-eslint/parser": "^5.22.0",
    "eslint": "^8.14.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-jest": "^26.2.2",
    "eslint-plugin-prettier": "^4.0.0",
    "husky": "^8.0.1",
    "jest": "^28.1.0",
    "prettier": "^2.6.2",
    "rimraf": "^3.0.2",
    "ts-jest": "^28.0.2",
    "typescript": "^4.6.4"
  }
}
