{
  "name": "emberplus-connection",
  "version": "0.3.0",
  "description": "Javascript implementation of the Ember+ automation protocol",
  "engines": {
    "node": ">=14.18"
  },
  "files": [
    "dist/**/*"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "prepare": "run husky install",
    "build": "rimraf dist && run build:main",
    "build:main": "tsc -p tsconfig.build.json",
    "lint:raw": "run eslint --ext .ts --ext .js --ext .tsx --ext .jsx --ignore-pattern dist",
    "lint": "run lint:raw .",
    "lint-fix": "run lint --fix",
    "unit": "jest --coverage",
    "test": "run lint && jest test",
    "test:coverage": "run test -- --coverage",
    "cov": "jest --coverage; open-cli coverage/lcov-report/index.html",
    "cov-open": "open-cli coverage/lcov-report/index.html",
    "changelog": "sofie-version",
    "release": "run reset && run test && sofie-version",
    "reset": "git clean -dfx && git reset --hard && yarn",
    "validate:dependencies": "yarn npm audit --environment production && run license-validate",
    "validate:dev-dependencies": "yarn npm audit --environment development",
    "license-validate": "sofie-licensecheck --allowPackages caniuse-lite@1.0.30001541",
    "husky": "./node_modules/.bin/husky",
    "eslint": "./node_modules/.bin/eslint",
    "prettier": "./node_modules/.bin/prettier",
    "lint-staged": "./node_modules/.bin/lint-staged"
  },
  "contributors": [
    "Gilles Dufour <dufour.gilles@gmail.com> (www.gdnet.be)",
    "Brian Mayton <bmayton@bdm.cc> (http://bdm.cc)",
    "Ola Christian Gundelsby <ola.christian.gundelsby@nrk.no> (https://nrk.no)",
    "Balte de Wit <contact@balte.nl> (https://superfly.tv/)",
    "Richard Cartwright (https://superfly.tv/)"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nrkno/sofie-emberplus-connection"
  },
  "license": "MIT",
  "dependencies": {
    "asn1": "evs-broadcast/node-asn1",
    "debug": "^4.3.4",
    "eventemitter3": "^4.0.7",
    "long": "^3.2.0",
    "smart-buffer": "^3.0.3",
    "tslib": "^2.6.2"
  },
  "devDependencies": {
    "@sofie-automation/code-standard-preset": "~2.5.2",
    "@types/debug": "^4.1.9",
    "@types/jest": "^29.5.5",
    "@types/long": "^4.0.1",
    "jest": "^29.7.0",
    "rimraf": "^5.0.5",
    "ts-jest": "^29.1.1",
    "typescript": "~4.9"
  },
  "bugs": {
    "url": "https://github.com/nrkno/sofie-emberplus-connection/issues"
  },
  "homepage": "https://github.com/nrkno/sofie-emberplus-connection#readme",
  "keywords": [
    "emberplus",
    "lawo"
  ],
  "prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
  "lint-staged": {
    "*.{css,json,md,scss}": [
      "yarn prettier --write"
    ],
    "*.{ts,tsx,js,jsx}": [
      "yarn lint:raw --fix"
    ]
  },
  "packageManager": "yarn@3.6.3"
}