{
  "name": "@scalenc/lst-format",
  "version": "1.5.0",
  "description": "Library for handling TRUMPF LST file format.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "lint": "eslint .",
    "test": "mocha",
    "coverage": "nyc --reporter lcov --reporter text yarn test",
    "build": "tsc",
    "prepublish": "tsc"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/scalenc/lst-format.git"
  },
  "keywords": [
    "NC",
    "CNC",
    "computer numerical control",
    "LST",
    "machine",
    "laser",
    "punch",
    "bend",
    "TRUMPF"
  ],
  "author": "scalenc",
  "bugs": {
    "url": "https://github.com/scalenc/lst-format/issues"
  },
  "homepage": "https://github.com/scalenc/lst-format",
  "dependencies": {
    "reflect-metadata": "^0.1.13"
  },
  "devDependencies": {
    "@types/chai": "^4.2.21",
    "@types/mocha": "^8.2.3",
    "@types/node": "^16.3.1",
    "@typescript-eslint/eslint-plugin": "^4.28.3",
    "@typescript-eslint/parser": "^4.28.3",
    "chai": "^4.3.4",
    "commitlint": "^12.1.4",
    "eslint": "^7.30.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-import": "^2.23.4",
    "eslint-plugin-prettier": "^3.4.0",
    "eslint-plugin-security": "^1.4.0",
    "husky": "^7.0.1",
    "lint-staged": "^11.0.1",
    "mocha": "^9.0.2",
    "nyc": "^15.1.0",
    "prettier": "^2.3.2",
    "pretty-quick": "^3.1.1",
    "ts-node": "^10.1.0",
    "typescript": "^4.3.5"
  },
  "license": "BSD-3-CLAUSE",
  "mocha": {
    "diff": true,
    "extension": [
      "ts"
    ],
    "spec": "tests/**/*.test.ts",
    "require": "ts-node/register",
    "watch-files": [
      "src/**/*.ts",
      "tests/**/*.ts"
    ],
    "watch-ignore": []
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": [
      "./node_modules/.bin/eslint"
    ],
    "*.{js,jsx,ts,tsx,json,md}": [
      "./node_modules/.bin/prettier --list-different"
    ]
  },
  "files": [
    "/dist"
  ],
  "packageManager": "yarn@4.1.1"
}