gateway-addon
Version:
Bindings for WebThings Gateway add-ons
48 lines (47 loc) • 1.3 kB
JSON
{
"name": "gateway-addon",
"version": "1.2.0-alpha.1",
"description": "Bindings for WebThings Gateway add-ons",
"scripts": {
"build": "if [ ! -d schema/messages ]; then git submodule init; fi; git submodule update && node generate-version.js && node generate-types.js && tsc -p .",
"lint": "eslint src --ext .ts",
"prettier": "npx prettier -w '*.js' 'src/*.ts'"
},
"main": "lib/index.js",
"keywords": [
"webthings"
],
"homepage": "https://github.com/WebThingsIO/gateway-addon-node",
"author": "WebThingsIO",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/WebThingsIO/gateway-addon-node.git"
},
"bugs": {
"url": "https://github.com/WebThingsIO/gateway-addon-node/issues"
},
"dependencies": {
"ajv": "^7.0.4",
"sqlite3": "^5.0.1",
"ws": "^7.4.3"
},
"devDependencies": {
"@types/node": "^15.0.1",
"@types/sqlite3": "^3.1.7",
"@types/ws": "^7.4.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"json-schema-to-typescript": "^10.1.4",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
},
"files": [
"LICENSE",
"lib",
"schema",
"src"
]
}