uci-base/package.json

48 lines
1.4 KiB
JSON

{
"name": "@uci/base",
"version": "0.1.17",
"description": "Multi type and transport JSON packet communication base class. Used in UCI extended classes",
"main": "src/base",
"scripts": {
"fiod": "UCI_ENV=dev ./node_modules/.bin/nodemon -r esm examples/four-in-one",
"fio": "nodemon -r esm examples/four-in-one",
"dy": "node -r esm examples/dynamic",
"web": "UCI_DEV=true nodemon -r esm examples/web",
"mqtt": "node -r esm examples/mqtt",
"testw": "mocha -r esm test/*.test.mjs --watch --recurse --watch-extensions mjs",
"test": "mocha -r esm test/*.test.mjs",
"testci": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec --recursive && codecov || true"
},
"author": "David Kebler",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/uCOMmandIt/message.git"
},
"keywords": [
"node.js",
"i2c",
"rpi",
"raspberrypi"
],
"bugs": {
"url": "https://github.com/uCOMmandIt/message/issues"
},
"homepage": "https://github.com/uCOMmandIt/message#readme",
"devDependencies": {
"chai": "^4.2.0",
"esm": "^3.0.84",
"mocha": "^5.2.0",
"nodemon": "^1.18.6"
},
"dependencies": {
"@uci-utils/bind-funcs": "^0.2.3",
"@uci-utils/logger": "0.0.13",
"@uci/mqtt": "^0.1.9",
"@uci/socket": "^0.2.8",
"@uci/websocket": "^0.3.5",
"await-to-js": "^2.1.1",
"p-settle": "^2.1.0"
}
}