{
	"displayName": "Z-Way Schlage BE469",
	"name": "homebridge-zway-schlage",
	"author": "ncovercash",
	"version": "1.1.2",
	"description": "SCHLAGE BE469 ONLY! Learning experience to implement a z-way plugin for my home system with Schalge BE469's.",
	"license": "Apache-2.0",
	"repository": {
		"type": "git",
		"url": "git://github.com/ncovercash/homebridge-zway-schlage-be469.git"
	},
	"bugs": {
		"url": "https://github.com/ncovercash/homebridge-zway-schlage-be469/issues"
	},
	"main": "dist/index.js",
	"keywords": [
		"homebridge-plugin"
	],
	"engines": {
		"homebridge": ">=1.0.0"
	},
	"lint-staged": {
		"src/*.{js,ts}": [
			"prettier --write",
			"eslint"
		],
		"*.{json}": [
			"prettier --write"
		]
	},
	"dependencies": {
		"axios": "^0.19.2",
		"cookie": "^0.4.1",
		"fast-array-diff": "^0.2.0"
	},
	"devDependencies": {
		"@types/cookie": "0.4.0",
		"@types/node": "14.0.13",
		"@typescript-eslint/eslint-plugin": "3.3.0",
		"@typescript-eslint/parser": "3.3.0",
		"eslint": "7.2.0",
		"homebridge": "1.1.1",
		"husky": "4.2.5",
		"lint-staged": "10.2.11",
		"nodemon": "2.0.4",
		"prettier": "2.0.5",
		"typescript": "3.9.5"
	},
	"scripts": {
		"build": "tsc --listEmittedFiles",
		"watch": "npm run clean && nodemon",
		"clean": "touch tsconfig.tsbuildinfo && rm tsconfig.tsbuildinfo && mkdir -p dist/tmp && rm -r dist",
		"lint": "prettier --write 'src/*.{js,ts,json}' '*.json'",
		"prepublishOnly": "npm run build"
	},
	"husky": {
		"hooks": {
			"post-merge": "npm ci",
			"pre-commit": "lint-staged && npm run build"
		}
	}
}
