uci-i2c-bus/package.json

46 lines
1.2 KiB
JSON

{
"name": "@uci/i2c-bus",
"version": "0.1.21",
"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:pipe": "TRANSPORT=pipe npm run client",
"relays": "BUS_DEVICE=relays npm run client",
"relays:pipe": "TRANSPORT=pipe npm run relays",
"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",
"pify": "^4.0.1"
},
"devDependencies": {
"esm": "^3.2.25",
"nodemon": "^1.19.2"
}
}