{
  "name": "disassembler-x86-intel",
  "version": "1.0.8",
  "description": "An Intel x86 disassembler, generates assembly from Opcode",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "test": "node node_modules/mocha/bin/mocha tests/**.test.ts --require register --ui bdd --reporter spec",
    "build": "tsc",
    "format": "prettier --write \"src/**/*.ts\"",
    "lint": "tslint -p tsconfig.json",
    "prepare": "npm run build",
    "prepublishOnly": "npm run lint",
    "preversion": "npm run lint",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Jensen-Mourat/disassembler-intel-x86.git"
  },
  "keywords": [
    "disassembler",
    "Intel",
    "opcodes",
    "disassembly",
    "x86"
  ],
  "author": "Jensen Mourat",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/Jensen-Mourat/disassembler-intel-x86/issues"
  },
  "homepage": "https://github.com/Jensen-Mourat/disassembler-intel-x86#readme",
  "devDependencies": {
    "@testdeck/mocha": "^0.1.2",
    "@types/chai": "^4.2.14",
    "benny": "^3.6.15",
    "chai": "^4.2.0",
    "mocha": "^8.2.1",
    "nyc": "^15.1.0",
    "prettier": "^2.2.1",
    "ts-mockito": "^2.6.1",
    "ts-node": "^9.1.1",
    "tslint": "^6.1.3",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^4.1.3"
  },
  "dependencies": {
    "32bit-adressing-table-modrm": "^1.0.14",
    "@types/node": "^14.14.31"
  }
}
