openrowingmonitor/package.json

45 lines
1.1 KiB
JSON

{
"name": "openrowingmonitor",
"version": "0.7.0",
"description": "A rowing monitor for rowing exercise machines",
"main": "app/server.js",
"author": "Lars Berning",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/laberning/openrowingmonitor.git"
},
"type": "module",
"engines": {
"node": ">=14"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint ./app && markdownlint '**/*.md' --ignore node_modules",
"start": "node app/server.js",
"test": "ava"
},
"ava": {
"verbose": true
},
"dependencies": {
"@abandonware/bleno": "^0.5.1-3",
"finalhandler": "^1.1.2",
"http": "0.0.1-security",
"loglevel": "^1.7.1",
"onoff": "^6.0.1",
"serve-static": "^1.14.1",
"ws": "^7.4.4"
},
"devDependencies": {
"ava": "^3.15.0",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"husky": "^5.1.3",
"markdownlint-cli": "^0.27.1"
}
}