UNPKG

@balte/emberplus-connection

Version:
106 lines (105 loc) 3.02 kB
{ "name": "@balte/emberplus-connection", "version": "0.0.3", "description": "Javascript implementation of the Ember+ automation protocol", "engines": { "node": ">=8.12.0" }, "files": [ "dist/**/*" ], "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "trash dist && yarn build:main", "build:main": "tsc", "lint": "eslint .", "lint:fix": "yarn lint --fix", "unit": "jest --rootDir ./src --passWithNoTests", "test": "yarn lint && jest test --rootDir ./src", "test:coverage": "yarn test -- --coverage", "cov": "jest --coverage; open-cli coverage/lcov-report/index.html", "cov-open": "open-cli coverage/lcov-report/index.html", "send-coverage": "codecov", "changelog": "standard-version", "release": "yarn reset && yarn test && yarn changelog", "reset": "git clean -dfx && git reset --hard && yarn", "validate:dependencies": "yarn audit --groups dependencies && yarn license-validate", "validate:dev-dependencies": "yarn audit --groups devDependencies", "license-validate": "node-license-validator -p -d --allow-licenses MIT BSD BSD-3-Clause BSD-2-Clause ISC Apache Apache-2.0 WTFPL Unlicense --allow-packages cycle" }, "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/tv-automation-emberplus-connection" }, "license": "MIT", "resolutions": { "minimist": "^1.2.3", "yargs-parser": "^18.1.2" }, "dependencies": { "asn1": "evs-broadcast/node-asn1", "enum": "^2.4.0", "long": "^3.2.0", "smart-buffer": "^3.0.3", "winston": "^2.1.1", "winston-color": "^1.0.0" }, "devDependencies": { "@types/jest": "^25.2.1", "@types/long": "^4.0.1", "@typescript-eslint/eslint-plugin": "^2.28.0", "@typescript-eslint/parser": "^2.28.0", "codecov": "^3.7.0", "eslint": "^6.8.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^3.1.3", "husky": "^3.0.5", "jest": "^25.3.0", "jest-cli": "^24.9.0", "lint-staged": "^10.1.3", "node-license-validator": "^1.3.0", "prettier": "^1.17.1", "sinon": "^7.4.1", "standard-version": "^7.0.0", "trash-cli": "^3.0.0", "ts-jest": "^25.3.1", "typescript": "^3.8.3" }, "bugs": { "url": "https://github.com/nrkno/tv-automation-emberplus-connection/issues" }, "homepage": "https://github.com/nrkno/tv-automation-emberplus-connection#readme", "directories": { "test": "test" }, "keywords": [ "emberplus", "lawo" ], "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,json,md}": [ "prettier --write" ], "*.ts": [ "eslint --fix" ] }, "standard-version": { "message": "chore(release): %s [skip ci]", "tagPrefix": "" } }