uci-i2c-bus/package.json

52 lines
1.6 KiB
JSON

{
"name": "@uci/i2c-bus",
"version": "0.1.22",
"description": "I2c Bus Classes for Communication to I2C bus via socket or direct call",
"main": "src/bus",
"scripts": {
"client": "node --require esm examples/client || true",
"client:dev": "UCI_ENV=dev ./node_modules/.bin/nodemon --watch examples --require esm --preserve-symlinks examples/client || true",
"client:pipe": "TRANSPORT=pipe npm run client",
"client:pipe:dev": "TRANSPORT=pipe npm run client:dev",
"relays": "BUS_DEVICE=relays npm run client",
"relays:dev": "BUS_DEVICE=relays npm run client:dev",
"relays:pipe": "TRANSPORT=pipe npm run relays",
"relays:pipe:dev": "TRANSPORT=pipe npm run relays:dev",
"queue": "BUS_DEVICE=queue npm run client",
"bus": "node --require esm examples/bus",
"bus:dev": "UCI_ENV=dev ./node_modules/.bin/nodemon --require esm examples/bus",
"bus:debug": "UCI_LOG_LEVEL=debug npm run bus:dev",
"busl": "UCI_ENV=pro node --require esm examples/bus"
},
"author": "David Kebler",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/uCOMmandIt/i2c.git"
},
"keywords": [
"node.js",
"i2c",
"rpi",
"raspberrypi"
],
"bugs": {
"url": "https://github.com/uCOMmandIt/i2c/issues"
},
"homepage": "https://github.com/uCOMmandIt/i2c#readme",
"optionalDependencies": {
"i2c-bus": "^4.0.11"
},
"dependencies": {
"@uci-utils/logger": "^0.0.15",
"@uci/base": "^0.1.27",
"better-try-catch": "^0.6.2",
"p-queue": "^6.1.1",
"pify": "^4.0.1"
},
"devDependencies": {
"esm": "^3.2.25",
"nodemon": "^1.19.2"
}
}